/* --- ABOUT US PAGE CSS --- */

/* Hero Section */
.about-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #20b038;
    /* Vanguard Green */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-hero-subhead {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.about-hero-img-wrapper {
    width: 100%;
    height: 450px;
    margin-top: 50px;
}

/* --- VISION & MISSION SECTION --- */
.bg-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 176, 56, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    /* Very subtle Vanguard Green glow */
    pointer-events: none;
}

.vm-text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

/* Image Wrappers */
.vm-img-wrapper {
    width: 100%;
    height: 400px;
}

.vm-img {
    display: block;
    object-fit: contain;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .vm-text {
        font-size: 15px;
    }

    .vm-img-wrapper {
        height: 280px;
        /* Shorter on mobile so it doesn't take up the whole screen */
    }
}

/* --- OUR STORY SECTION --- */
.our-story-section {
    background-color: #0c0e1b;
    overflow: hidden;
}

/* Force the Poppins heading to be white on this specific dark section */
.our-story-section .section-heading-poppins {
    color: #ffffff !important;
}

.story-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Deep Vanguard Navy Gradient Overlay for text readability */
.story-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 14, 27, 0.95) 0%, rgba(12, 14, 27, 0.8) 100%);
    z-index: 1;
}

.story-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    /* Muted white for eye-comfort while reading */
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-content p strong {
    color: #ffffff;
    /* Bright white for emphasis */
    font-weight: 600;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .story-content p {
        font-size: 15px;
        /* Slightly smaller on mobile to reduce scrolling */
        line-height: 1.6;
    }
}

/* Get In Touch Section */
.get-in-touch-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .get-in-touch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06) !important;
} */

.git-icon-box {
    width: 64px;
    height: 64px;
    background-color: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.git-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .about-hero-headline {
        font-size: 32px;
    }

    .about-hero-subhead {
        font-size: 16px;
    }

    .about-hero-img-wrapper {
        height: 300px;
        margin-top: 30px;
    }

    .mission-img-wrapper {
        width: 100%;
        height: 200px;
    }

    .story-img-wrapper {
        height: 350px;
        margin-bottom: 30px;
    }

    /* Add this to scale down the background glow on mobile! */
    .bg-glow {
        width: 100vw;
        height: 100vw;
    }
}
