body{
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family:'ubuntu',sans-serif;
    background-color: #f2f2f2;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab',serif;
}

html {
    scroll-behavior: smooth;
}


.container{
width:90%;
max-width:1100px;
margin:auto;
}

h2{
text-align:center;
margin-bottom:40px;
}


/* =========================================
   IMPACT HERO
========================================= */

.impact-hero{
    position:relative;

    overflow:hidden;

    padding:110px 20px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef5fc,
            #f3fbf8
        );
}

/* =========================================
   BACKGROUND GLOWS
========================================= */

.hero-glow{
    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.22;

    z-index:1;
}

.glow-1{
    width:320px;
    height:320px;

    background:#1e88e5;

    top:-120px;
    left:-100px;
}

.glow-2{
    width:300px;
    height:300px;

    background:#00bfa5;

    bottom:-120px;
    right:-100px;
}

/* =========================================
   GRID
========================================= */

.impact-hero-grid{
    position:relative;

    z-index:2;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:60px;

    align-items:center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.impact-content h1{
    font-size:
        clamp(2.7rem,5vw,5rem);

    line-height:1.08;

    margin-bottom:25px;

    color:#0f172a;

    font-weight:800;
}

/* LABEL */

.impact-label{
    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:#e3f2fd;

    color:#1565c0;

    font-size:12px;
    font-weight:600;

    margin-bottom:22px;
}

/* TEXT */

.impact-description{
    font-size:1.08rem;

    line-height:1.9;

    color:#64748b;

    max-width:650px;

    margin-bottom:35px;
}

/* =========================================
   BUTTONS
========================================= */

.impact-actions{
    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:35px;
}

.impact-btn{
    text-decoration:none;

    padding:15px 24px;

    border-radius:16px;

    font-size:14px;
    font-weight:600;

    transition:.35s ease;
}

/* PRIMARY */

.primary-btn{
    background:
        linear-gradient(
            135deg,
            #1e88e5,
            #00bfa5
        );

    color:white;

    box-shadow:
        0 14px 30px rgba(30,136,229,.2);
}

.primary-btn:hover{
    transform:translateY(-5px);
}

/* SECONDARY */

.secondary-btn{
    background:white;

    color:#0f172a;

    border:
        1px solid rgba(148,163,184,.2);
}

.secondary-btn:hover{
    transform:translateY(-5px);
}

/* =========================================
   TRUST STRIP
========================================= */

.trust-strip{
    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

.trust-item{
    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 16px;

    border-radius:14px;

    background:white;

    color:#475569;

    font-size:13px;
    font-weight:500;

    box-shadow:
        0 10px 25px rgba(15,23,42,.05);
}

.trust-item i{
    color:#1e88e5;
}

/* =========================================
   RIGHT VISUAL
========================================= */

.impact-visual{
    position:relative;
}

/* MAIN IMAGE */

.hero-image-card{
    overflow:hidden;

    border-radius:36px;

    box-shadow:
        0 30px 60px rgba(15,23,42,.12);
}

.hero-image-card img{
    width:100%;

    height:620px;

    object-fit:cover;

    display:block;
}

/* =========================================
   FLOATING CARDS
========================================= */

.floating-card{
    position:absolute;

    background:
        rgba(255,255,255,.82);

    backdrop-filter:blur(16px);

    border:
        1px solid rgba(255,255,255,.4);

    padding:22px;

    border-radius:24px;

    box-shadow:
        0 20px 40px rgba(15,23,42,.08);

    animation:floatCard 4s ease-in-out infinite;
}

/* FLOAT */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* POSITIONS */

.card-1{
    top:40px;
    left:-40px;
}

.card-2{
    bottom:120px;
    right:-30px;
}

.card-3{
    bottom:20px;
    left:40px;
}

/* TEXT */

.floating-card h3{
    font-size:2rem;

    color:#0f172a;

    margin-bottom:6px;
}

.floating-card p{
    color:#64748b;

    font-size:13px;

    line-height:1.6;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    .impact-hero-grid{
        grid-template-columns:1fr;
    }

    .impact-visual{
        margin-top:20px;
    }
}

@media(max-width:768px){

    .impact-hero{
        padding:80px 16px;
    }

    .hero-image-card img{
        height:450px;
    }

    .floating-card{
        position:relative;

        inset:auto !important;

        margin-top:15px;

        animation:none;
    }

    .impact-actions{
        flex-direction:column;
    }
    .impact-btn{

        width:100%;

        max-width:100%;

        box-sizing:border-box;

        padding:12px 16px;

        font-size:.9rem;

        white-space:normal;

        word-break:break-word;

        justify-content:center;

        text-align:center;
    }

    .primary-btn,
    .secondary-btn{

        width:100%;

        max-width:100%;
    }
    /* .impact-btn{
        width:100%;

        text-align:center;
    } */
}


@media(max-width:480px){

    .impact-content h1{
        font-size:2.2rem;
    }

    .impact-description{
        font-size:.96rem;
    }

    .hero-image-card img{
        height:350px;
    }
}
/* =========================================
   OUTREACH ACTIVITIES
========================================= */

.outreach-activities{
    position:relative;

    padding:100px 20px;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(30,136,229,0.05),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,191,165,0.05),
        transparent 30%),

        #ffffff;
}

