/* =========================================================
   युवा सेवा संकल्प फाउंडेशन
   FINAL PREMIUM STYLE.CSS
   Navy + Green + Saffron + White
========================================================= */

:root{
    --navy:#06295c;
    --navy2:#0b3b7a;
    --blue:#1559a6;

    --green:#16843d;
    --green2:#20a04b;

    --orange:#f36b12;
    --orange2:#ff8a18;

    --red:#e53935;

    --white:#ffffff;
    --black:#111827;
    --text:#273444;
    --muted:#687585;

    --light:#f5f8fc;
    --light-blue:#edf5ff;
    --light-green:#eef9f1;
    --light-orange:#fff5e9;
    --light-red:#fff0f0;

    --border:#dce5ef;

    --shadow:0 8px 28px rgba(6,41,92,.10);
    --shadow-hover:0 15px 38px rgba(6,41,92,.17);

    --radius:16px;
    --transition:.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Noto Sans Devanagari","Mangal",Arial,sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

button{
    cursor:pointer;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar{
    background:var(--navy);
    color:#fff;
    min-height:36px;
    font-size:13px;
}

.top-bar-inner{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.top-contact a,
.top-contact span{
    display:flex;
    align-items:center;
    gap:7px;
    white-space:nowrap;
}

.top-contact i{
    color:var(--orange);
}

.top-social{
    display:flex;
    align-items:center;
    gap:9px;
}

.top-social span{
    margin-right:5px;
}

.top-social a{
    width:25px;
    height:25px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.12);
    transition:var(--transition);
}

.top-social a:hover{
    background:var(--orange);
    transform:translateY(-2px);
}


/* =========================================================
   HEADER
========================================================= */

.main-header{
    background:#fff;
    border-bottom:1px solid #e8edf3;
    position:relative;
    z-index:1000;
}

.header-inner{
    min-height:132px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand{
    display:flex;
    align-items:center;
    gap:16px;
    min-width:0;
}

.brand img{
    width:105px;
    height:105px;
    object-fit:contain;
}

.brand-text h1{
    font-size:31px;
    line-height:1.15;
    color:var(--navy);
    font-weight:800;
}

.brand-text h1 span{
    color:var(--green);
}

.brand-text h1 strong{
    display:block;
    color:var(--orange);
    font-size:30px;
}

.brand-text p{
    color:var(--navy);
    font-size:15px;
    font-weight:600;
    margin-top:5px;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-action{
    min-height:68px;
    padding:9px 15px;
    border:1px solid #d7e0ea;
    border-radius:11px;

    display:flex;
    align-items:center;
    gap:10px;

    background:#fff;
    transition:var(--transition);
}

.header-action:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow);
}

.header-action i{
    font-size:27px;
}

.member-action i{
    color:var(--green);
}

.volunteer-action i{
    color:var(--navy);
}

.header-action span{
    display:flex;
    flex-direction:column;
}

.header-action b{
    font-size:15px;
    color:var(--navy);
}

.header-action small{
    color:var(--muted);
    font-size:11px;
}

.donate-button{
    min-height:68px;
    padding:10px 18px;

    display:flex;
    align-items:center;
    gap:12px;

    background:linear-gradient(135deg,var(--orange),#ff8c00);
    color:#fff;

    border-radius:11px;

    transition:var(--transition);

    box-shadow:0 6px 18px rgba(243,107,18,.22);
}

.donate-button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(243,107,18,.32);
}

.donate-button i{
    font-size:29px;
}

.donate-button span{
    display:flex;
    flex-direction:column;
}

.donate-button b{
    font-size:17px;
}

.donate-button small{
    font-size:11px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav{
    background:var(--navy);
    color:#fff;

    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 4px 15px rgba(0,0,0,.12);
}

.nav-inner{
    display:flex;
    align-items:center;
}

.nav-menu{
    width:100%;
    display:flex;
    align-items:center;
}

.nav-menu > li{
    position:relative;
}

.nav-menu > li > a,
.search-item button{
    min-height:51px;

    padding:0 17px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:7px;

    color:#fff;

    font-size:14px;
    font-weight:600;

    border:0;
    background:transparent;

    transition:var(--transition);

    white-space:nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active{
    background:var(--green);
}

.nav-menu > li:first-child a.active{
    background:var(--orange);
}

.nav-menu i{
    font-size:11px;
}

.search-item{
    margin-left:auto;
}

.search-item button{
    font-size:18px;
    padding:0 13px;
}

.search-item button:hover{
    background:var(--orange);
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu{
    position:absolute;
    left:0;
    top:100%;

    min-width:215px;

    background:#fff;

    border-radius:0 0 12px 12px;

    box-shadow:var(--shadow);

    overflow:hidden;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:var(--transition);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;

    padding:11px 17px;

    color:var(--text);

    border-bottom:1px solid #edf1f5;

    font-size:14px;

    transition:var(--transition);
}

.dropdown-menu li a:hover{
    background:var(--light-green);
    color:var(--green);
    padding-left:23px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-btn{
    display:none;

    border:0;
    background:transparent;

    color:#fff;

    font-size:22px;

    padding:13px;
}


/* =========================================================
   SEARCH
========================================================= */

.search-box{
    background:#fff;

    box-shadow:var(--shadow);

    padding:14px 0;

    display:none;

    position:relative;
    z-index:998;
}

.search-box.show{
    display:block;
}

.search-box form{
    display:flex;
    max-width:700px;
    margin:auto;
}

.search-box input{
    flex:1;

    height:48px;

    padding:0 17px;

    border:1px solid var(--border);

    border-radius:8px 0 0 8px;

    outline:none;

    font-size:15px;
}

.search-box input:focus{
    border-color:var(--green);
}

.search-box button{
    border:0;

    padding:0 22px;

    border-radius:0 8px 8px 0;

    background:var(--orange);

    color:#fff;

    font-weight:700;
}


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

.hero-section{
    position:relative;

    min-height:390px;

    overflow:hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,.98) 0%,
            rgba(255,255,255,.93) 34%,
            rgba(255,255,255,.45) 55%,
            rgba(255,255,255,.05) 75%
        ),
        url("images/hero.jpg");

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.hero-container{
    min-height:390px;

    display:flex;
    align-items:center;

    position:relative;
    z-index:2;
}

.hero-content{
    width:52%;
    padding:35px 0;
}

.hero-content h2{
    color:var(--navy);

    font-size:46px;

    line-height:1.15;

    font-weight:800;
}

.hero-content h2 span{
    color:var(--orange);
}

.hero-content h3{
    color:var(--green);

    font-size:21px;

    margin-top:8px;

    font-weight:800;
}

.hero-content p{
    max-width:500px;

    margin:12px 0 20px;

    font-size:15px;

    color:#374151;
}

.hero-small-title{
    color:var(--green);

    font-weight:700;

    font-size:15px;
}

.hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn{
    min-height:44px;

    padding:9px 17px;

    border-radius:8px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:7px;

    font-size:13px;
    font-weight:700;

    border:2px solid transparent;

    transition:var(--transition);
}

.btn-primary{
    background:var(--navy) !important;
    color:#fff !important;
    border-color:var(--navy) !important;
}

.btn-primary:hover{
    background:var(--blue) !important;
    border-color:var(--blue) !important;
}

.btn-orange{
    background:var(--orange) !important;
    color:#fff !important;
    border-color:var(--orange) !important;
}

.btn-orange:hover{
    background:var(--orange2) !important;
    border-color:var(--orange2) !important;
}

.btn-green{
    background:var(--green) !important;
    color:#fff !important;
    border-color:var(--green) !important;
}

.btn-green:hover{
    background:var(--green2) !important;
    border-color:var(--green2) !important;
}

.btn-outline{
    background:#fff !important;
    color:var(--navy) !important;
    border-color:var(--navy) !important;
}

.btn-outline:hover{
    background:var(--navy) !important;
    color:#fff !important;
}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots{
    position:absolute;

    bottom:12px;
    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:7px;

    z-index:5;
}

.hero-dots .dot{
    width:10px;
    height:10px;

    background:#fff;

    border:1px solid #aaa;

    border-radius:50%;
}

.hero-dots .dot.active{
    background:var(--orange);
    border-color:var(--orange);
}


/* =========================================================
   SECTIONS
========================================================= */

.section{
    padding:52px 0;
}

.section-title{
    text-align:center;
    margin-bottom:28px;
}

.section-title > span{
    color:var(--green);

    font-size:14px;

    font-weight:700;
}

.section-title h2{
    color:var(--navy);

    font-size:31px;

    font-weight:800;

    line-height:1.3;
}

.title-line{
    margin:8px auto 0;

    width:95px;
    height:3px;

    position:relative;

    background:linear-gradient(
        90deg,
        var(--navy),
        var(--green),
        var(--orange)
    );

    border-radius:10px;
}

.title-line i{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    background:#fff;

    padding:0 7px;

    color:var(--green);
}


/* =========================================================
   WORKS
========================================================= */

.works-section{
    background:#fff;
}

.work-grid{
    display:grid;

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

    gap:15px;
}

.work-card{
    min-height:220px;

    padding:22px 15px;

    border:1px solid var(--border);

    border-radius:14px;

    text-align:center;

    transition:var(--transition);

    background:#fff;
}

.work-card:hover{
    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.education-card{
    background:linear-gradient(180deg,#f3f8ff,#fff);
}

.health-card{
    background:linear-gradient(180deg,#f0fbf4,#fff);
}

.environment-card{
    background:linear-gradient(180deg,#f1faed,#fff);
}

.social-card{
    background:linear-gradient(180deg,#fff7ed,#fff);
}

.blood-card{
    background:linear-gradient(180deg,#fff1f1,#fff);
}

.work-icon{
    width:65px;
    height:65px;

    margin:0 auto 8px;

    border-radius:50%;

    display:grid;
    place-items:center;

    font-size:31px;
}

.education-card .work-icon{
    color:var(--blue);
    background:#e6f0ff;
}

.health-card .work-icon{
    color:var(--green);
    background:#e5f7eb;
}

.environment-card .work-icon{
    color:#4c982b;
    background:#e9f6df;
}

.social-card .work-icon{
    color:var(--orange);
    background:#fff0df;
}

.blood-card .work-icon{
    color:var(--red);
    background:#ffe4e4;
}

.work-card h3{
    color:var(--navy);

    font-size:19px;

    margin-bottom:4px;
}

.work-card p{
    color:var(--muted);

    font-size:12px;

    line-height:1.6;

    min-height:58px;
}

.work-card > a{
    display:inline-flex;

    align-items:center;

    gap:7px;

    margin-top:10px;

    padding:5px 13px;

    border:1px solid currentColor;

    border-radius:7px;

    font-size:12px;

    font-weight:700;

    transition:var(--transition);
}

.education-card > a{
    color:var(--blue);
}

.health-card > a,
.environment-card > a{
    color:var(--green);
}

.social-card > a{
    color:var(--orange);
}

.blood-card > a{
    color:var(--red);
}

.work-card > a:hover{
    background:var(--navy);
    color:#fff;
    border-color:var(--navy);
}


/* =========================================================
   IMPACT
========================================================= */

.impact-section{
    background:var(--navy);

    color:#fff;

    padding:24px 0;
}

.impact-grid{
    display:grid;

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

    align-items:center;
}

.impact-title{
    padding:5px 20px 5px 0;

    border-right:1px solid rgba(255,255,255,.35);
}

.impact-title h2{
    font-size:23px;
    line-height:1.35;
}

.impact-title h2:after{
    content:"";

    display:block;

    width:60px;
    height:3px;

    margin-top:8px;

    background:linear-gradient(
        90deg,
        var(--orange),
        var(--green)
    );
}

.impact-item{
    min-height:85px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    border-right:1px solid rgba(255,255,255,.25);

    text-align:center;
}

.impact-item:last-child{
    border-right:0;
}

.impact-item i{
    font-size:29px;

    color:var(--green2);

    margin-bottom:3px;
}

.impact-item:nth-child(3) i{
    color:var(--orange);
}

.impact-item:nth-child(5) i{
    color:#ff3b30;
}

.impact-item strong{
    font-size:24px;
    line-height:1.1;
}

.impact-item span{
    font-size:12px;
    color:#dce9f7;
}


/* =========================================================
   JOIN SECTION
========================================================= */

.join-section{
    padding:28px 0;
    background:#fff;
}

.join-grid{
    display:grid;

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

    gap:15px;
}

.join-card{
    min-height:145px;

    display:flex;

    align-items:stretch;

    overflow:hidden;

    border-radius:13px;

    border:1px solid var(--border);

    transition:var(--transition);

    background:#fff;
}

.join-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.volunteer-box{
    background:linear-gradient(120deg,#eefaf1,#fff);
}

.member-box{
    background:linear-gradient(120deg,#edf4ff,#fff);
}

.donation-box{
    background:linear-gradient(120deg,#fff4e8,#fff);
}

.join-content{
    flex:1;

    min-width:0;

    padding:17px;
}

.join-content span{
    font-size:12px;

    font-weight:700;

    color:var(--green);
}

.member-box .join-content span{
    color:var(--navy);
}

.donation-box .join-content span{
    color:var(--orange);
}

.join-content h2{
    color:var(--navy);

    font-size:21px;

    line-height:1.3;
}

.donation-box h2{
    color:var(--orange);
}

.join-content p{
    color:var(--muted);

    font-size:12px;

    line-height:1.5;

    margin:5px 0 9px;
}

.join-btn{
    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:6px 12px;

    border-radius:7px;

    background:var(--green);

    color:#fff;

    font-size:12px;

    font-weight:700;
}

.member-box .join-btn{
    background:var(--navy);
}

.donation-box .join-btn{
    background:var(--orange);
}


/* =========================================================
   JOIN IMAGES
========================================================= */

.join-image{
    width:42%;

    min-width:42%;

    height:auto;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f5f8fc;
}

.join-image img{
    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center;
}

.volunteer-box .join-image{
    background:#eef9f1;
}

.volunteer-box .join-image img{
    object-fit:cover;
    object-position:center;
}

.donation-box .join-image{
    background:#fff7ed;
}

.donation-box .join-image img{
    object-fit:cover;
    object-position:center;
}


/* =========================================================
   MEMBER ICON
========================================================= */

.member-icon{
    width:42%;

    min-width:42%;

    display:grid;

    place-items:center;

    background:#e9f1ff;
}

.member-icon i{
    font-size:65px;
    color:var(--blue);
}


/* =========================================================
   ACTIVITIES
========================================================= */

.activities-section{
    background:var(--light);
}

.activity-grid{
    display:grid;

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

    gap:12px;
}

.activity-card{
    background:#fff;

    overflow:hidden;

    border-radius:11px;

    border:1px solid var(--border);

    transition:var(--transition);
}

.activity-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.activity-card img{
    width:100%;

    height:125px;

    object-fit:cover;
}

.activity-card div{
    padding:7px 5px;

    text-align:center;
}

.activity-card h3{
    color:var(--navy);

    font-size:12px;

    line-height:1.4;
}

.center-button{
    text-align:center;
    margin-top:17px;
}


/* =========================================================
   INFORMATION
========================================================= */

.information-section{
    padding-top:35px;
    background:#fff;
}

.info-grid{
    display:grid;

    grid-template-columns:1.1fr 1fr 1fr;

    gap:17px;
}

.info-box{
    border:1px solid var(--border);

    border-radius:14px;

    padding:18px;

    background:#fff;
}

.info-header{
    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    border-bottom:2px solid #eef2f6;

    padding-bottom:9px;
}

.info-header h2,
.quote-box h2{
    color:var(--navy);

    font-size:21px;
}

.info-header a{
    color:var(--green);

    font-size:12px;

    font-weight:700;
}


/* =========================================================
   NEWS
========================================================= */

.news-item{
    display:flex;

    gap:10px;

    padding:9px 0;

    border-bottom:1px solid #edf1f5;
}

.news-item:last-child{
    border-bottom:0;
}

.news-item img{
    width:78px;

    height:65px;

    object-fit:cover;

    border-radius:7px;

    flex-shrink:0;
}

.news-item h3{
    color:var(--navy);

    font-size:13px;

    line-height:1.4;
}

.news-item p{
    color:var(--muted);

    font-size:10px;

    line-height:1.4;
}

.news-item small{
    color:var(--orange);

    font-size:10px;
}


/* =========================================================
   EVENTS
========================================================= */

.events-box{
    background:#fffaf4;
}

.event-item{
    display:flex;

    gap:12px;

    padding:10px 0;

    border-bottom:1px solid #eee3d5;
}

.event-item:last-child{
    border-bottom:0;
}

.event-date{
    width:48px;

    height:50px;

    flex-shrink:0;

    border:2px solid var(--orange);

    border-radius:7px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    background:#fff;
}

.event-date strong{
    color:var(--navy);

    font-size:18px;

    line-height:1;
}

.event-date span{
    color:var(--orange);

    font-size:10px;

    font-weight:700;
}

.event-item h3{
    color:var(--navy);

    font-size:13px;

    line-height:1.4;
}

.event-item p,
.event-item small{
    color:var(--muted);

    font-size:10px;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-box{
    position:relative;

    overflow:hidden;

    background:#f9fbfe;
}

.quote-mark{
    color:var(--orange);

    font-size:60px;

    line-height:1;

    margin-top:12px;

    height:45px;
}

.quote-box blockquote{
    color:var(--navy);

    font-size:17px;

    line-height:1.7;

    font-weight:600;

    position:relative;

    z-index:2;
}

.quote-box > strong{
    display:block;

    margin-top:13px;

    color:var(--green);

    font-size:13px;
}

.tricolor-wave{
    position:absolute;

    bottom:-12px;

    left:-10%;

    width:120%;

    height:45px;

    border-top:6px solid var(--orange);

    border-radius:50%;

    transform:rotate(-4deg);
}

.tricolor-wave:after{
    content:"";

    position:absolute;

    left:0;

    top:8px;

    width:100%;

    height:5px;

    background:var(--green);

    border-radius:50%;
}


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

.final-cta{
    padding:35px 0;

    background:
        linear-gradient(
            90deg,
            var(--navy),
            var(--navy2)
        );

    color:#fff;
}

.final-cta-inner{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;
}

.final-cta span{
    color:#bfe8ce;

    font-size:14px;
}

.final-cta h2{
    font-size:29px;

    line-height:1.3;
}

.final-buttons{
    display:flex;

    gap:10px;

    flex-wrap:wrap;
}


/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:#031d43;

    color:#dce7f4;
}

.footer-grid{
    padding:45px 0 35px;

    display:grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.35fr
        1.2fr;

    gap:30px;
}

.footer-column{
    min-width:0;
}

.footer-logo{
    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:13px;
}

.footer-logo img{
    width:62px;

    height:62px;

    object-fit:contain;

    background:#fff;

    border-radius:50%;
}

.footer-logo span{
    color:#fff;

    font-size:16px;

    font-weight:700;

    line-height:1.25;
}

.footer-logo strong{
    display:block;

    color:var(--orange);
}

.footer-about p{
    font-size:12px;

    line-height:1.7;

    color:#b9c8d9;
}

.footer-social{
    display:flex;

    gap:8px;

    margin-top:14px;
}

.footer-social a{
    width:31px;

    height:31px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:#12396a;

    color:#fff;

    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--orange);

    transform:translateY(-3px);
}

.footer-column h3{
    color:#fff;

    font-size:16px;

    margin-bottom:15px;

    position:relative;

    padding-bottom:8px;
}

.footer-column h3:after{
    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:40px;

    height:3px;

    background:linear-gradient(
        90deg,
        var(--orange),
        var(--green)
    );
}

.footer-column ul li{
    margin-bottom:7px;
}

.footer-column ul li a{
    color:#b9c8d9;

    font-size:12px;

    transition:var(--transition);
}

.footer-column ul li a:hover{
    color:#fff;

    padding-left:5px;
}

.footer-contact p{
    display:flex;

    align-items:flex-start;

    gap:8px;

    color:#b9c8d9;

    font-size:12px;

    margin-bottom:9px;

    line-height:1.5;
}

.footer-contact i{
    color:var(--orange);

    margin-top:4px;
}

.footer-contact a:hover{
    color:#fff;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter p{
    font-size:12px;

    color:#b9c8d9;

    margin-bottom:12px;
}

.newsletter form{
    display:flex;

    flex-direction:column;

    gap:8px;
}

.newsletter input{
    height:42px;

    padding:0 12px;

    border:0;

    outline:none;

    border-radius:6px;

    font-size:12px;
}

.newsletter button{
    height:40px;

    border:0;

    border-radius:6px;

    background:var(--green);

    color:#fff;

    font-weight:700;

    transition:var(--transition);
}

.newsletter button:hover{
    background:var(--orange);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);

    background:#021735;
}

.footer-bottom-inner{
    min-height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom p{
    font-size:11px;

    color:#91a6bd;
}

.footer-bottom i{
    color:#ff4d4d;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top{
    position:fixed;

    right:22px;

    bottom:22px;

    width:45px;

    height:45px;

    border:0;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:17px;

    display:grid;

    place-items:center;

    box-shadow:0 6px 20px rgba(0,0,0,.22);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:var(--transition);

    z-index:1000;
}

.back-to-top.show{
    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.back-to-top:hover{
    background:var(--green);

    transform:translateY(-4px);
}


/* =========================================================
   FORMS
========================================================= */

.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;

    color:var(--navy);

    font-size:13px;

    font-weight:700;

    margin-bottom:6px;
}

.form-control{
    width:100%;

    min-height:45px;

    padding:9px 12px;

    border:1px solid var(--border);

    border-radius:8px;

    outline:none;

    background:#fff;

    color:var(--text);

    font-size:14px;

    transition:var(--transition);
}

.form-control:focus{
    border-color:var(--green);

    box-shadow:0 0 0 3px rgba(22,132,61,.08);
}

textarea.form-control{
    min-height:110px;

    resize:vertical;
}


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

.card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    padding:20px;

    transition:var(--transition);
}

.card:hover{
    transform:translateY(-5px);

    box-shadow:var(--shadow-hover);
}


/* =========================================================
   ALERTS
========================================================= */

.alert{
    padding:12px 15px;

    border-radius:8px;

    margin-bottom:15px;

    font-size:13px;

    font-weight:600;
}

.alert-success{
    background:#eaf8ef;

    color:#12652f;

    border:1px solid #bde6ca;
}

.alert-danger{
    background:#fff0f0;

    color:#a91e1e;

    border:1px solid #f2c2c2;
}

.alert-warning{
    background:#fff7e8;

    color:#965c00;

    border:1px solid #f1d49a;
}

.alert-info{
    background:#edf5ff;

    color:#1559a6;

    border:1px solid #c8ddf6;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible{
    outline:3px solid rgba(243,107,18,.45);

    outline-offset:3px;
}

::selection{
    background:var(--orange);

    color:#fff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#edf1f5;
}

::-webkit-scrollbar-thumb{
    background:var(--navy);

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--green);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media(max-width:1150px){

    .header-inner{
        min-height:110px;
    }

    .brand img{
        width:85px;
        height:85px;
    }

    .brand-text h1{
        font-size:26px;
    }

    .brand-text h1 strong{
        font-size:25px;
    }

    .header-action{
        padding:8px 10px;
    }

    .header-action small{
        display:none;
    }

    .donate-button{
        padding:10px 13px;
    }

    .nav-menu > li > a,
    .search-item button{
        padding:0 11px;

        font-size:12px;
    }

    .hero-content h2{
        font-size:40px;
    }

    .work-grid{
        gap:10px;
    }

    .work-card{
        padding:18px 10px;
    }

    .impact-grid{
        grid-template-columns:1fr repeat(5,1fr);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .top-contact span{
        display:none;
    }

    .top-contact{
        gap:15px;
    }

    .header-inner{
        min-height:95px;
    }

    .brand img{
        width:72px;
        height:72px;
    }

    .brand-text h1{
        font-size:22px;
    }

    .brand-text h1 strong{
        font-size:21px;
    }

    .brand-text p{
        font-size:11px;
    }

    .header-actions{
        gap:6px;
    }

    .header-action{
        min-height:52px;

        padding:6px 9px;
    }

    .header-action i{
        font-size:20px;
    }

    .header-action b{
        font-size:11px;
    }

    .donate-button{
        min-height:52px;

        padding:7px 10px;
    }

    .donate-button i{
        font-size:21px;
    }

    .donate-button b{
        font-size:12px;
    }


    /* NAV */

    .nav-inner{
        min-height:48px;
    }

    .mobile-menu-btn{
        display:block;
    }

    .nav-menu{
        position:absolute;

        left:0;
        right:0;

        top:48px;

        background:var(--navy);

        display:none;

        flex-direction:column;

        align-items:stretch;

        max-height:calc(100vh - 48px);

        overflow-y:auto;
    }

    .nav-menu.show{
        display:flex;
    }

    .nav-menu > li{
        width:100%;
    }

    .nav-menu > li > a,
    .search-item button{
        min-height:47px;

        justify-content:flex-start;

        padding:0 20px;

        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .search-item{
        margin-left:0;
    }

    .dropdown-menu{
        position:static;

        width:100%;

        min-width:0;

        opacity:1;

        visibility:visible;

        transform:none;

        display:none;

        border-radius:0;

        box-shadow:none;
    }

    .dropdown.open .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{
        background:#092f67;

        color:#fff;

        padding-left:40px;
    }


    /* HERO */

    .hero-section{
        min-height:460px;

        background-image:
            linear-gradient(
                90deg,
                rgba(255,255,255,.94) 0%,
                rgba(255,255,255,.72) 48%,
                rgba(255,255,255,.20) 100%
            ),
            url("images/hero.jpg");

        background-position:center;

        background-size:cover;
    }

    .hero-container{
        min-height:460px;

        display:flex;

        align-items:center;
    }

    .hero-content{
        width:60%;

        padding:35px 0;
    }

    .hero-content h2{
        font-size:38px;
    }

    .hero-content h3{
        font-size:18px;
    }

    .hero-content p{
        font-size:13px;
    }


    /* WORK */

    .work-grid{
        grid-template-columns:repeat(3,1fr);
    }


    /* IMPACT */

    .impact-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .impact-title{
        grid-column:1/-1;

        border-right:0;

        border-bottom:1px solid rgba(255,255,255,.25);

        padding:10px 0 15px;

        margin-bottom:5px;

        text-align:center;
    }

    .impact-title h2{
        font-size:21px;
    }

    .impact-title h2:after{
        margin:6px auto 0;
    }


    /* JOIN */

    .join-grid{
        grid-template-columns:1fr;
    }


    /* ACTIVITIES */

    .activity-grid{
        grid-template-columns:repeat(3,1fr);
    }


    /* INFORMATION */

    .info-grid{
        grid-template-columns:1fr 1fr;
    }

    .quote-box{
        grid-column:1/-1;
    }


    /* FOOTER */

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .container{
        width:94%;
    }


    /* TOP */

    .top-bar{
        min-height:34px;
    }

    .top-bar-inner{
        justify-content:center;
    }

    .top-contact{
        gap:10px;

        justify-content:center;
    }

    .top-contact a{
        font-size:10px;
    }

    .top-social{
        display:none;
    }


    /* HEADER */

    .header-inner{
        min-height:82px;

        gap:8px;
    }

    .brand{
        gap:7px;
    }

    .brand img{
        width:58px;
        height:58px;
    }

    .brand-text h1{
        font-size:18px;
    }

    .brand-text h1 strong{
        font-size:17px;
    }

    .brand-text p{
        font-size:9px;

        margin-top:1px;
    }

    .header-actions{
        margin-left:auto;
    }

    .header-action{
        min-height:40px;

        width:40px;

        padding:0;

        justify-content:center;

        border-radius:8px;
    }

    .header-action i{
        font-size:17px;
    }

    .header-action span{
        display:none;
    }

    .donate-button{
        min-height:40px;

        width:40px;

        padding:0;

        justify-content:center;

        border-radius:8px;
    }

    .donate-button i{
        font-size:18px;
    }

    .donate-button span{
        display:none;
    }


    /* NAV */

    .main-nav{
        position:relative;
    }


    /* HERO */

    .hero-section{
        min-height:410px;

        background-image:
            linear-gradient(
                90deg,
                rgba(255,255,255,.96) 0%,
                rgba(255,255,255,.82) 55%,
                rgba(255,255,255,.25) 100%
            ),
            url("images/hero.jpg");

        background-position:center right;

        background-size:cover;
    }

    .hero-container{
        min-height:410px;
    }

    .hero-content{
        width:75%;

        padding:25px 0;
    }

    .hero-small-title{
        font-size:11px;
    }

    .hero-content h2{
        font-size:30px;
    }

    .hero-content h3{
        font-size:15px;
    }

    .hero-content p{
        font-size:11px;

        line-height:1.6;

        margin:8px 0 13px;
    }

    .hero-buttons{
        gap:7px;
    }

    .hero-buttons .btn{
        min-height:38px;

        padding:6px 10px;

        font-size:10px;
    }


    /* SECTION */

    .section{
        padding:35px 0;
    }

    .section-title{
        margin-bottom:20px;
    }

    .section-title h2{
        font-size:25px;
    }


    /* WORK */

    .work-grid{
        grid-template-columns:1fr 1fr;

        gap:10px;
    }

    .work-card{
        min-height:205px;

        padding:15px 9px;
    }

    .work-icon{
        width:54px;
        height:54px;

        font-size:25px;
    }

    .work-card h3{
        font-size:16px;
    }

    .work-card p{
        font-size:10px;

        min-height:60px;
    }

    .work-card > a{
        font-size:10px;

        padding:4px 8px;
    }


    /* IMPACT */

    .impact-section{
        padding:20px 0;
    }

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-title{
        grid-column:1/-1;
    }

    .impact-item{
        min-height:85px;
    }

    .impact-item:nth-child(2n){
        border-right:0;
    }

    .impact-item i{
        font-size:23px;
    }

    .impact-item strong{
        font-size:20px;
    }

    .impact-item span{
        font-size:10px;
    }


    /* JOIN */

    .join-section{
        padding:20px 0;
    }

    .join-grid{
        gap:10px;
    }

    .join-card{
        min-height:145px;

        display:flex;

        align-items:stretch;

        overflow:hidden;
    }

    .join-content{
        padding:12px;

        flex:1;

        min-width:0;
    }

    .join-content span{
        font-size:10px;
    }

    .join-content h2{
        font-size:17px;
    }

    .join-content p{
        font-size:9px;

        line-height:1.45;

        margin:4px 0 7px;
    }

    .join-btn{
        padding:5px 9px;

        font-size:10px;
    }


    /* IMAGES */

    .join-image{
        width:40%;

        min-width:40%;

        height:auto;

        overflow:hidden;

        display:flex;

        align-items:center;

        justify-content:center;
    }

    .join-image img{
        width:100%;

        height:100%;

        object-fit:cover;

        object-position:center;
    }

    .volunteer-box .join-image,
    .donation-box .join-image{
        width:40%;
        min-width:40%;
    }


    /* MEMBER */

    .member-icon{
        width:40%;

        min-width:40%;
    }

    .member-icon i{
        font-size:45px;
    }


    /* ACTIVITIES */

    .activity-grid{
        grid-template-columns:1fr 1fr;

        gap:9px;
    }

    .activity-card img{
        height:105px;
    }

    .activity-card h3{
        font-size:10px;
    }


    /* INFORMATION */

    .info-grid{
        grid-template-columns:1fr;
    }

    .quote-box{
        grid-column:auto;
    }

    .quote-box blockquote{
        font-size:14px;
    }


    /* CTA */

    .final-cta-inner{
        flex-direction:column;

        text-align:center;
    }

    .final-cta h2{
        font-size:23px;
    }

    .final-buttons{
        justify-content:center;
    }


    /* FOOTER */

    .footer-grid{
        grid-template-columns:1fr 1fr;

        gap:25px 15px;
    }

    .footer-about{
        grid-column:1/-1;
    }

    .footer-contact{
        grid-column:1/-1;
    }

    .newsletter{
        grid-column:1/-1;
    }

    .footer-bottom-inner{
        text-align:center;

        flex-direction:column;

        gap:2px;

        padding:10px 0;
    }

    .footer-bottom p{
        font-size:9px;
    }


    /* BACK TO TOP */

    .back-to-top{
        width:40px;
        height:40px;

        right:15px;
        bottom:15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:380px){

    .brand-text h1{
        font-size:15px;
    }

    .brand-text h1 strong{
        font-size:14px;
    }

    .brand-text p{
        display:none;
    }

    .brand img{
        width:52px;
        height:52px;
    }

    .header-action,
    .donate-button{
        width:36px;

        min-height:36px;
    }


    /* HERO */

    .hero-section{
        min-height:390px;
    }

    .hero-container{
        min-height:390px;
    }

    .hero-content{
        width:78%;
    }

    .hero-content h2{
        font-size:27px;
    }

    .hero-content h3{
        font-size:14px;
    }

    .hero-content p{
        font-size:10px;
    }


    /* WORK */

    .work-grid{
        grid-template-columns:1fr;
    }

    .work-card{
        min-height:auto;
    }

    .work-card p{
        min-height:auto;
    }


    /* JOIN */

    .join-card{
        min-height:135px;
    }

    .join-image{
        width:39%;

        min-width:39%;
    }

    .join-content{
        padding:10px;
    }

    .join-content h2{
        font-size:16px;
    }

    .join-content p{
        font-size:9px;
    }

    .join-btn{
        font-size:9px;

        padding:4px 8px;
    }


    /* ACTIVITIES */

    .activity-grid{
        grid-template-columns:1fr;
    }

    .activity-card img{
        height:160px;
    }


    /* FOOTER */

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-about,
    .footer-contact,
    .newsletter{
        grid-column:auto;
    }
}


/* =========================================================
   FINAL IMAGE SAFETY
========================================================= */

.volunteer-box .join-image img,
.donation-box .join-image img,
.activity-card img,
.news-item img{
    max-width:100%;
}


/* =========================================================
   MOBILE TOUCH
========================================================= */

@media(max-width:600px){

    a,
    button{
        -webkit-tap-highlight-color:transparent;
    }

    .btn,
    .join-btn,
    .header-action,
    .donate-button{
        touch-action:manipulation;
    }
}


/* =========================================================
   PRINT
========================================================= */

@media print{

    .top-bar,
    .main-nav,
    .header-actions,
    .back-to-top,
    .final-cta,
    .footer{
        display:none !important;
    }

    body{
        background:#fff;
        color:#000;
    }

    .section{
        padding:20px 0;
    }
}
