/*=========================================================
                    VOLUNTEER PAGE
=========================================================*/

.volunteer-page{
    width:100%;
}



/*=========================================================
                    VOLUNTEER HERO
=========================================================*/

.volunteer-hero{

    position:relative;

    min-height:650px;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:
        130px
        0
        90px;

    background:

        radial-gradient(
            circle at 82% 45%,
            rgba(59,130,246,.25),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #0B2F68 0%,
            #104A91 48%,
            #0B326E 100%
        );

}


.volunteer-hero-overlay{

    position:absolute;

    inset:0;

    pointer-events:none;

    background:
        linear-gradient(
            90deg,
            rgba(7,27,61,.22),
            transparent 65%
        );

}


/*=========================================================
                    HERO GRID
=========================================================*/

.volunteer-hero-grid{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap:60px;

    align-items:center;

}


/*=========================================================
                    HERO CONTENT
=========================================================*/

.volunteer-hero-content{

    max-width:680px;

    color:#ffffff;

}


.volunteer-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:9px;

    padding:
        9px
        17px;

    margin-bottom:24px;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius:50px;

    background:
        rgba(255,255,255,.08);

    color:#E0F2FE;

    font-size:12px;

    font-weight:800;

    letter-spacing:1.7px;

    text-transform:uppercase;

    backdrop-filter:blur(8px);

}


.volunteer-eyebrow i{

    color:#BAE6FD;

}


.volunteer-hero h1{

    margin:0 0 24px;

    font-family:'Manrope',sans-serif;

    font-size:60px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-1.8px;

}


.volunteer-hero h1 span{

    display:block;

    color:#BAE6FD;

}


.volunteer-hero p{

    max-width:620px;

    margin:0 0 32px;

    color:
        rgba(255,255,255,.80);

    font-size:17px;

    line-height:1.8;

}


/*=========================================================
                    HERO ACTIONS
=========================================================*/

.volunteer-hero-actions{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}


.volunteer-hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:
        15px
        27px;

    border-radius:12px;

    background:#ffffff;

    color:#1558B0;

    text-decoration:none;

    font-weight:800;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.volunteer-hero-btn:hover{

    color:#1558B0;

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 42px
        rgba(0,0,0,.27);

}


.volunteer-hero-note{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:
        rgba(255,255,255,.68);

    font-size:13px;

    font-weight:600;

}


.volunteer-hero-note i{

    color:#BAE6FD;

}


/*=========================================================
                    HERO VISUAL
=========================================================*/

.volunteer-hero-visual{

    position:relative;

    min-height:430px;

    display:flex;

    align-items:center;

    justify-content:center;

}


.volunteer-hero-circle{

    position:relative;

    z-index:3;

    width:260px;

    height:260px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius:50%;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.16),
            rgba(255,255,255,.05)
        );

    color:#BAE6FD;

    font-size:72px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.22);

    backdrop-filter:blur(18px);

}


.volunteer-hero-circle::before{

    content:"";

    position:absolute;

    inset:-35px;

    border:
        1px solid
        rgba(191,219,254,.16);

    border-radius:50%;

}


.volunteer-hero-circle::after{

    content:"";

    position:absolute;

    inset:-75px;

    border:
        1px dashed
        rgba(191,219,254,.12);

    border-radius:50%;

}


.volunteer-hero-circle i{

    animation:
        volunteerPulse
        3s
        ease-in-out
        infinite;

}


/*=========================================================
                FLOATING CARDS
=========================================================*/

.volunteer-floating-card{

    position:absolute;

    z-index:6;

    display:flex;

    align-items:center;

    gap:10px;

    padding:
        12px
        15px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius:14px;

    background:
        rgba(255,255,255,.10);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.16);

    backdrop-filter:blur(12px);

    color:#ffffff;

}


.volunteer-floating-card i{

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:10px;

    background:
        rgba(186,230,253,.13);

    color:#BAE6FD;

}


.volunteer-floating-card span{

    font-size:12px;

    font-weight:700;

}


.volunteer-card-one{

    top:55px;

    right:5px;

    animation:
        volunteerFloatOne
        4s
        ease-in-out
        infinite;

}


.volunteer-card-two{

    bottom:55px;

    right:0;

    animation:
        volunteerFloatTwo
        4.5s
        ease-in-out
        infinite;

}


.volunteer-card-three{

    bottom:5px;

    left:5px;

    animation:
        volunteerFloatOne
        5s
        ease-in-out
        infinite;

}


/*=========================================================
                    ANIMATIONS
=========================================================*/

@keyframes volunteerPulse{

    0%,
    100%{

        transform:
            scale(1);

    }

    50%{

        transform:
            scale(1.07);

    }

}


@keyframes volunteerFloatOne{

    0%,
    100%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-9px);

    }

}


@keyframes volunteerFloatTwo{

    0%,
    100%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(8px);

    }

}


/*=========================================================
                    SECTION HEADING
=========================================================*/

.volunteer-section-heading{

    max-width:720px;

    margin:
        0
        auto
        55px;

    text-align:center;

}