/* =========================================
   INTRO
========================================= */

.activities-intro{
    text-align:center;

    margin-bottom:60px;
}

.activities-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#e3f2fd;

    color:#1565c0;

    font-size:12px;
    font-weight:600;

    margin-bottom:18px;
}

.activities-intro h2{
    font-size:clamp(2rem,4vw,3rem);

    color:#0f172a;

    margin-bottom:18px;
}

.activities-intro p{
    max-width:760px;

    margin:auto;

    line-height:1.9;

    color:#64748b;

    font-size:15px;
}

/* =========================================
   GRID
========================================= */

.activities-grid{
    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:28px;
}

/* =========================================
   CARD
========================================= */

.activity-card{
    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:
        rgba(255,255,255,0.82);

    backdrop-filter:blur(12px);

    border:
        1px solid rgba(255,255,255,0.5);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:
        0 12px 32px rgba(15,23,42,0.07);
}

/* HOVER */

.activity-card:hover{
    transform:
        translateY(-10px);

    box-shadow:
        0 24px 48px rgba(15,23,42,0.12);
}

/* =========================================
   IMAGE
========================================= */

.activity-image{
    position:relative;

    overflow:hidden;

    height:240px;
}

.activity-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .6s ease;
}

.activity-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.activity-overlay{
    position:absolute;

    inset:0;

    display:flex;
    align-items:flex-end;

    padding:22px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.6),
            transparent
        );
}

.activity-overlay span{
    background:
        rgba(255,255,255,0.15);

    backdrop-filter:blur(8px);

    color:white;

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;
    font-weight:600;
}

/* =========================================
   CONTENT
========================================= */

.activity-content{
    padding:28px;
}

/* TOP INFO */

.activity-top{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;

    gap:10px;

    margin-bottom:18px;
}

.activity-meta,
.activity-location{
    display:flex;
    align-items:center;

    gap:7px;

    color:#64748b;

    font-size:13px;
}

.activity-meta i,
.activity-location i{
    color:#1e88e5;
}

/* =========================================
   TEXT
========================================= */

.activity-content h3{
    color:#0f172a;

    margin-bottom:14px;

    font-size:1.3rem;

    line-height:1.4;
}

.activity-content p{
    color:#64748b;

    line-height:1.8;

    font-size:14px;
}

/* =========================================
   TAGS
========================================= */

.activity-tags{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-top:24px;
}

.activity-tags span{
    background:#eef6ff;

    color:#1565c0;

    padding:8px 14px;

    border-radius:30px;

    font-size:11px;
    font-weight:600;

    transition:.3s ease;
}

.activity-tags span:hover{
    background:#1e88e5;
    color:white;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .activities-grid{
        grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));
    }

    .activity-image{
        height:220px;
    }
}

@media(max-width:768px){

    .outreach-activities{
        padding:70px 16px;
    }

    .activities-grid{
        grid-template-columns:1fr;
    }

    .activity-content{
        padding:24px;
    }

    .activities-intro h2{
        font-size:2rem;
    }
}

