/*==================================================
ANNOUNCEMENT BAR
==================================================*/
html{

    scroll-behavior:smooth;

}
body{

    margin:0;

    font-family:'Nunito',sans-serif;

    color:#334155;

    background:#F8FAFC;

}
body.menu-open{

    overflow:hidden;

}
.announcement-bar{

    background:linear-gradient(
        90deg,
        #000044,
        #09637E
    );

    color:#fff;

    font-size:.92rem;

    position:relative;

    overflow:hidden;

}

.announcement-bar::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    animation:announcementShine 8s linear infinite;

}

@keyframes announcementShine{

    from{

        transform:translateX(-100%);

    }

    to{

        transform:translateX(100%);

    }

}

.announcement-content{

    min-height:48px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:relative;

    z-index:2;

}

.announcement-content span{

    font-weight:600;

    letter-spacing:.4px;

}

.announcement-content a{

    color:#FAB95B;

    font-weight:700;

    transition:.3s;

}

.announcement-content a:hover{

    color:#fff;

    letter-spacing:1px;

}

/*==================================================
TOP CONTACT BAR
==================================================*/

.topbar{

    background:#000044;

    color:#ffffff;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.topbar-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:62px;

    gap:25px;

}

/*=====================================
LEFT
=====================================*/

.topbar-left{

    display:flex;

    align-items:center;

    gap:26px;

    flex-wrap:wrap;

}

.topbar-left a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#ffffff;

    font-size:.92rem;

    transition:all .35s ease;

}

.topbar-left a:hover{

    color:#FAB95B;

}

.topbar-left i{

    width:34px;

    height:34px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#FAB95B;

    color:#000044;

    font-size:14px;

    transition:.35s;

}

.topbar-left a:hover{

    background:#09637E;

    transform:translateY(-3px);

    box-shadow:0 12px 24px rgba(0,0,0,.25);

}

/*=====================================
RIGHT
=====================================*/

.topbar-right{

    display:flex;

    align-items:center;

    gap:14px;

}

/* Follow Us */

.topbar-right::before{

    content:"Follow Us";

    color:rgba(255,255,255,.7);

    font-size:.82rem;

    letter-spacing:.15em;

    text-transform:uppercase;

    margin-right:10px;

}

.topbar-right a{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    transition:all .35s ease;

}

.topbar-right a:hover{

    background:#FAB95B;

    color:#000044;

    transform:translateY(-4px) scale(1.08);

    box-shadow:0 14px 30px rgba(250,185,91,.35);

}
/*==============================
HEADER
==============================*/

.container{

    max-width:1280px;

    margin:0 auto;

    padding:0 20px;

}

.header{

    position:sticky;

    top:0;

    padding:16px 0;

    left:0;

    width:100%;

    z-index:1000;

   

    transition:all .35s ease;

}


.header.scrolled{

    padding:10px 0;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:28px;

    min-height:88px;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.65);

    border-radius:28px;

    padding:0 28px;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s;

}

.header.scrolled .header-wrapper{

    min-height:74px;

    border-radius:22px;

    box-shadow:0 12px 30px rgba(15,23,42,.12);

}


.header-actions{

    display:flex;

    align-items:center;

    gap:16px;

    flex-shrink:0;

}


/*==============================
LOGO
==============================*/

.logo{

    flex-shrink:0;

}

.logo img{

    height:70px;

    width:auto;

}

.logo-text h2{

    font-size:1.25rem;

    color:#000044;

    font-weight:800;

    line-height:1.2;

}

.logo-text span{

    display:block;

    margin-top:4px;

    font-size:.8rem;

    color:#64748b;

    letter-spacing:.08em;

    text-transform:uppercase;

}


/*==============================
DESKTOP NAVIGATION
==============================*/



.desktop-nav{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    min-width:0;
}

.nav-item{

    position:relative;

}

.nav-link{

    display:flex;

    align-items:center;

    gap:8px;

    color:#1e293b;

    font-weight:700;

    font-size:15px;

    transition:.3s;

}

.nav-link i{

    font-size:11px;

    transition:.3s;

}

.nav-link:hover{

    color:#09637E;

}


/*==============================
SEARCH
==============================*/

/*==================================================
SEARCH OVERLAY
==================================================*/

