/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
}



/* HERO */
/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
}

/* VIDEO */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* DARK TINT */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.logo img {
    width: 340px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: .7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;

    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    transition: .4s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.35);
}

.hero-cta {
    position: absolute;
    bottom: 4rem;
    right: clamp(3rem, 8vw, 8rem);

    display: flex;
    align-items: center;
    gap: 1.2rem;   /* 👈 spacing between tile and arrow */

    z-index: 5;
}


/* GLASS TILE */
.glass-tile {
    position: relative;   /* NOT absolute */
    padding: 2rem 3rem;
    max-width: 520px;

    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;

    opacity: 1;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
}

.glass-tile.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.scroll-icon {
    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);

    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.scroll-icon:hover {
    transform: translateY(4px);
    background: rgba(255,255,255,0.22);
    box-shadow:
        0 0 18px rgba(0, 71, 170, 0.656),
        0 0 28px rgba(139, 181, 0, 0.66);
}


.scroll-icon img {
    width: 28px;
    pointer-events: none;
}


/* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.logo img {
    width: 340px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: .7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;

    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    transition: .4s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.35);
}

.hero-cta {
    position: absolute;
    bottom: 4rem;
    right: clamp(3rem, 8vw, 8rem);
    display: flex;
    align-items: center;
    gap: 1.2rem;          /* 👈 THIS is the spacing you want */
    z-index: 5;
}


.glass-tile {
    position: relative;   /* ❌ no absolute anymore */
    padding: 2rem 3rem;
    max-width: 520px;

    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;

    transition: opacity .4s ease, transform .4s ease;
}

.scroll-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);

    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.scroll-icon img {
    width: 18px;
    height: auto;
    pointer-events: none;
}

.scroll-icon:hover {
    transform: translateY(4px);
    background: rgba(255,255,255,0.2);
}



/* IMPACT SECTION */
.impact-section {
    position: relative;
    padding: 6rem 3rem;
    overflow: hidden;
}

/* Video background */
.impact-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay for readability */
.impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(19, 36, 29, 0.65),
        rgba(0, 0, 0, 0.45)
    );
    z-index: -1;
}



.impact-container {
    max-width: 1900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    z-index: 10;
}

/* CARD */
.impact-card {
    position: relative;
    padding: 1.8rem 1.5rem;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    transition: all .4s ease;
    cursor: pointer;
    z-index: 5;
}

/* HOVER DEPTH */
.impact-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,71,170,0.25);
}

/* NUMBERS */
.impact-card h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3388ff;
    margin-bottom: .6rem;
}

/* TITLE */
.impact-card h4 {
    font-size: .9rem;
    letter-spacing: .08em;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #ffffff;
}

/* DESCRIPTION */
.impact-card p {
    font-size: .95rem;
    color: #d7d7d7;
    line-height: 1.5;
}

/* INTERACTIVE BORDER RIPPLE */
.impact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, #8cb500, #0047aa);
    opacity: 0;
    transition: .4s ease;
    z-index: -1;
}

.impact-card:hover::after {
    opacity: .08;
}



/* KEY PROJECTS SECTION */
.key-projects {
    padding: 1 rem 4rem;
    background: #fff;
    text-align: center;
    margin-bottom: 4rem;
}

.key-projects h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0047aa;
    margin-bottom: .6rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 4rem;
}

/* GRID */
.projects-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* CARD */
.project-card {
    position: relative;
    height: 420px;
    border-radius: 22px;
    overflow: hidden;

    border: 6px solid #0047aa;
    background: #000;
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GLASS PANEL */
.glass-panel {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;

    padding: 1.4rem 1.6rem;

    background: rgba(160, 160, 160, 0.35);
    backdrop-filter: blur(14px);
    border-radius: 16px;

    color: #fff;
    text-align: left;

    /* NEW */
    box-shadow:
        inset 0 0 0 rgba(0,0,0,0),
        0 10px 25px rgba(0,0,0,0.25);

    transition: 
        transform .45s ease,
        background .45s ease,
        box-shadow .45s ease;
}


/* TITLE */
.glass-panel h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

/* DESCRIPTION (HIDDEN INITIALLY) */
.glass-panel p {
    font-size: .9rem;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    transition: opacity .35s ease, max-height .35s ease;
}

/* HOVER EFFECT */
.project-card:hover .glass-panel {
    transform: translateY(-28px);
    background: rgba(0,0,0,0.55);

    /* THEME GLOW */
    box-shadow:
        0 0 0 1px rgba(140, 181, 0, 0.25),      /* subtle green edge */
        0 0 22px rgba(0, 71, 170, 0.35),        /* blue glow */
        0 0 38px rgba(140, 181, 0, 0.25),       /* green glow */
        0 18px 40px rgba(126, 126, 126, 0.35);           /* depth */
}

.glass-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(0, 71, 170, 0.15),
        rgba(140, 181, 0, 0.15)
    );
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.project-card:hover .glass-panel::after {
    opacity: 1;
}