@media(max-width:480px){

    .activity-image{
        height:200px;
    }

    .activity-content h3{
        font-size:1.15rem;
    }

    .activities-intro p{
        font-size:14px;
    }
}

/* =========================================
   IMPACT SECTION
========================================= */

.impact-section{
    position:relative;

    padding:100px 20px;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(30,136,229,0.08),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,191,165,0.08),
        transparent 30%),

        linear-gradient(
            135deg,
            #f8fbff,
            #eef5fc
        );
}

/* =========================================
   INTRO
========================================= */

.impact-intro{
    text-align:center;

    margin-bottom:65px;
}

.impact-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#e3f2fd;

    color:#1565c0;

    font-size:12px;
    font-weight:600;

    margin-bottom:18px;
}

.impact-title{
    font-size:clamp(2rem,4vw,3rem);

    color:#0f172a;

    margin-bottom:18px;
}

.impact-subtitle{
    max-width:720px;

    margin:auto;

    color:#64748b;

    line-height:1.9;

    font-size:15px;
}

/* =========================================
   GRID
========================================= */

.impact-grid{
    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:24px;
}

/* =========================================
   CARD
========================================= */


.impact-card{
    position:relative;

    padding:35px 25px;

    border-radius:28px;

    overflow:hidden;

    background:
        rgba(255,255,255,0.78);

    backdrop-filter:blur(14px);

    border:
        1px solid rgba(255,255,255,0.45);

    text-align:center;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:
        0 10px 30px rgba(15,23,42,0.06);
}

/* HOVER */

.impact-card:hover{
    transform:
        translateY(-10px);

    box-shadow:
        0 22px 45px rgba(15,23,42,0.12);
}

/* =========================================
   TOP GLOW
========================================= */

.impact-glow{
    position:absolute;

    top:-60px;
    right:-60px;

    width:140px;
    height:140px;

    background:
        radial-gradient(
            rgba(30,136,229,0.18),
            transparent 70%
        );

    border-radius:50%;
}

/* =========================================
   ICON
========================================= */

.impact-icon{
    width:78px;
    height:78px;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #1e88e5,
            #00bfa5
        );

    color:white;

    font-size:30px;

    box-shadow:
        0 14px 28px rgba(30,136,229,0.24);

    animation:floatIcon 4s ease-in-out infinite;
}

/* FLOAT EFFECT */

@keyframes floatIcon{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* STAGGER */

.impact-card:nth-child(1) .impact-icon{
    animation-delay:0s;
}

.impact-card:nth-child(2) .impact-icon{
    animation-delay:.4s;
}

.impact-card:nth-child(3) .impact-icon{
    animation-delay:.8s;
}

.impact-card:nth-child(4) .impact-icon{
    animation-delay:1.2s;
}

/* =========================================
   COUNTERS
========================================= */

.counter-number{
    font-size:clamp(2.3rem,4vw,3rem);

    font-weight:700;

    color:#0f172a;

    margin-bottom:10px;
}

.plus{
    font-size:20px;

    color:#1e88e5;

    margin-left:4px;
}

/* =========================================
   TEXT
========================================= */

.impact-card p{
    color:#64748b;

    font-size:15px;

    line-height:1.7;

    margin-bottom:20px;
}

/* =========================================
   DECORATIVE LINE
========================================= */

.impact-line{
    display:block;

    width:60px;
    height:4px;

    margin:auto;

    border-radius:20px;

    background:
        linear-gradient(
            90deg,
            #1e88e5,
            #00bfa5
        );
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .impact-grid{
        grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    }
}

@media(max-width:768px){

    .impact-section{
        padding:70px 16px;
    }

    .impact-grid{
        grid-template-columns:1fr;
    }

    .impact-title{
        font-size:2rem;
    }

    .impact-card{
        padding:30px 22px;
    }
}

@media(max-width:480px){

    .impact-subtitle{
        font-size:14px;
    }

    .counter-number{
        font-size:2.2rem;
    }
}



/* =========================================
   OUTREACH PROGRAMS
========================================= */

.outreach-programs{
    padding:100px 20px;

    background:
        radial-gradient(circle at top left,
        rgba(30,136,229,0.05),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,191,165,0.05),
        transparent 30%),

        #f8fbff;

    position:relative;
    overflow:hidden;
}