.volunteer-section-heading > span,
.volunteer-label{

    display:inline-block;

    margin-bottom:13px;

    color:#2563EB;

    font-size:13px;

    font-weight:800;

    letter-spacing:1.8px;

    text-transform:uppercase;

}


.volunteer-section-heading h2{

    margin:
        0
        0
        16px;

    color:#0F172A;

    font-family:'Manrope',sans-serif;

    font-size:42px;

    line-height:1.2;

    font-weight:800;

}


.volunteer-section-heading p{

    margin:0;

    color:#64748B;

    font-size:16px;

    line-height:1.8;

}


/*=========================================================
                    WHY VOLUNTEER
=========================================================*/

.volunteer-why{

    padding:
        100px
        0;

    background:#F8FAFC;

}


.volunteer-benefit-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:22px;

}


.volunteer-benefit-card{

    padding:
        30px
        25px;

    background:#ffffff;

    border:
        1px solid
        #E5EAF2;

    border-radius:20px;

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.05);

    transition:.35s ease;

}


.volunteer-benefit-card:hover{

    transform:
        translateY(-7px);

    border-color:#BFDBFE;

    box-shadow:
        0 22px 45px
        rgba(37,99,235,.12);

}


.volunteer-benefit-icon{

    width:56px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

    border-radius:15px;

    background:#EAF2FF;

    color:#2563EB;

    font-size:21px;

}


.volunteer-benefit-card h3{

    margin:
        0
        0
        11px;

    color:#0F172A;

    font-size:19px;

    font-weight:750;

}


.volunteer-benefit-card p{

    margin:0;

    color:#64748B;

    font-size:14px;

    line-height:1.75;

}


/*=========================================================
                    WAYS TO HELP
=========================================================*/

.volunteer-ways{

    padding:
        110px
        0;

    background:#ffffff;

}


.volunteer-ways-grid{

    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:70px;

    align-items:center;

}


.volunteer-ways-content h2{

    max-width:600px;

    margin:
        0
        0
        20px;

    color:#0F172A;

    font-family:'Manrope',sans-serif;

    font-size:42px;

    line-height:1.2;

    font-weight:800;

}


.volunteer-ways-content > p{

    max-width:620px;

    margin:
        0
        0
        28px;

    color:#64748B;

    font-size:16px;

    line-height:1.8;

}


.volunteer-check-list{

    list-style:none;

    margin:0;

    padding:0;

}


.volunteer-check-list li{

    display:flex;

    align-items:center;

    gap:11px;

    margin-bottom:15px;

    color:#334155;

    font-size:15px;

    font-weight:600;

}


.volunteer-check-list i{

    color:#2563EB;

}


.volunteer-ways-visual{

    min-height:390px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            #EAF2FF,
            #DBEAFE
        );

}


.volunteer-ways-card{

    width:250px;

    height:250px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:10px;

    border-radius:50%;

    background:#ffffff;

    color:#2563EB;

    box-shadow:
        0 25px 55px
        rgba(37,99,235,.15);

    text-align:center;

}


.volunteer-ways-card i{

    font-size:45px;

}


.volunteer-ways-card strong{

    color:#0F172A;

    font-size:20px;

}


.volunteer-ways-card span{

    color:#64748B;

    font-size:13px;

}


/*=========================================================
                VOLUNTEER FORM
=========================================================*/

.volunteer-form-section{

    padding:
        110px
        0;

    background:#F8FAFC;

}


.volunteer-form-box{

    max-width:950px;

    margin:0 auto;

    padding:55px;

    background:#ffffff;

    border:
        1px solid
        #E5EAF2;

    border-radius:26px;

    box-shadow:
        0 20px 55px
        rgba(15,23,42,.07);

}


.volunteer-form-heading{

    margin-bottom:42px;

    text-align:center;

}


.volunteer-form-heading > span{

    color:#2563EB;

    font-size:13px;

    font-weight:800;

    letter-spacing:1.8px;

}


.volunteer-form-heading h2{

    margin:
        12px
        0;

    color:#0F172A;

    font-family:'Manrope',sans-serif;

    font-size:40px;

    font-weight:800;

}


.volunteer-form-heading p{

    margin:0;

    color:#64748B;

}


.volunteer-form-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:20px;

}


.volunteer-form-group label{

    display:block;

    margin-bottom:8px;

    color:#334155;

    font-size:14px;

    font-weight:650;

}


.volunteer-form-group input,
.volunteer-form-group select,
.volunteer-form-group textarea{

    width:100%;

    padding:
        13px
        15px;

    border:
        1px solid
        #CBD5E1;

    border-radius:10px;

    outline:none;

    background:#ffffff;

    color:#0F172A;

    font-family:inherit;

    transition:.25s ease;

}


.volunteer-form-group textarea{

    resize:vertical;

}


.volunteer-form-group input:focus,
.volunteer-form-group select:focus,
.volunteer-form-group textarea:focus{

    border-color:#2563EB;

    box-shadow:
        0 0 0 3px
        rgba(37,99,235,.10);

}