/* REVEAL DETAILS */
.project-card:hover .glass-panel p {
    opacity: 1;
    max-height: 80px;
}


/* WHAT WE DO */
.what-we-do {
    position: relative;
    padding: 2rem 1rem;
    min-height: 80vh;
    text-align: center;
    z-index: 7;
    overflow: hidden;
}

.what-we-do-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.what-we-do-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(var(--parallax-y-what, 0px));
    will-change: transform;
}


.what-we-do-container {
    position: relative;
    z-index: 2;
}

.what-we-do h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* GRID */
.frustum-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
}

/* CARD WRAPPER */
.frustum-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: auto;
    transition: transform .35s ease;
}

.frustum-card:hover {
    transform: translateY(-10px);
}

/* FRUSTUM IMAGE */
.frustum-bg {
    width: 100%;
    display: block;
}

/* CONTENT OVERLAY */
.frustum-content {
    position: absolute;
    inset: 0;
    padding: 3.2rem 2rem 2.6rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    pointer-events: none;
}

/* ICON */
.frustum-content .icon {
    height: 64px;
    margin-bottom: 1.2rem;
}

/* TITLE */
.frustum-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0047aa;
    margin-bottom: .5rem;
}

/* TEXT */
.frustum-content p {
    font-size: .95rem;
    color: #444;
    line-height: 1.45;
}

.btn-extra {
    display: inline-block;
    padding: .2rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: #0047aa;
    transition: background .4s ease;
}

/* VISION / MISSION / VALUES SECTION */
.vmv-section {
    padding: 6rem 4rem;
    background:
        linear-gradient(
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.25)
        ),
        url("assets/images/forest-bg.png") center / cover no-repeat;
}

/* GRID */
.vmv-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* GLASS CARD */
.vmv-card {
    padding: 2.6rem 2.4rem;
    border-radius: 26px;

    background: rgba(24, 87, 163, 0.18);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 30px 60px rgba(0,0,0,0.35);

    color: #fff;
}

/* HEADING */
.vmv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

/* BODY TEXT */
.vmv-card p {
    font-size: .98rem;
    line-height: 1.65;
    opacity: .95;
}

       /* Overall Footer */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px;
    background: linear-gradient(145deg, #0047a5, #003579);
    color: #fff;
    font-family: "Poppins", sans-serif;
    position: relative;
}


/* CONTACT CTA SECTION */
.contact-cta {
    padding: 6rem 4rem;
    background: #ffffff;
}

/* GRID */
.cta-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: start;
}

/* LEFT TEXT */
.cta-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0047aa;
    line-height: 1.25;
    margin-bottom: 1.8rem;
}

.cta-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 520px;
}

/* FORM */
.cta-form {
    width: 100%;
}

/* ROW */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
}

/* GROUP */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: #000;
}

/* INPUTS */
.form-group input,
.form-group textarea {
    border: none;
    border-radius: 8px;
    padding: .75rem .9rem;
    font-size: .9rem;
    background: #e0e0e0;
    color: #000;
    resize: none;
}

.form-group textarea {
    height: 130px;
}

/* BUTTON */
.cta-form button {
    width: 100%;
    margin-top: 1.4rem;
    padding: .85rem;
    border-radius: 8px;
    border: none;

    background: #0047aa;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;

    transition: background .25s ease;
}

.cta-form button:hover {
    background: #003b8c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}


/*FOOTER*/
/* LEFT SIDE */
.footer-left h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #00d063;
    border-radius: 50%;
    margin-right: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    font-size: 15px;
    line-height: 1.9;
}

.footer-links li {
    cursor: pointer;
    transition: opacity 0.2s;
}

.footer-links li:hover {
    opacity: 0.7;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.85;
}

/* RIGHT SIDE */
.footer-right {
    width: 40%;
    text-align: right;
    margin-right: 60px;
}

.footer-desc {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 50px;
}

.footer-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: #fff;
    color: #003579;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.footer-btn:hover {
    transform: translateX(3px);
}

.arrow {
    margin-left: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 20px 0;
}

.footer-logo img {
    width: 250px;
    margin-right: 15px;
    border-radius: 12px;
}

.footer-logo-text h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.footer-logo-text p {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.85;
}

.footer-legal {
    margin-top: 25px;
}

.footer-legal a {
    color: #fff;
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
    opacity: 0.85;
}

.footer-legal a:hover {
    opacity: 1;
}

/* FLOATING ICONS */
.footer-floating-icons {
    position: absolute;
    right: 40px;
    top: 80px;
}

.circle-btn {
    width: 45px;
    height: 45px;
    background: #004fbb;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-bottom: 15px;
}

.side-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #003f96;
    padding: 12px;
    border-radius: 30px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    background: #0051c5;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 18px;
}