/* =========================================
   INTRO
========================================= */

.outreach-intro{
    text-align:center;
    margin-bottom:60px;
}

.outreach-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#e3f2fd;
    color:#1565c0;

    font-size:12px;
    font-weight:600;

    margin-bottom:18px;
}

.section-title{
    font-size:clamp(2rem,4vw,3rem);

    color:#0f172a;

    margin-bottom:18px;
}

.section-intro{
    max-width:760px;
    margin:auto;

    line-height:1.9;

    color:#64748b;

    font-size:15px;
}

/* =========================================
   GRID
========================================= */

.programs-grid{
    max-width:1250px;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:24px;
}

/* =========================================
   CARD
========================================= */

.program-card{
    position:relative;

    background:rgba(255,255,255,0.82);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.5);

    border-radius:28px;

    padding:28px;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:
        0 10px 28px rgba(15,23,42,0.06);
}

/* TOP BORDER EFFECT */

.program-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
        linear-gradient(
            90deg,
            #1e88e5,
            #00bfa5
        );
}

/* HOVER */

.program-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 45px rgba(15,23,42,0.12);
}

/* =========================================
   TOP AREA
========================================= */

.program-top{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:20px;
}

/* ICON */

.program-icon{
    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #1e88e5,
            #00bfa5
        );

    color:white;

    font-size:24px;

    box-shadow:
        0 10px 25px rgba(30,136,229,0.22);
}

/* TAG */

.program-tag{
    background:#eef6ff;

    color:#1565c0;

    padding:8px 14px;

    border-radius:30px;

    font-size:11px;
    font-weight:600;
}

/* =========================================
   TEXT
========================================= */

.program-card h3{
    color:#0f172a;

    margin-bottom:14px;

    font-size:1.25rem;
}

.program-card p{
    color:#64748b;

    line-height:1.8;

    font-size:14px;

    margin-bottom:24px;
}

/* =========================================
   FEATURES
========================================= */

.program-features{
    list-style:none;
    padding:0;
    margin:0;

    display:flex;
    flex-direction:column;

    gap:12px;
}

.program-features li{
    display:flex;
    align-items:center;

    gap:10px;

    color:#334155;

    font-size:14px;
}

.program-features i{
    color:#00bfa5;

    font-size:15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .programs-grid{
        grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));
    }
}

@media(max-width:768px){

    .outreach-programs{
        padding:70px 16px;
    }

    .programs-grid{
        grid-template-columns:1fr;
    }

    .program-card{
        padding:24px;
    }

    .section-title{
        font-size:2rem;
    }
}

@media(max-width:480px){

    .section-intro{
        font-size:14px;
    }

    .program-card h3{
        font-size:1.1rem;
    }
}

/* =========================================
   COMMUNITY VOICES SECTION
========================================= */

.community-voices{
    padding:90px 20px;

    background:
        radial-gradient(circle at top left,
        rgba(30,136,229,0.05),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,191,165,0.05),
        transparent 30%),

        #ffffff;
}

/* =========================================
   INTRO
========================================= */


.voices-intro{
    text-align:center;
    margin-bottom:55px;
}

.voices-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#e3f2fd;
    color:#1565c0;

    font-size:12px;
    font-weight:600;

    margin-bottom:18px;
}

.voices-intro h2{
    font-size:clamp(2rem,4vw,2.8rem);

    color:#0f172a;

    margin-bottom:15px;
}

.voices-intro p{
    color:#64748b;

    max-width:680px;
    margin:auto;

    line-height:1.8;
}

/* =========================================
   GRID
========================================= */

.voices-grid{
    max-width:1200px;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:24px;
}

/* =========================================
   FLIP CARD
========================================= */