.search-overlay{

    position:fixed;

    inset:0;

    background:rgba(10,15,30,.82);

    backdrop-filter:blur(12px);

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding:80px 20px;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:5000;

}

.search-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================
SEARCH BOX
==================================*/

.search-box{

    width:min(900px,100%);

    background:#fff;

    border-radius:28px;

    padding:45px;

    position:relative;

    box-shadow:0 35px 80px rgba(0,0,0,.25);

    transform:translateY(-30px);

    transition:.35s ease;

}

.search-overlay.active .search-box{

    transform:translateY(0);

}

/*==================================
CLOSE BUTTON
==================================*/

.close-search{

    position:absolute;

    top:22px;

    right:22px;

    width:46px;

    height:46px;

    border-radius:50%;

    background:#F1F5F9;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.close-search:hover{

    background:#09637E;

    color:#fff;

}

/*==================================
HEADINGS
==================================*/

.search-box h2{

    color:#000044;

    font-size:2rem;

    margin-bottom:10px;

}

.search-box p{

    color:#64748B;

    margin-bottom:30px;

    line-height:1.7;

}

/*==================================
SEARCH INPUT
==================================*/

.search-input-wrapper{

    display:flex;

    align-items:center;

    gap:16px;

    border:2px solid #E2E8F0;

    border-radius:60px;

    padding:18px 24px;

    transition:.3s;

}

.search-input-wrapper:focus-within{

    border-color:#09637E;

    box-shadow:0 0 0 5px rgba(9,99,126,.12);

}

.search-input-wrapper i{

    color:#09637E;

    font-size:20px;

}

.search-input-wrapper input{

    flex:1;

    border:none;

    outline:none;

    font-size:1.05rem;

    background:transparent;

}

/*==================================
POPULAR SEARCHES
==================================*/

.popular-searches{

    margin-top:35px;

}

.popular-searches span{

    display:block;

    margin-bottom:16px;

    font-weight:700;

    color:#000044;

}

.popular-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.popular-tags button{

    padding:12px 18px;

    border-radius:40px;

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    transition:.3s;

}

.popular-tags button:hover{

    background:#09637E;

    color:#fff;

}

/*==================================
SEARCH RESULTS
==================================*/

.search-results{

    margin-top:35px;

    max-height:420px;

    overflow-y:auto;

}
/*==================================================
SEARCH RESULTS
==================================================*/

.search-result{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-radius:18px;

    text-decoration:none;

    transition:.3s;

    border:1px solid transparent;

    margin-bottom:12px;

}

.search-result:hover{

    background:#F8FAFC;

    border-color:#E2E8F0;

    transform:translateX(6px);

}

.search-category{

    display:inline-block;

    margin-bottom:8px;

    padding:4px 12px;

    border-radius:20px;

    background:#EAF7FB;

    color:#09637E;

    font-size:.78rem;

    font-weight:700;

}

.search-result h4{

    color:#000044;

    font-size:1.05rem;

}

.search-result i{

    color:#09637E;

    font-size:18px;

}

.no-results{

    text-align:center;

    padding:50px 20px;

    color:#64748B;

}

.no-results i{

    font-size:40px;

    margin-bottom:18px;

    color:#CBD5E1;

}

.no-results h3{

    color:#000044;

    margin-bottom:10px;

}
/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.search-overlay{

    padding:25px 15px;

}

.search-box{

    padding:28px;

    border-radius:22px;

}

.search-box h2{

    font-size:1.5rem;

}

.search-input-wrapper{

    padding:14px 18px;

}

.popular-tags{

    gap:10px;

}

.popular-tags button{

    width:100%;

    justify-content:flex-start;

}

}

.donate-btn{

    background:#FAB95B;

    color:white;

    padding:13px 24px;

    border-radius:40px;

    font-weight:700;

    transition:.35s;

}

.donate-btn:hover{

    transform:translateY(-3px);

}

.get-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 26px;

    border-radius:999px;

    background:#000044;

    color:#fff;

    font-weight:700;

    transition:.35s;

    white-space:nowrap;

}

.get-btn:hover{

    background:#09637E;

    transform:translateY(-2px);

}
.get-btn i{

    transition:.3s;

}

.get-btn.active i{

    transform:rotate(180deg);

}

/*==============================
HAMBURGER
==============================*/