.icon-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* makes SVG white */
    pointer-events: none;
}


.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {

    /* HERO */
    /* HERO CTA (single anchor) */
    .hero-cta {
        right: 4rem;
        bottom: 4rem;
    }

    /* NAV */
    nav {
        padding: 1.5rem 3rem;
    }

    .logo img {
        width: 280px;
    }

    /* PROJECT CARDS */
    .project-card {
        height: 380px;
    }

    /* FOOTER */
    .footer {
        padding: 40px 60px;
    }

    .footer-right {
        margin-right: 0;
    }
}

@media (max-width: 900px) {

    /* NAV */
    nav {
        padding: 1.2rem 2rem;
    }

    .nav-links {
        gap: .6rem;
    }

    .nav-links a {
        padding: .6rem 1.4rem;
        font-size: .9rem;
    }

    /* HERO */
    /* HERO CTA (single anchor) */
    .hero-cta {
        right: 4rem;
        bottom: 4rem;
    }

    .hero-cta {
        position: static;
        margin: 0 auto 2rem;
        justify-content: center;
    }

    .scroll-icon {
        display: none;
    }

    /* IMPACT */
    .impact-container {
        grid-template-columns: 1fr;
    }

    /* FRUSTUM */
    .frustum-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* PROJECTS */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 360px;
    }

    /* VMV */
    .vmv-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* FOOTER */
    .footer {
        flex-direction: column;
        gap: 3rem;
        padding: 40px;
    }

    .footer-right {
        width: 100%;
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-floating-icons {
        display: none;
    }
}


@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    /* NAV */
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .logo img {
        width: 220px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        padding: .5rem 1.2rem;
        font-size: .85rem;
    }

    /* HERO */
    /* HERO CTA (single anchor) */
    .hero-cta {
        right: 4rem;
        bottom: 4rem;
    }

    /* IMPACT */
    .impact-card h2 {
        font-size: 2rem;
    }

    /* FRUSTUM */
    .frustum-content {
        padding: 2.4rem 1.6rem;
    }

    .frustum-content .icon {
        height: 52px;
    }

    /* PROJECT GLASS PANEL */
    .glass-panel {
        padding: 1.1rem 1.2rem;
    }

    .glass-panel h3 {
        font-size: 1.2rem;
    }

    /* VMV */
    .vmv-section {
        padding: 4rem 2rem;
    }

    .vmv-card {
        padding: 2rem;
    }

    /* CTA */
    .contact-cta {
        padding: 4rem 2rem;
    }

    .cta-text h2 {
        font-size: 1.9rem;
    }

    /* FOOTER */
    .footer {
        padding: 30px 25px;
    }

    .footer-left h2 {
        font-size: 22px;
    }

    .footer-links {
        font-size: 14px;
    }
}


@media (max-width: 420px) {
    .glass-tile {
        font-size: .95rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }
}

/* LAYOUT */
.faq-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* QUESTION GRID */
.grid-2x3 {
    display: grid;
    grid-template-columns: 1fr; /* single column for one below each other */
    gap: 20px; /* increased gap */
    flex: 1;
}

/* QUESTION BUTTON */
.faq-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 24px 28px; /* increased padding */
    text-align: left;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s ease;
    border-left: 5px solid transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-btn h4 {
    margin: 0;
    font-size: 18px; /* increased font size */
    font-weight: 700;
    color: #1a1a1a;
}

.faq-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: #0047b3;
    font-weight: 800;
}

.faq-btn.active {
    transform: translateX(10px);
    border-left: 5px solid #0047b3;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


/* ANSWER CARD */
.faq-answers-col {
    flex: 1.2;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 50px; /* increased padding */
    min-height: 400px; /* increased height */
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: sticky;
    top: 120px;
}

.faq-content-item {
    display: none;
    animation: fadeUp 0.5s ease;
}

.faq-content-item.active {
    display: block;
}

.faq-content-item h3 {
    font-size: 32px; /* increased */
    margin-bottom: 18px;
    border-bottom: 2px solid #0047b3;
    display: inline-block;
    padding-bottom: 8px;
}

.faq-content-item p {
    font-size: 18px; /* increased */
    line-height: 1.8; /* increased */
    color: #eaeaea;
}

.faq-bg {
    position: absolute; /* ✅ section-scoped */
    inset: 0;
    z-index: 0;
}

.faq-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
}

.faq-container { position: relative; z-index: 2; }

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
}

.faq-section {
    position: relative;
    padding: 6rem 4rem;   /* increased padding for larger section */
    min-height: 100vh;     /* increased height */
    overflow: hidden;
}


.faq-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
    pointer-events: none;
}



/* ANIMATION */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .faq-wrapper {
        flex-direction: column;
    }

    .grid-2x3 {
        grid-template-columns: 1fr;
    }
}