/* .voice-flip-card{
    perspective:1200px;
    height:360px;

    transition:transform .3s ease;
} */
.voice-flip-card{
    perspective:1200px;
    -webkit-perspective:1200px;

    height:360px;

    position:relative;

    overflow:hidden;
}

.voice-flip-card:hover{
    transform:translateY(-6px);
}

/* .voice-flip-inner{
    position:relative;

    width:100%;
    height:100%;

    transition:transform .75s cubic-bezier(.4,.2,.2,1);

    transform-style:preserve-3d;

    will-change:transform;
} */

.voice-flip-inner{
    position:relative;

    width:100%;
    height:100%;

    transform-style:preserve-3d;
    -webkit-transform-style:preserve-3d;

    transition:transform .75s cubic-bezier(.4,.2,.2,1);

    will-change:transform;
}

.voice-flip-card.active .voice-flip-inner{
    transform:rotateY(180deg);
}

/* =========================================
   FRONT + BACK
========================================= */

/* .voice-front,
.voice-back{
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    padding:28px;

    border-radius:26px;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    box-shadow:
        0 10px 28px rgba(15,23,42,0.08);
} */

.voice-front,
.voice-back{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    box-sizing:border-box;

    padding:28px;

    border-radius:26px;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

    transform-style:preserve-3d;

    overflow:hidden;

    display:flex;
    flex-direction:column;

    box-shadow:
        0 10px 28px rgba(15,23,42,0.08);
}

/* FRONT */

/* .voice-front{
    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.5);

    text-align:center;
    justify-content:center;
} */

.voice-front{

    transform:
        rotateY(0deg)
        translateZ(1px);

    background:rgba(255,255,255,.95);

    border:1px solid rgba(255,255,255,.5);

    text-align:center;
    justify-content:center;
}
/* BACK */

/* .voice-back{
    transform:rotateY(180deg);

    background:
        linear-gradient(
            135deg,
            #071b2a,
            #0a6c5e
        );

    color:white;

    overflow-y:auto;
} */

.voice-back{

    transform:
        rotateY(180deg)
        translateZ(1px);

    background:
        linear-gradient(
            135deg,
            #071b2a,
            #0a6c5e
        );

    color:white;

    overflow-y:auto;
}
/* =========================================
   QUOTE ICON
========================================= */

.voice-icon{
    width:60px;
    height:60px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #1e88e5,
            #00bfa5
        );

    color:white;

    font-size:22px;

    box-shadow:
        0 8px 22px rgba(30,136,229,0.25);
}

/* =========================================
   FRONT CONTENT
========================================= */

.voice-front p{
    color:#475569;

    line-height:1.9;

    font-size:15px;

    font-style:italic;

    margin-bottom:22px;
}

.voice-front h4{
    color:#0f172a;

    margin-bottom:20px;

    font-size:15px;
}

/* =========================================
   TAGS
========================================= */

.voice-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:8px;

    margin-bottom:18px;
}

.voice-tags span{
    background:#eef6ff;

    color:#1565c0;

    padding:7px 12px;

    border-radius:30px;

    font-size:11px;
    font-weight:600;
}

/* =========================================
   BACK CONTENT
========================================= */

.voice-back h4{
    margin-bottom:10px;

    font-size:16px;
}

.voice-back p{
    color:rgba(255,255,255,0.88);

    line-height:1.8;

    margin-bottom:18px;

    font-size:14px;
}

.voice-back ul{
    padding-left:18px;

    margin-bottom:18px;
}

.voice-back li{
    margin-bottom:8px;

    color:rgba(255,255,255,0.88);

    font-size:14px;
}

/* =========================================
   BUTTONS
========================================= */

.voice-btn{
    margin-top:auto;

    border:none;

    background:#1e88e5;
    color:white;

    padding:12px;

    border-radius:14px;

    font-size:13px;
    font-weight:600;

    cursor:pointer;

    transition:.3s ease;
}

.voice-btn:hover{
    background:#1565c0;
}

.close-voice-btn{
    background:white;
    color:#0a6c5e;
}

.close-voice-btn:hover{
    background:#f1f5f9;
}

/* =========================================
   SCROLLBAR
========================================= */