.menu-btn{

    display:none;

    width:48px;

    height:48px;

    border-radius:14px;

    background:#F8FAFC;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    position:relative;

    z-index:1002;

}

.menu-btn span{

    width:24px;

    height:3px;

    background:#000044;

    border-radius:20px;

    transition:.35s;

}


/*==============================
TABLET
==============================*/

@media(max-width:1100px){

    .desktop-nav{

        display:none;

    }


    .menu-btn{

        display:flex;

    }

}


/*==============================
PHONE
==============================*/

@media(max-width:768px){

    .header-wrapper{

        padding:18px;

        min-height:80px;

    }

    .logo img{

        height:55px;

    }

    .logo-text h2{

        font-size:1rem;

    }

    .logo-text span{

        display:none;

    }

}

/*==================================================
MEGA MENU
==================================================*/

.nav-item{

    position:relative;

}

/* Hidden by default */
.mega-menu{

    position:absolute;

    top:calc(100% + 20px);

    left:50%;

    transform:translateX(-50%) translateY(20px);

     width:min(720px, calc(100vw - 40px));

    background:#fff;

    border-radius:24px;

    border:1px solid #e5e7eb;

    box-shadow:0 25px 60px rgba(15,23,42,.12);

    padding:30px;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.35s;

    z-index:999;

     max-height:calc(100vh - 170px);

    overflow-y:auto;

}

.mega-menu.show{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateX(-50%) translateY(0);

}


/*==================================================
MEGA CONTENT PANEL
==================================================*/

.mega-content{

  

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}


/*==================================================
CARDS
==================================================*/

.mega-card{

    display:flex;

    align-items:flex-start;

    gap:14px;

    padding:12px 14px;

    border-radius:16px;

    transition:.3s;

}

.mega-card:hover{

    background:#F4FAFC;

    transform:translateY(-4px);

}

.mega-icon{

    width:54px;

    height:54px;

    border-radius:16px;

    background:#EDF8FB;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#09637E;

    font-size:20px;

    transition:.3s;

    flex-shrink:0;

}

.mega-card:hover .mega-icon{

    background:#09637E;

    color:#fff;

}

.mega-card h3{

    color:#000044;

    margin-bottom:6px;

    font-size:17px;

    font-weight:700;

}

.mega-card p{

    font-size:14px;

    color:#64748B;

    line-height:1.6;

}

/*==================================================
ARROW ANIMATION
==================================================*/

.nav-link i{

    transition:.35s;

}

.nav-item:hover .nav-link i{

    transform:rotate(180deg);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .mega-menu{

        width:680px;

    }

}

@media(max-width:1100px){

    .mega-menu{

        display:none;           

    }

}

/*==================================================
GET INVOLVED DROPDOWN
==================================================*/

.involved-menu{

    width:620px;

}

.mega-title{

    text-align:center;

    margin-bottom:25px;

}

.mega-title h3{

    font-size:28px;

    color:#000044;

    margin-bottom:10px;

    font-family:"Playfair Display", serif;

}

.mega-title p{

    color:#64748b;

    line-height:1.7;

    max-width:480px;

    margin:auto;

}

.cta-card{

    border:1px solid transparent;
      padding:20px;

    min-height:140px;

}

.cta-card:hover{

    border-color:#FAB95B;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}
.cta-card p{

    margin-top:8px;

    line-height:1.5;

    font-size:.95rem;

}

/*==================================================
TOP BAR RESPONSIVE
==================================================*/
/*==================================================
TOPBAR RESPONSIVE
==================================================*/

@media(max-width:992px){

    .topbar-wrapper{

        flex-direction:column;

        justify-content:center;

        padding:16px 0;

        gap:18px;

    }

    .topbar-left{

        justify-content:center;

    }

    .topbar-right{

        justify-content:center;

    }

}

@media(max-width:768px){

    .topbar-left{

        flex-direction:column;

        align-items:flex-start;

        gap:14px;

        width:100%;

    }

    .topbar-left a{

        width:100%;

    }

    .topbar-left a::after{

        display:none;

    }

    .topbar-right{

        width:100%;

        justify-content:center;

    }

    .topbar-right::before{

        display:none;

    }

}
/*==================================================
HIDE TOP CONTACT BAR ON MOBILE
==================================================*/

@media (max-width: 991px){

    .topbar{

        display:none;

    }

}

@media (max-width:991px){

    .logo-text{

        display:none;

    }

    .logo img{

        height:60px;

    }

}
/*=========================================
HAMBURGER ANIMATION
=========================================*/

.menu-btn.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-btn.active span:nth-child(2){

    opacity:0;

}

.menu-btn.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/*==================================================
MOBILE NAVIGATION
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    left:0;

    width:360px;

    max-width:90%;

    height:100vh;

    background:#ffffff;

    display:flex;

    flex-direction:column;

    transform:translateX(-100%);

    transition:transform .4s ease;

    z-index:2000;

    overflow-y:auto;

    box-shadow:25px 0 60px rgba(15,23,42,.18);

}

.mobile-menu.active{

    transform:translateX(0);

}

/*==================================================
OVERLAY
==================================================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.55);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1999;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}
/*==================================================
MOBILE HEADER
==================================================*/

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    border-bottom:1px solid #E5E7EB;

}

