/* --- About Page --- */
.about-hero {
    /* Large padding for impact */
    padding: 180px 0;

    /* Background logic */
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    /* Optional: creates a slight parallax effect */

    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 72px;
    /* Larger for center alignment */
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 25px;
    line-height: 1;
    color: #ffffff;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white for a sleek look */
    max-width: 700px;
    margin: 0 auto;
    /* Centering the paragraph block */
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px;
    }

    .about-hero h1 {
        font-size: 48px;
    }
}

.story-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 50px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.value-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.team-card-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.team-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.team-info-body {
    padding: 40px;
}

.team-info-body h4 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-modern {
    background: var(--primary);
    padding: 50px 0;
    border-radius: 50px;
    margin: 50px auto;
    text-align: center;
    color: #fff;
}

.cta-modern h2 {
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 48px;
    }

    .team-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .auth-page-wrap {
        padding: 120px 20px 60px;
    }

    .auth-header {
        padding: 30px 20px 10px;
    }

    .auth-body {
        padding: 30px 20px;
    }
}

/* --- Core Values Modern --- */
.modern-value-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.modern-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 146, 4, 0.1);
    color: #FF9204;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 28px;
}

.modern-value-card h4 {
    font-weight: 800;
    font-size: 22px;
    color: #0a0a1a;
}