.voice-back::-webkit-scrollbar{
    width:4px;
}

.voice-back::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,0.3);
    border-radius:10px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .voices-grid{
        grid-template-columns:1fr;
    }

    .voice-flip-card{
        height:350px;
    }

    .voices-intro h2{
        font-size:1.9rem;
    }
}
@media(max-width:600px){

    .voices-grid{

        grid-template-columns:1fr;

        gap:24px;

        padding:0 10px;
    }

    .voice-flip-card{

        height:380px;
    }

    .voice-front,
    .voice-back{

        padding:20px;
    }

}
/* =========================================
   HEALTH UPDATES SECTION
========================================= */

.health-updates{
    padding:90px 20px;

    background:
        radial-gradient(circle at top left,
        rgba(30,136,229,0.06),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(0,191,165,0.06),
        transparent 30%),

        #f4f7fb;
}

/* =========================================
   INTRO
========================================= */

.updates-intro{
    text-align:center;
    margin-bottom:50px;
}

.updates-badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#e3f2fd;
    color:#1565c0;

    font-size:12px;
    font-weight:600;

    margin-bottom:18px;
}

.updates-intro h2{
    font-size:clamp(2rem,4vw,2.8rem);

    color:#0f172a;

    margin-bottom:15px;
}

.updates-intro p{
    color:#64748b;

    max-width:650px;
    margin:auto;

    line-height:1.8;
}

/* =========================================
   GRID
========================================= */

.updates-grid{
    max-width:1200px;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:24px;
}

/* =========================================
   FLIP CARD
========================================= */

/* .update-flip-card{
    perspective:1200px;
    height:340px;

    transition:transform .3s ease;
} */

.update-flip-card{
    perspective:1200px;
    -webkit-perspective:1200px;

    position:relative;

    height:340px;

    overflow:hidden;

    transition:transform .3s ease;
}
.update-flip-card:hover{
    transform:translateY(-6px);
}

/* .update-flip-inner{
    position:relative;

    width:100%;
    height:100%;

    transition:transform .75s cubic-bezier(.4,.2,.2,1);

    transform-style:preserve-3d;

    will-change:transform;
} */

.update-flip-inner{
    position:relative;

    width:100%;
    height:100%;

    transition:transform .75s cubic-bezier(.4,.2,.2,1);

    transform-style:preserve-3d;
    -webkit-transform-style:preserve-3d;

    will-change:transform;
}

.update-flip-card.active .update-flip-inner{
    transform:rotateY(180deg);
}

/* =========================================
   FRONT + BACK
========================================= */

/* .update-front,
.update-back{
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    padding:24px;

    border-radius:26px;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    box-shadow:
        0 10px 28px rgba(15,23,42,0.08);
} */

.update-front,
.update-back{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    box-sizing:border-box;

    padding:24px;

    border-radius:26px;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

    transform-style:preserve-3d;

    box-shadow:
        0 10px 28px rgba(15,23,42,0.08);
}

/* FRONT */

/* .update-front{
    background:rgba(255,255,255,0.82);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.5);

    text-align:center;
    justify-content:center;
} */

.update-front{

    transform:
        rotateY(0deg)
        translateZ(1px);

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.5);

    text-align:center;
    justify-content:center;
}

/* BACK */

/* .update-back{
    transform:rotateY(180deg);

    background:
        linear-gradient(
            135deg,
            #071b2a,
            #0a6c5e
        );

    color:white;

    overflow-y:auto;
} */

.update-back{

    transform:
        rotateY(180deg)
        translateZ(1px);

    background:
        linear-gradient(
            135deg,
            #071b2a,
            #0a6c5e
        );

    color:white;

    overflow-y:auto;
}

@media(max-width:600px){

    .updates-grid{
        grid-template-columns:1fr;
        gap:24px;

        padding:0 10px;
    }

    .update-flip-card{
        height:380px;
    }

    .update-front,
    .update-back{
        padding:20px;
    }

    .update-front h3{
        font-size:1.1rem;
    }

    .update-front p,
    .update-back p,
    .update-back li{
        font-size:13px;
    }
}