.mobile-brand{

    display:flex;

    align-items:center;

    gap:14px;

}

.mobile-brand img{

    width:58px;

}

.mobile-brand h2{

    font-size:18px;

    color:#000044;

    font-weight:800;

}

.mobile-brand span{

    display:block;

    margin-top:3px;

    font-size:12px;

    color:#64748B;

}

.close-menu{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#F3F4F6;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

    cursor:pointer;

}

.close-menu:hover{

    background:#000044;

    color:white;

}
/*==================================================
MOBILE LINKS
==================================================*/

.mobile-nav{

    display:flex;

    flex-direction:column;

    padding:14px 0;

}

.mobile-nav a.active{

    background:#EDF8FB;

    color:#09637E;

    border-left:4px solid #FAB95B;

}

.mobile-nav>a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 24px;

    color:#1E293B;

    font-weight:700;

    transition:.3s;

}

.mobile-nav>a:hover{

    background:#F8FAFC;

    color:#09637E;

}

/*==================================================
ACCORDION
==================================================*/

.accordion-btn{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 24px;

    font-weight:700;

    color:#1E293B;

     cursor:pointer;

    background:white;

}

.accordion-btn span{

    display:flex;

    align-items:center;

    gap:14px;

}

.accordion-content{

    max-height:0;

    overflow:hidden;

    background:#F8FAFC;

    transition:max-height .35s ease;

}

.accordion-content a{

    display:block;

    padding:14px 60px;

    color:#64748B;

    transition:.3s;

}

.accordion-content a:hover{

    color:#09637E;

    background:white;

    border-left:4px solid #FAB95B;

}

/*==================================================
MOBILE BUTTONS
==================================================*/

.mobile-actions{

    margin-top:auto;

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.mobile-actions a{

    text-align:center;

    padding:15px;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.mobile-actions .partner-btn{

    background:#000044;

    color:white;

}

.mobile-actions .apply-btn{

    background:#09637E;

    color:white;

}

.mobile-actions .donate-btn{

    background:#FAB95B;

    color:white;

}

.mobile-actions a:hover{

    transform:translateY(-3px);

}

/*==================================================
SOCIAL
==================================================*/

.mobile-social{

    display:flex;

    justify-content:center;

    gap:16px;

    padding:24px;

    border-top:1px solid #E5E7EB;

}

.mobile-social a{

    width:44px;

    height:44px;

    border-radius:50%;

    background:#F3F4F6;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.mobile-social a:hover{

    background:#09637E;

    color:white;

}

.involved-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.cta-action{

    background:#F8FAFC;

    border:1px solid #E2E8F0;

    border-radius:18px;

    padding:22px;

    text-decoration:none;

    transition:.35s;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.cta-action:hover{

    background:#09637E;

    border-color:#09637E;

    transform:translateY(-6px);

}

.cta-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.action-arrow{

    font-size:18px;

    color:#94A3B8;

    transition:.35s;

}

.cta-action h3{

    font-size:1.1rem;

    color:#000044;

    margin:0;

    transition:.35s;

}

.cta-action p{

    margin:0;

    color:#64748B;

    line-height:1.6;

    transition:.35s;

}

.cta-action:hover h3,

.cta-action:hover p,

.cta-action:hover .action-arrow{

    color:#fff;

}

.cta-action:hover .mega-icon{

    background:rgba(255,255,255,.15);

    color:#fff;

}