.full-width{

    grid-column:
        1 / -1;

}


.volunteer-form-footer{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-top:30px;

    padding-top:25px;

    border-top:
        1px solid
        #E5EAF2;

}


.volunteer-form-footer p{

    margin:0;

    color:#64748B;

    font-size:13px;

    line-height:1.6;

}


.volunteer-form-footer p i{

    color:#2563EB;

    margin-right:5px;

}


.volunteer-submit{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:9px;

    padding:
        14px
        23px;

    border:none;

    border-radius:11px;

    background:
        linear-gradient(
            135deg,
            #2563EB,
            #0F62FE
        );

    color:#ffffff;

    font-weight:700;

    cursor:pointer;

    box-shadow:
        0 12px 28px
        rgba(37,99,235,.22);

    transition:.3s ease;

}


.volunteer-submit:hover{

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(37,99,235,.30);

}


.volunteer-form-message{

    display:none;

    margin-top:20px;

    padding:14px 16px;

    border-radius:10px;

    background:#EFF6FF;

    color:#1D4ED8;

    font-size:14px;

}


.volunteer-form-message.show{

    display:block;

}


/*=========================================================
                    FINAL CTA
=========================================================*/

.volunteer-final-cta{

    padding:
        90px
        0;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            #0F3B82,
            #1558B0
        );

    color:#ffffff;

}


.volunteer-final-cta h2{

    margin:
        0
        0
        15px;

    font-family:'Manrope',sans-serif;

    font-size:40px;

    font-weight:800;

}


.volunteer-final-cta p{

    margin:
        0
        0
        28px;

    color:
        rgba(255,255,255,.78);

}


.volunteer-final-btn{

    display:inline-flex;

    padding:
        14px
        28px;

    border-radius:11px;

    background:#ffffff;

    color:#1558B0;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

}


.volunteer-final-btn:hover{

    color:#1558B0;

    transform:
        translateY(-3px);

}


/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:1100px){

    .volunteer-benefit-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:991px){

    .volunteer-hero{

        min-height:auto;

        padding:
            125px
            0
            80px;

    }


    .volunteer-hero-grid{

        grid-template-columns:1fr;

        gap:30px;

    }


    .volunteer-hero-content{

        max-width:700px;

        margin:auto;

        text-align:center;

    }


    .volunteer-hero-content p{

        margin-left:auto;

        margin-right:auto;

    }


    .volunteer-hero-actions{

        justify-content:center;

    }


    .volunteer-hero-visual{

        min-height:380px;

    }


    .volunteer-ways-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

}


@media(max-width:768px){

    .volunteer-hero{

        padding:
            120px
            0
            65px;

    }


    .volunteer-hero h1{

        font-size:40px;

        letter-spacing:-.7px;

    }


    .volunteer-hero p{

        font-size:16px;

    }


    .volunteer-hero-visual{

        min-height:330px;

    }


    .volunteer-hero-circle{

        width:210px;

        height:210px;

        font-size:58px;

    }


    .volunteer-floating-card{

        padding:
            9px
            11px;

    }


    .volunteer-card-one{

        top:20px;

        right:0;

    }


    .volunteer-card-two{

        bottom:30px;

        right:0;

    }


    .volunteer-card-three{

        bottom:0;

        left:0;

    }


    .volunteer-why,
    .volunteer-ways,
    .volunteer-form-section{

        padding:
            75px
            0;

    }


    .volunteer-section-heading h2,
    .volunteer-ways-content h2{

        font-size:32px;

    }


    .volunteer-benefit-grid{

        grid-template-columns:1fr;

    }


    .volunteer-form-box{

        padding:
            28px
            20px;

        border-radius:20px;

    }


    .volunteer-form-heading h2{

        font-size:32px;

    }


    .volunteer-form-grid{

        grid-template-columns:1fr;

    }


    .full-width{

        grid-column:auto;

    }


    .volunteer-form-footer{

        flex-direction:column;

        align-items:stretch;

    }


    .volunteer-submit{

        width:100%;

    }


    .volunteer-final-cta{

        padding:
            75px
            20px;

    }


    .volunteer-final-cta h2{

        font-size:32px;

    }

}


@media(max-width:390px){

    .volunteer-hero h1{

        font-size:34px;

    }


    .volunteer-hero-circle{

        width:185px;

        height:185px;

        font-size:50px;

    }


    .volunteer-floating-card{

        transform:scale(.88);

    }


    .volunteer-card-one{

        right:-8px;

    }


    .volunteer-card-three{

        left:-8px;

    }
    
 

}
   /* =========================================================
   VOLUNTEER FORM - ANTI BOT HONEYPOT
========================================================= */

.volunteer-honeypot {

    position:absolute !important;

    width:1px !important;
    height:1px !important;

    padding:0 !important;
    margin:-1px !important;

    overflow:hidden !important;

    clip:rect(0, 0, 0, 0) !important;

    white-space:nowrap !important;

    border:0 !important;

}