/* =========================================
   ICON
========================================= */

.update-icon{
    width:60px;
    height:60px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #1e88e5,
            #00bfa5
        );

    color:white;
    font-size:22px;

    box-shadow:
        0 8px 20px rgba(30,136,229,0.25);
}

/* =========================================
   TEXT
========================================= */

.update-front h3{
    color:#0f172a;

    margin-bottom:12px;

    font-size:1.2rem;
}

.update-front p{
    color:#64748b;

    line-height:1.7;

    font-size:14px;

    margin-bottom:18px;
}

/* =========================================
   TAGS
========================================= */

.update-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;

    gap:8px;

    margin-bottom:22px;
}

.update-tags span{
    background:#eef6ff;

    color:#1565c0;

    padding:7px 12px;

    border-radius:30px;

    font-size:11px;
    font-weight:600;
}

/* =========================================
   BACK CONTENT
========================================= */

.update-back h4{
    margin-bottom:10px;
    margin-top:5px;

    font-size:16px;
}

.update-back ul{
    padding-left:18px;

    margin-bottom:16px;
}

.update-back li{
    margin-bottom:8px;

    color:rgba(255,255,255,0.9);

    font-size:14px;
}

.update-back p{
    color:rgba(255,255,255,0.85);

    line-height:1.7;

    font-size:14px;
}

/* =========================================
   BUTTONS
========================================= */

.update-btn{
    margin-top:auto;

    border:none;

    background:#1e88e5;
    color:white;

    padding:12px;

    border-radius:14px;

    font-size:13px;
    font-weight:600;

    cursor:pointer;

    transition:.3s ease;
}

.update-btn:hover{
    background:#1565c0;
}

.close-update-btn{
    background:white;
    color:#0a6c5e;
}

.close-update-btn:hover{
    background:#f1f5f9;
}

/* =========================================
   SCROLLBAR
========================================= */

.update-back::-webkit-scrollbar{
    width:4px;
}

.update-back::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,0.3);
    border-radius:10px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:700px){

    .updates-grid{
        grid-template-columns:1fr;
    }

    .update-flip-card{
        height:330px;
    }

    .updates-intro h2{
        font-size:1.9rem;
    }
}

/* Tablets */
@media (max-width: 991px){
    .updates-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Phones */
@media (max-width: 768px){
    .updates-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .health-updates{
        padding:50px 15px;
    }
}

/* Small phones */
@media (max-width: 480px){
    .update-card{
        padding:25px 20px;
    }

    .update-card h3{
        font-size:1.1rem;
    }
}

/*Support our Mission*/

/* ===== SECTION ===== */
.support-mission{
    padding:30px 10px;
    background:linear-gradient(135deg, #0a6c5e, #0f8a73);
    color:white;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* optional soft background glow */
.support-mission::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-80px;
    left:-80px;
}

.support-mission::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    bottom:-80px;
    right:-80px;
}


/* ===== CONTENT BOX ===== */
.support-box{
    position:relative;
    max-width:700px;
    margin:auto;
}

.support-mission h2{
    font-size:32px;
    margin-bottom:15px;
}

.support-mission p{
    font-size:1.05rem;
    line-height:1.6;
    opacity:0.95;
}


/* ===== BUTTON ===== */
.support-btn{
    display:inline-block;
    margin-top:25px;
    background:white;
    color:#0a6c5e;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:all 0.3s ease;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.support-btn:hover{
    transform:translateY(-4px) scale(1.03);
    background:#e6fffb;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
}
@keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(255,255,255,0.4); }
    70%{ box-shadow:0 0 0 15px rgba(255,255,255,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,255,255,0); }
}

.support-btn{
    animation:pulse 2.5s infinite;
}


/* Tablets */
@media (max-width: 991px){
    .support-mission h2{
        font-size:28px;
    }
}

/* Phones */
@media (max-width: 768px){
    .support-mission{
        padding:60px 15px;
    }

    .support-mission h2{
        font-size:24px;
    }

    .support-mission p{
        font-size:0.95rem;
    }

    .support-btn{
        padding:12px 26px;
    }
}