﻿/*=====================================================
FILE: style.css
PART 1 - GLOBAL, LOADER, NAVBAR, HERO SECTION
======================================================*/

/*=========================
 GOOGLE FONT
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
 ROOT VARIABLES
=========================*/
:root {

    /* LIONS BRAND COLORS */
    --primary-color: #004b87;
    --secondary-color: #f2a900;
    --dark-color: #082b49;
    --white-color: #ffffff;
    --text-color: #5f6b7a;

    --border-color:
        rgba(0,75,135,0.12);

    /* LIONS BLUE GRADIENT */
    --gradient:
        linear-gradient(
        135deg,
        #003b73,
        #005fa3
    );

    /* LIONS GOLD GRADIENT */
    --orange-gradient:
        linear-gradient(
        135deg,
        #f2a900,
        #ffd24d
    );

    --shadow:
        0 15px 40px
        rgba(0,0,0,0.12);

    --glass:
        rgba(255,255,255,0.15);

    --transition:
        all 0.4s ease;
}

/*=========================
 RESET
=========================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f7f9fc;
    overflow-x:hidden;
    color:#222;
}

/*=========================
 COMMON
=========================*/
.container{
    width:95%;
    max-width:1300px;
    margin:auto;
}

.section-space{
    padding:50px 0;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.section-title{
    font-size:45px;
    line-height:1.2;
    color:var(--primary-color);
    margin-bottom:20px;
    font-weight:700;
}

.section-subtitle{
    color:var(--secondary-color);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:15px;
}

.section-description{
    color:var(--text-color);
    line-height:1.9;
    font-size:16px;
}

/*=========================
 GLASS CARD
=========================*/
.glass-card{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.2);
    box-shadow:var(--shadow);
    /*border-radius:25px;*/
}

/*=========================
 PAGE LOADER
=========================*/
.loader-wrapper{
    position:fixed;
    inset:0;
    background:#082b49;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader{
    display:flex;
    gap:12px;
}

.loader span{
    width:18px;
    height:18px;
    background:var(--secondary-color);
    border-radius:50%;
    animation:bounce 0.7s infinite alternate;
}

.loader span:nth-child(2){
    animation-delay:0.2s;
}

.loader span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes bounce{
    to{
        transform:translateY(-15px);
        opacity:.5;
    }
}

/*=========================
 SCROLL BAR
=========================*/
#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:var(--orange-gradient);
    z-index:999999;
}

/*=========================
 HEADER
=========================*/
.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    padding:20px 0;
    transition:0.4s ease;
    background-color: rgba(0,59,115,.96);
}

.header.sticky{
    background:
    rgba(0,59,115,.96);

    backdrop-filter:blur(18px);

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.15);

    padding:14px 0;
}
/*=========================
 NAVBAR
=========================*/
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:#fff;
}

.logo span{
    color:var(--secondary-color);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links li a{
    color:#fff;
    font-weight:500;
    transition:var(--transition);
    position:relative;
}

.nav-links li a:hover,
.nav-links li a.active{
    color:var(--secondary-color);
}

.nav-links li a::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    background:var(--secondary-color);
    bottom:-8px;
    left:0;
    transition:0.4s;
}

.nav-links li a:hover::after{
    width:100%;
}

/*=========================
 NAV BUTTON
=========================*/
.btn-nav{

    background:
    linear-gradient(
    135deg,
    #f2a900,
    #ffd24d
    );

    color:#082b49;

    padding:14px 28px;

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

    font-weight:700;

    transition:
    var(--transition);

    box-shadow:
    0 10px 28px
    rgba(242,169,0,.35);

    position:relative;

    overflow:hidden;
}

/* Hover Effect */
.btn-nav:hover{

    transform:
    translateY(-4px);

    background:
    linear-gradient(
    135deg,
    #ffd24d,
    #f2a900
    );

    box-shadow:
    0 18px 35px
    rgba(242,169,0,.45);
}

/* Shine Effect */
.btn-nav::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
    );

    transition:.6s;
}

.btn-nav:hover::before{
    left:100%;
}

/*=========================
 HAMBURGER
=========================*/
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#fff;
    border-radius:50px;
    transition:0.4s;
}

/*=========================
 HERO SECTION
=========================*/
.hero-section{
    position:relative;
    height:75vh;
    overflow:hidden;
}

.hero-slider{
    position:relative;
    width:100%;
    height:100%;
    margin-top: 102px;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    visibility:hidden;
    transition:1.5s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.05) 100%
    );
}

/*=========================
 HERO CONTENT
=========================*/
.hero-content{
    position:relative;
    z-index:2;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-width: 1140px;
  margin-top: -187px;
}

.hero-subtitle{
    color:var(--secondary-color);
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
    animation:fadeDown 1s ease;
}

.hero-content h1{
    font-size:50px;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
    animation:fadeUp 1s ease;
}

.hero-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
    font-size:18px;
    animation:fadeBottom 1.3s ease;
}

/*=========================
 HERO BUTTONS
=========================*/
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* Common Button Style */
.primary-btn,
.secondary-btn{
    padding:16px 34px;
    /*border-radius:8px;*/
    font-weight:600;
    transition:all .4s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

/* PRIMARY BUTTON - LIONS GOLD */
.primary-btn{

    background:
    linear-gradient(
    135deg,
    #f2a900,
    #ffd24d
    );

    color:#082b49;

    box-shadow:
    0 10px 25px
    rgba(242,169,0,.35);
}

/* Gold Hover Glow */
.glow-btn:hover{
    box-shadow:
        0 0 20px rgba(242,169,0,.45),
        0 0 45px rgba(242,169,0,.30),
        0 0 70px rgba(242,169,0,.20);
}

/* Hover Animation */
.primary-btn:hover{
    transform:translateY(-5px);

    background:
    linear-gradient(
    135deg,
    #ffd24d,
    #f2a900
    );

    box-shadow:
    0 18px 35px
    rgba(242,169,0,.40);
}

/* SECONDARY BUTTON - LIONS BLUE GLASS */
.secondary-btn{

    border:
    2px solid rgba(255,255,255,.35);

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

    color:#ffffff;

    backdrop-filter:
    blur(12px);

    box-shadow:
    0 8px 20px
    rgba(0,0,0,.08);
}

/* Hover */
.secondary-btn:hover{

    background:
    #ffffff;

    color:
    #004b87;

    border-color:
    #ffffff;

    transform:
    translateY(-5px);
}

/*=========================
 HERO FLOATING SHAPES
=========================*/
.floating-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(50px);
    animation:float 6s infinite ease-in-out;
}

.shape1{
    width:250px;
    height:250px;
   background:
    rgba(242,169,0,.22);
    top:10%;
    right:10%;
}

.shape2{
    width:180px;
    height:180px;
    background:
    rgba(0,75,135,.22);
    bottom:10%;
    left:5%;
}

@keyframes float{
    50%{
        transform:translateY(-25px);
    }
}

/*=========================
 SLIDER DOTS
=========================*/
.slider-controls{
    position:absolute;
    left:50%;
    bottom:50px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:0.4s;
}

.dot.active{
    background:var(--secondary-color);
    transform:scale(1.2);
}

/*=========================
 HERO INFO CARDS
=========================*/
.hero-info{
    margin-top:-100px;
    position:relative;
    z-index:99;
}

.hero-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.hero-card{
    text-align:center;
    padding:40px 30px;
    background:#fff;
    transition:0.4s;
}

.hero-card:hover{
    transform:translateY(-10px);
}

.hero-card i{
    font-size:45px;
    color:var(--secondary-color);
    margin-bottom:20px;
}

.hero-card h3{
    font-size:24px;
    margin-bottom:10px;
    color:var(--primary-color);
}

.hero-card p{
    color:var(--text-color);
    line-height:1.8;
}

/*=========================
 ANIMATIONS
=========================*/
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeBottom{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*=====================================================
FILE: style.css
PART 2 - ABOUT, COUNTER, PROGRAMS,
DONATION, VOLUNTEER SECTION
======================================================*/

/*=========================
 SECTION HEADING
=========================*/
.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

/*=========================
 ABOUT SECTION
=========================*/
.about-section{
    position:relative;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    object-fit:cover;
    min-height:650px;
}

.experience-box{
    position:absolute;
    bottom:40px;
    right:-30px;
    background:rgba(255,255,255,0.95);
    padding:30px 40px;
    text-align:center;
    border-radius:25px;
    backdrop-filter:blur(20px);
}

.experience-box h2{
    font-size:48px;
    color:var(--secondary-color);
    margin-bottom:8px;
    font-weight:800;
}

.experience-box p{
    font-weight:500;
    color:var(--primary-color);
}

/*=========================
 ABOUT CONTENT
=========================*/
.about-content{
    position:relative;
}

.about-features{
    margin:35px 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    color:var(--primary-color);
}

.feature-item i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--orange-gradient);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    flex-shrink:0;
}

/*=========================
 COUNTER SECTION
=========================*/
.counter-section{
    background:
        linear-gradient(
        rgba(12,45,87,.94),
        rgba(8,20,32,.96)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55?w=1600');
    background-size:cover;
    background-position:center;
    padding:100px 0;
    position:relative;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-card{
    text-align:center;
    padding:50px 30px;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    transition:0.4s ease;
}

.counter-card:hover{
    transform:translateY(-12px);
}

.counter-card i{
    font-size:50px;
    color:var(--secondary-color);
    margin-bottom:25px;
}

.counter-card h2{
    font-size:48px;
    color:#fff;
    font-weight:800;
    margin-bottom:10px;
}

.counter-card p{
    color:#ddd;
    font-size:17px;
}

/*=========================
 PROGRAMS SECTION
=========================*/
.programs-section{
    background:#f7f9fc;
    position:relative;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.program-card{
    padding:45px 35px;
    border-radius:30px;
    background:#fff;
    transition:0.45s ease;
    position:relative;
    overflow:hidden;
}

.program-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    background:var(--gradient);
    left:0;
    bottom:0;
    z-index:0;
    transition:0.45s ease;
}

.program-card:hover::before{
    height:100%;
}

.program-card:hover{
    transform:translateY(-12px);
}

.program-card *{
    position:relative;
    z-index:2;
}

.program-icon{
    width:85px;
    height:85px;
    border-radius:25px;
    background:rgba(255,145,77,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    transition:0.4s;
}

.program-icon i{
    font-size:38px;
    color:var(--secondary-color);
}

.program-card h3{
    font-size:26px;
    color:var(--primary-color);
    margin-bottom:15px;
    font-weight:700;
    transition:0.4s;
}

.program-card p{
    color:var(--text-color);
    line-height:1.9;
    margin-bottom:25px;
    transition:0.4s;
}

.program-card a{
    color:var(--secondary-color);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:0.4s;
}

.program-card:hover h3,
.program-card:hover p,
.program-card:hover a{
    color:#fff;
}

.program-card:hover .program-icon{
    background:rgba(255,255,255,.2);
}

.program-card:hover .program-icon i{
    color:#fff;
}

/*=========================
 DONATION CTA
=========================*/
.donation-section{
    position:relative;
    background:
        url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?w=1600');
    background-size:cover;
    background-position:center;
    padding:35px 0;
    text-align:center;
    overflow:hidden;
}

.donation-section .overlay{
    background:
        linear-gradient(
        rgba(8,20,32,.86),
        rgba(12,45,87,.90));
}

.donation-content{
    position:relative;
    z-index:10;
    max-width:850px;
}

.donation-content h2{
    font-size:45px;
    line-height:1.2;
    color:#fff;
    margin:20px 0;
    font-weight:800;
}

.donation-content p{
    color:#ddd;
    line-height:2;
    font-size:18px;
    margin-bottom:35px;
}

/*=========================
 GLOW BUTTON
=========================*/
.glow-btn{
    position:relative;
    overflow:hidden;
}

.glow-btn:hover{
    box-shadow:
        0 0 20px rgba(255,145,77,.5),
        0 0 40px rgba(255,145,77,.4),
        0 0 70px rgba(255,145,77,.3);
}

/*=========================
 VOLUNTEER SECTION
=========================*/
.volunteer-section{
    background:#fff;
    position:relative;
}

.volunteer-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.volunteer-content{
    position:relative;
}

.volunteer-list{
    margin:35px 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.volunteer-image{
    position:relative;
}

.volunteer-image img{
    border-radius:35px;
    min-height:650px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,0.18);
}

/*=========================
 FLOATING CARD
=========================*/
.floating-card{
    position:absolute;
    left:-30px;
    bottom:50px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px 28px;
    border-radius:25px;
    animation:floatingCard 3s ease-in-out infinite;
}

.floating-card i{
    width:65px;
    height:65px;
    border-radius:20px;
    background:var(--orange-gradient);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.floating-card h4{
    font-size:28px;
    color:var(--primary-color);
    margin-bottom:5px;
}

.floating-card p{
    color:var(--text-color);
    font-size:15px;
}

@keyframes floatingCard{
    50%{
        transform:translateY(-15px);
    }
}
/*=====================================================
FILE: style.css
PART 3 - TESTIMONIALS, IMPACT,
FOOTER, RESPONSIVE, ANIMATIONS
======================================================*/

/*=========================
 TESTIMONIAL SECTION
=========================*/
.testimonial-section{
    background:#f7f9fc;
    position:relative;
}

.testimonial-slider{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:30px;
    padding:45px 35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.testimonial-card:hover{
    transform:translateY(-12px);
}

.testimonial-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    top:0;
    left:0;
    background:var(--orange-gradient);
}

.quote-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(255,145,77,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.quote-icon i{
    font-size:32px;
    color:var(--secondary-color);
}

.testimonial-card p{
    line-height:2;
    color:var(--text-color);
    margin-bottom:30px;
    font-size:16px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h4{
    color:var(--primary-color);
    font-size:20px;
}

.testimonial-user span{
    color:var(--text-color);
    font-size:14px;
}

/*=========================
NGO NEWS SECTION
=========================*/
.ngo-news{
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
}

.ngo-news-grid{
    display:grid;
    grid-template-columns:1.15fr .95fr;
    gap:25px;
    align-items:stretch;
}

/*=========================
FEATURED NEWS
=========================*/
.featured-news{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    height:730px; /* reduced height */
    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.featured-news img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.featured-news:hover img{
    transform:scale(1.06);
}

.featured-overlay{
    position:absolute;
    inset:0;
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    background:
    linear-gradient(
    transparent 25%,
    rgba(8,20,32,.92));
}

.news-category{
    width:max-content;
    background:
    rgba(255,145,77,.18);

    border:
    1px solid rgba(255,255,255,.15);

    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:18px;
    font-size:14px;
}

.featured-overlay h3{
    color:#fff;
    font-size:34px; /* smaller */
    line-height:1.35;
    margin-bottom:14px;
}

.featured-overlay p{
    color:#d8dde6;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}

.featured-overlay a{
    color:#f2a900;
    font-weight:600;
}

/* Date */
.news-date{
    position:absolute;
    top:25px;
    right:25px;

    width:78px;
    height:88px;

    background:
    rgba(8,20,32,.55);

    backdrop-filter:blur(14px);

    border-radius:20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.news-date h4{
    color:#f2a900;
    font-size:30px;
}

.news-date span{
    color:#fff;
    font-size:14px;
}

/*=========================
SIDE NEWS
=========================*/
.side-news-wrap{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.side-news-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    display:grid;
    grid-template-columns:170px 1fr;
    min-height:160px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.side-news-card:hover{
    transform:translateY(-5px);
}

.side-news-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.side-news-content{
    padding:22px;
}

.side-news-content span{
    color:#f2a900;
    font-size:13px;
    font-weight:600;
    margin-bottom:10px;
    display:inline-block;
}

.side-news-content h4{
    font-size:21px;
    color:#004b87;
    line-height:1.4;
    margin-bottom:10px;
}

.side-news-content p{
    color:#667085;
    line-height:1.7;
    font-size:14px;
    margin-bottom:12px;
}

.side-news-content a{
    color:#f2a900;
    font-weight:600;
    font-size:14px;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:991px){

    .ngo-news-grid{
        grid-template-columns:1fr;
    }

    .featured-news{
        height:460px;
    }
}

@media(max-width:768px){

    .side-news-card{
        grid-template-columns:1fr;
    }

    .featured-news{
        height:400px;
    }

    .featured-overlay{
        padding:25px;
    }

    .featured-overlay h3{
        font-size:28px;
    }
}
/*=========================================
FEATURED CONTENT SLIDER ANIMATIONS
=========================================*/

/* Featured container */
.featured-news{
    position:relative;
    overflow:hidden;
}

/* Smooth image transition */
.featured-news img{
    transition:
        opacity .7s ease,
        transform 5s ease;
    transform:scale(1);
}

/* Animate while changing slide */
.featured-news.animate img{
    opacity:.45;
    transform:scale(1.12);
}

/* Overlay animation */
.featured-overlay{
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.featured-news.animate .featured-overlay{
    opacity:0;
    transform:translateY(20px);
}

/* Date animation */
.news-date{
    transition:
        opacity .45s ease,
        transform .45s ease;
}

.featured-news.animate .news-date{
    opacity:0;
    transform:translateY(-15px);
}

/*=========================================
TEXT TRANSITIONS
=========================================*/

#featuredCategory,
#featuredTitle,
#featuredDesc,
#featuredLink,
#featuredDay,
#featuredMonth{
    transition:all .4s ease;
}

/*=========================================
RIGHT CARD STYLING
=========================================*/

.side-news-card{
    cursor:pointer;
    position:relative;
    border:2px solid transparent;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

/* Hover Effect */
.side-news-card:hover{
    transform:translateY(-6px);
    box-shadow:
        0 18px 35px rgba(0,0,0,.10);
}

/* Active Card */
.side-news-card.active-card{
    border-color:#f2a900;
    box-shadow:
        0 15px 35px rgba(242,169,0,.20);
}

/* Active indicator */
.side-news-card.active-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:#f2a900;
}

/*=========================================
ACTIVE CARD IMAGE EFFECT
=========================================*/

.side-news-card img{
    transition:transform .6s ease;
}

.side-news-card:hover img{
    transform:scale(1.08);
}

/*=========================================
FEATURED LINK
=========================================*/

.featured-overlay a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    transition:.3s ease;
}

.featured-overlay a:hover{
    gap:12px;
}

/*=========================================
SIDE CARD LINKS
=========================================*/

.side-news-content a{
    text-decoration:none;
    position:relative;
}

.side-news-content a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#f2a900;
    transition:.3s ease;
}

.side-news-content a:hover::after{
    width:100%;
}

/*=========================================
SMOOTH CARD ENTRY
=========================================*/

.side-news-card{
    animation:cardFade .8s ease forwards;
}

@keyframes cardFade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=========================================
FEATURED IMAGE ZOOM LOOP
=========================================*/

@keyframes slowZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.featured-news img{
    animation:slowZoom 8s linear infinite alternate;
}

/*=========================================
LOADING FADE
=========================================*/

@keyframes contentFade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.featured-overlay h3,
.featured-overlay p,
.featured-overlay a,
.featured-overlay span{
    animation:contentFade .6s ease;
}

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

@media(max-width:991px){

    .side-news-card.active-card::before{
        width:100%;
        height:4px;
    }

    .featured-news{
        height:500px;
    }

    .featured-overlay h3{
        font-size:28px;
    }
}

@media(max-width:768px){

    .featured-news{
        height:420px;
    }

    .featured-overlay{
        padding:25px;
    }

    .featured-overlay h3{
        font-size:24px;
        line-height:1.4;
    }

    .featured-overlay p{
        font-size:14px;
        line-height:1.7;
    }

    .news-date{
        width:65px;
        height:75px;
    }

    .news-date h4{
        font-size:24px;
    }

    .side-news-card{
        grid-template-columns:1fr;
    }

    .side-news-card img{
        height:220px;
    }
}

@media(max-width:576px){

    .featured-news{
        height:380px;
    }

    .featured-overlay{
        padding:20px;
    }

    .featured-overlay h3{
        font-size:20px;
    }

    .featured-overlay p{
        font-size:13px;
    }

    .news-date{
        top:15px;
        right:15px;
    }
}

/*=========================
 FOOTER
=========================*/
.footer{
    background:
    linear-gradient(
    135deg,
    #003b73,
    #082b49
    );
}

.footer-grid{
    display:grid;
    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.2fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-logo{
    font-size:36px;
    font-weight:800;
    color:#fff;
    display:inline-block;
    margin-bottom:20px;
    margin-top: 30px;
}

.footer-logo span{
    color:var(--secondary-color);
}

.footer-col p{
    color:#c9d0da;
    line-height:1.9;
}

.footer-col h3{
    margin-bottom:25px;
    font-size:24px;
    position:relative;
    color: white;
    margin-top: 36px;
}

.footer-col h3::after{
    content:'';
    position:absolute;
    width:60px;
    height:3px;
    background:var(--secondary-color);
    left:0;
    bottom:-10px;
}

.footer-col ul li{
    margin-bottom:14px;
}

.footer-col ul li a{
    color:#c9d0da;
    transition:0.4s;
}

.footer-col ul li a:hover{
    color:var(--secondary-color);
    padding-left:8px;
}

/*=========================
 SOCIAL ICONS
=========================*/
.social-icons{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:0.4s ease;
}

.social-icons a:hover{
    background:var(--secondary-color);
    transform:translateY(-5px);
}

/*=========================
 FOOTER BOTTOM
=========================*/
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
    text-align:center;
}

.footer-bottom p{
    color:#b9c2cf;
}

/*=========================
 RESPONSIVE
=========================*/
@media(max-width:1200px){

    .hero-content h1{
        font-size:58px;
    }

    .section-title{
        font-size:42px;
    }

    .program-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-slider{
        grid-template-columns:repeat(2,1fr);
    }
}

/*=========================
 HAMBURGER MENU
=========================*/
.hamburger{
    display:none;
    width:45px;
    height:45px;
    position:relative;
    cursor:pointer;
    z-index:1002;
}

/* Hamburger Lines */
.hamburger span{
    position:absolute;
    left:50%;
    width:30px;
    height:3px;
    background:#fff;
    border-radius:50px;
    transition:all .35s ease;
    transform:translateX(-50%);
}

/* Default 3 Lines */
.hamburger span:nth-child(1){
    top:12px;
}

.hamburger span:nth-child(2){
    top:21px;
}

.hamburger span:nth-child(3){
    top:30px;
}

/*=========================
 ACTIVE HAMBURGER (X)
=========================*/
.hamburger.active span:nth-child(1){
    top:21px;
    transform:
        translateX(-50%)
        rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    top:21px;
    transform:
        translateX(-50%)
        rotate(-45deg);
}

/*=========================
 TABLET RESPONSIVE
=========================*/
@media(max-width:991px){

    /* Show Hamburger */
    .hamburger{
        display:block;
    }

    /* Mobile Menu */
    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:#082b49;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:35px;
        transition:all .45s ease;
        z-index:1000;

        box-shadow:
            -12px 0 40px
            rgba(0,0,0,.28);
    }

    /* Active Menu */
    .nav-links.active{
        right:-94px;
    }

    /* Nav Items */
    .nav-links li{
        list-style:none;
        margin-left: -83px;
    }

    .nav-links a{
        color:#fff;
        font-size:24px;
        font-weight:600;
        transition:.3s ease;
        position:relative;
    }

    /* Hover */
    .nav-links a:hover,
    .nav-links a.active{
        color:#f2a900;
    }

    /* Underline Hover */
    .nav-links a::after{
        content:'';
        position:absolute;
        left:50%;
        bottom:-6px;
        width:0;
        height:2px;
        background:#f2a900;
        transition:.3s ease;
        transform:translateX(-50%);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after{
        width:100%;
        margin-left: 31px;
    }

    /* Hide Desktop Button */
    .btn-nav{
        display:none;
    }

    /* Hero */
    .hero-content h1{
        font-size:52px;
    }

    /* Layout */
    .about-grid,
    .volunteer-grid{
        grid-template-columns:1fr;
    }

    .hero-info-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .about-image img,
    .volunteer-image img{
        min-height:auto;
    }

    .floating-card{
        left:20px;
    }
}

/*=========================
 MOBILE
=========================*/
@media(max-width:768px){

    .section-space{
        padding:80px 0;
    }

    .section-title{
        font-size:36px;
    }

    .hero-content{
        text-align:center;
        align-items:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:13px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .program-grid,
    .counter-grid,
    .testimonial-slider,
    .impact-grid{
        grid-template-columns:1fr;
    }

    .about-features,
    .volunteer-list{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .experience-box{
        right:20px;
        bottom:20px;
    }

    .donation-content h2{
        font-size:38px;
    }

    .section-heading{
        margin-bottom:45px;
    }

    /* Mobile Menu Width */
    .nav-links{
        width:280px;
    }

    .nav-links a{
        font-size:22px;
    }
}

/*=========================
 SMALL MOBILE
=========================*/
@media(max-width:576px){

    .hero-content h1{
        font-size:24px;
    }

    .section-title{
        font-size:30px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }

    .hero-buttons{
        width:100%;
    }

    .floating-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }

    .experience-box{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }

    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    /* Full Width Mobile Menu */
    .nav-links{
        width:100%;
    }

    .nav-links a{
        font-size:20px;
    }
}

/*=========================
 SMOOTH REVEAL ANIMATION
=========================*/
[data-aos]{
    transition-duration:1s !important;
}

/*=========================
 CUSTOM SCROLLBAR
=========================*/
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eef2f8;
}

::-webkit-scrollbar-thumb{
    background:var(--orange-gradient);
    border-radius:30px;
}




/*=========================
MODERN ABOUT SECTION
=========================*/
.about-modern{
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
    overflow:hidden;
}

.about-modern-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*=========================
LEFT IMAGES
=========================*/
.about-modern-image{
    position:relative;
    min-height:650px;
}

.image-box{
    overflow:hidden;
    border-radius:35px;
    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.large-img{
    width:80%;
    height:600px;
}

.small-img{
    position:absolute;
    width:300px;
    height:350px;
    right:0;
    bottom:20px;
    border:8px solid #fff;
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.image-box:hover img{
    transform:scale(1.08);
}

/*=========================
FLOATING CARD
=========================*/
.impact-card-about{
    position:absolute;
    left:40px;
    bottom:40px;
    background:
    rgba(255,255,255,.92);
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px 30px;
    border-radius:25px;
    animation:floatAbout 4s infinite ease;
}

.impact-card-about i{
    width:70px;
    height:70px;
    border-radius:22px;
    background:var(--orange-gradient);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.impact-card-about h3{
    font-size:34px;
    color:var(--primary-color);
}

.impact-card-about p{
    color:#667085;
}

@keyframes floatAbout{
    50%{
        transform:translateY(-10px);
    }
}

/*=========================
RIGHT CONTENT
=========================*/
.about-tag{
    display:inline-block;
    background:#eef4ff;
    color:var(--primary-color);
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.about-modern-content h2{
    font-size:45px;
    line-height:1.2;
    color:var(--primary-color);
    margin-bottom:20px;
    font-weight:800;
}

.about-modern-content p{
    color:#667085;
    line-height:2;
    font-size:17px;
    margin-bottom:35px;
}

/*=========================
FEATURES
=========================*/
.modern-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.modern-feature-card{
    background:#fff;
    border-radius:24px;
    padding:22px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    box-shadow:
    0 12px 35px rgba(0,0,0,.06);
    transition:.4s ease;
}

.modern-feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:65px;
    height:65px;
    border-radius:20px;
    background:
    rgba(255,145,77,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-icon i{
    color:var(--secondary-color);
    font-size:28px;
}

.modern-feature-card h4{
    color:var(--primary-color);
    margin-bottom:6px;
}

.modern-feature-card span{
    color:#667085;
    font-size:14px;
    line-height:1.7;
}

.about-btns{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.about-btn{
    color:var(--primary-color);
    border:2px solid #e4eaf3;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:991px){

    .about-modern-grid{
        grid-template-columns:1fr;
    }

    .about-modern-content h2{
        font-size:42px;
    }

    .large-img{
        width:100%;
    }

    .small-img{
        width:260px;
        height:300px;
    }
}

@media(max-width:768px){

    .about-modern-image{
        min-height:auto;
    }

    .small-img{
        position:relative;
        width:100%;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .modern-features{
        grid-template-columns:1fr;
    }

    .about-modern-content h2{
        font-size:34px;
    }

    .about-btns{
        flex-direction:column;
    }

    .impact-card-about{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:20px;
    }
}


/*=========================
PREMIUM ABOUT
=========================*/
.about-premium{
    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f9ff 100%);
    position:relative;
    overflow:hidden;
}

.about-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.about-heading span{
    display:inline-block;
    color:var(--secondary-color);
    font-weight:600;
    margin-bottom:15px;
}

.about-heading h2{
    font-size:45px;
    color:var(--primary-color);
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.about-heading p{
    color:#667085;
    line-height:2;
}

/*=========================
LAYOUT
=========================*/
.about-premium-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr 1fr;
    gap:40px;
    align-items:center;
}

.about-box{
    background:#fff;
    border-radius:35px;
    padding:50px 35px;
    text-align:center;
    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.about-box:hover{
    transform:translateY(-12px);
}

.about-icon{
    width:90px;
    height:90px;
    border-radius:28px;
    background:
    rgba(255,145,77,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
}

.about-icon i{
    font-size:40px;
    color:var(--secondary-color);
}

.about-box h3{
    color:var(--primary-color);
    margin-bottom:15px;
    font-size:28px;
}

.about-box p{
    color:#667085;
    line-height:1.9;
    margin-bottom:20px;
}

.about-box a{
    color:var(--secondary-color);
    font-weight:600;
}

/*=========================
CENTER IMAGE
=========================*/
.about-center-image{
    position:relative;
}

.about-center-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:40px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
    height: 489px;
}

.center-badge{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    background:
    rgba(255,255,255,.95);
    padding:25px 40px;
    border-radius:25px;
    text-align:center;
    box-shadow:
    0 15px 40px rgba(0,0,0,.1);
}

.center-badge h4{
    font-size:42px;
    color:var(--secondary-color);
}

.center-badge span{
    color:var(--primary-color);
    font-weight:600;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:991px){

    .about-premium-wrapper{
        grid-template-columns:1fr;
    }

    .about-heading h2{
        font-size:42px;
    }

    .about-center-image img{
        height:500px;
    }
}

@media(max-width:768px){

    .about-heading h2{
        font-size:34px;
    }

    .about-box{
        padding:35px 25px;
    }
}

/*=========================
PREMIUM IMPACT
=========================*/
.impact-premium{
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
}

.impact-premium-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:30px;
}

/*=========================
CARD
=========================*/
.premium-impact-card{
    position:relative;
    height:550px;
    border-radius:35px;
    overflow:hidden;
    cursor:pointer;
    transition:.5s ease;
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.premium-impact-card:hover{
    transform:
    translateY(-12px)
    scale(1.02);
}

.premium-impact-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s ease;
}

.premium-impact-card:hover img{
    transform:scale(1.15);
}

/* Overlay */
.impact-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    transparent 20%,
    rgba(8,20,32,.9));
}

/*=========================
GLASS CONTENT
=========================*/
.impact-glass{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    background:
    rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    border:
    1px solid rgba(255,255,255,.15);
    border-radius:28px;
    padding:30px;
    transition:.5s;
}

.premium-impact-card:hover .impact-glass{
    transform:translateY(-10px);
}

.impact-glass span{
    display:inline-block;
    background:
    rgba(255,145,77,.2);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:18px;
    font-size:14px;
}

.impact-glass h3{
    color:#fff;
    font-size:30px;
    line-height:1.4;
    margin-bottom:18px;
}

.impact-glass a{
    color:#f2a900;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

/*=========================
HOVER GLOW
=========================*/
.premium-impact-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    135deg,
    rgba(255,145,77,.15),
    transparent);
    opacity:0;
    transition:.5s;
}

.premium-impact-card:hover::after{
    opacity:1;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:991px){

    .impact-premium-grid{
        grid-template-columns:1fr;
    }

    .premium-impact-card{
        height:450px;
    }
}

@media(max-width:768px){

    .impact-glass h3{
        font-size:24px;
    }
}

/*=========================
PROGRAM EXACT SECTION
=========================*/
.program-exact{
    position:relative;
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
    overflow:hidden;
}

/*=========================
WRAPPER
=========================*/
.program-exact-wrapper{
    display:flex;
    height:520px;
    overflow:hidden;
    border-radius:18px;

    border:
    1px solid #e6edf5;

    background:#fff;

    box-shadow:
    0 20px 50px
    rgba(12,45,87,.06);
}

/*=========================
CARD
=========================*/
.program-item{
    position:relative;
    flex:1;
    min-width:170px;

    overflow:hidden;
    background:#fff;
    cursor:pointer;

    transition:
    flex .65s cubic-bezier(.4,0,.2,1);

    border-right:
    1px dashed #dce5ef;
}

.program-item:last-child{
    border-right:none;
}

/* Hover expand */
.program-item:hover{
    flex:1.8;
}

/*=========================
IMAGE
=========================*/
.program-item img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transform:scale(1.08);

    transition:
    transform .7s ease,
    opacity .55s ease;
}

.program-item:hover img{
    opacity:1;
    transform:scale(1);
}

/*=========================
OVERLAY
=========================*/
.program-dark{
    position:absolute;
    inset:0;

   background:
linear-gradient(
180deg,
rgba(0,75,135,.10) 0%,
rgba(0,33,71,.65) 100%);

    opacity:0;

    transition:
    opacity .5s ease;
}

.program-item:hover
.program-dark{
    opacity:1;
}

/*=========================
CONTENT
=========================*/
.program-box{
    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;

    padding:38px 24px;
}

/*=========================
NUMBER
=========================*/
.program-no{
    font-size:58px;
    line-height:1;
    font-weight:800;

    color:#f2a900;

    margin-bottom:26px;

    transition:.4s ease;
}

/*=========================
TITLE
=========================*/
.program-box h3{
    font-size:28px;
    line-height:1.3;
    font-weight:700;

    color:#004b87;

    margin-bottom:18px;

    transition:.4s ease;
}

/*=========================
DESCRIPTION
=========================*/
.program-box p{
    color:#667085;
    font-size:14px;
    line-height:1.75;

    margin-bottom:22px;

    transition:.4s ease;
}

/*=========================
BUTTON
=========================*/
.program-box a{
    width:max-content;

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 22px;

    border:
    1px solid #004b87;

    /*border-radius:50px;*/

    color:#004b87;
    text-decoration:none;

    font-size:14px;
    font-weight:600;

    transition:.35s ease;
}

.program-box a:hover{
    background:#f2a900;
    border-color:#f2a900;
    color:#fff;

    transform:
    translateY(-2px);
}

.program-box a i{
    transition:.3s ease;
}

.program-box a:hover i{
    transform:
    translateX(5px);
}

/*=========================
HOVER MODE
=========================*/
.program-item:hover
.program-no,

.program-item:hover
.program-box h3,

.program-item:hover
.program-box p{
    color:#fff;
}

.program-item:hover
.program-box a{
    border-color:
    rgba(255,255,255,.25);

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(10px);

    color:#fff;
}

/*=========================
PREMIUM ORANGE LINE
=========================*/
.program-item::before{
    /*content:'';*/
    position:absolute;

    top:0;
    left:0;

    width:4px;
    height:0;

    background:
    linear-gradient(
    180deg,
    #f2a900,
    #ffd24d);

    transition:.5s ease;

    z-index:3;
}

.program-item:hover::before{
    height:100%;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:991px){

    .program-exact-wrapper{
        flex-direction:column;
        height:auto;
        border:none;
        box-shadow:none;
    }

    .program-item{
        height:320px;
        min-width:100%;

        border-right:none;

        border-bottom:
        1px dashed #dce5ef;
    }

    .program-item img{
        opacity:1;
    }

    .program-dark{
        opacity:1;
    }

    .program-item:hover{
        flex:unset;
    }

    .program-no,
    .program-box h3,
    .program-box p{
        color:#fff;
    }

    .program-box a{
        color:#fff;
        border-color:
        rgba(255,255,255,.3);
    }
}

@media(max-width:768px){

    .program-item{
        height:280px;
    }

    .program-box{
        padding:28px 20px;
    }

    .program-no{
        font-size:46px;
        margin-bottom:16px;
    }

    .program-box h3{
        font-size:24px;
    }

    .program-box p{
        font-size:13px;
        margin-bottom:18px;
    }

    .program-box a{
        width:100%;
        justify-content:center;
    }
}


/*=========================
VOLUNTEER SLIDER SECTION
=========================*/
.volunteer-slider-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient( 180deg, #f9fcff 0%, #f9fcff 100%);
    margin-bottom: -102px;

    /*padding:100px 0*/;
}

/*=========================
SLIDER WRAPPER
=========================*/
.volunteer-slider{
    position:relative;
    min-height:720px;
    overflow:hidden;
}

/*=========================
SLIDES
=========================*/
.volunteer-slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transform:
    translateX(80px);

    transition:
    opacity .9s ease,
    transform .9s ease,
    visibility .9s ease;
}

/* Active slide */
.volunteer-slide.active{
    position:relative;

    opacity:1;
    visibility:visible;

    transform:
    translateX(0);
}

/*=========================
GRID
=========================*/
.volunteer-slide-grid{
    display:grid;
    grid-template-columns:
    1fr 420px 260px;

    align-items:center;
    gap:60px;

    min-height:620px;
}

/*=========================
LEFT CONTENT
=========================*/
.volunteer-slide-content{
    max-width:560px;
}

.volunteer-mini-title{
    display:inline-flex;
    align-items:center;
    gap:12px;

    color:#f2a900;

    font-size:15px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:22px;
}

.volunteer-mini-title i{
    font-size:18px;
}

.volunteer-slide-title{
    font-size:45px;
    line-height:1.08;
    font-weight:800;

    color:#004b87;

    margin-bottom:24px;
}

.volunteer-slide-title span{
    color:#f2a900;
}

.volunteer-slide-content p{
    font-size:18px;
    line-height:1.9;

    color:#667085;

    margin-bottom:38px;
}

/*=========================
BUTTON
=========================*/
.volunteer-btn-group{
    display:flex;
    align-items:center;
    gap:18px;
}

/*=========================
VOLUNTEER BUTTON
=========================*/
.volunteer-slide-content .hero-btn{

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

    padding:14px 14px;

    background:linear-gradient(
    135deg,
    #004b87,
    #0066b3);

    color:#fff;
    font-size:16px;
    font-weight:600;
    letter-spacing:.5px;

    border:none;
    /*border-radius:60px;*/

    box-shadow:
    0 10px 25px rgba(0,75,135,.25);

    transition:all .35s ease;

    text-decoration:none;
}

/* Hover */
.volunteer-slide-content .hero-btn:hover{

    background:linear-gradient(
    135deg,
    #ff8b41,
    #f2a900);

    color:#fff;

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 35px rgba(242,169,0,.35);
}

/* Click */
.volunteer-slide-content .hero-btn:active{

    transform:translateY(-1px);
}

/*=========================
CENTER IMAGE
=========================*/
.volunteer-slide-image{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* animated ring */
.circle-border{
    position:absolute;

    width:440px;
    height:440px;

    border:
    2px solid
    rgba(232,127,10,.18);

    border-radius:50%;

    animation:
    pulseVolunteer 5s
    linear infinite;
}

@keyframes pulseVolunteer{

    0%{
        transform:scale(1);
        opacity:.5;
    }

    50%{
        transform:scale(1.06);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:.5;
    }
}

.volunteer-slide-image img{
    width:390px;
    height:390px;

    object-fit:cover;

    border-radius:50%;

    border:
    10px solid #fff;

    box-shadow:
    0 30px 70px
    rgba(12,45,87,.15);

    transition:
    transform .7s ease;
}

.volunteer-slide-image:hover img{
    transform:scale(1.04);
}

/*=========================
RIGHT SIDE STATS
=========================*/
.volunteer-slide-stats{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.stat-box{
    position:relative;

    padding:28px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    #082b49,
    #004b87);

    color:#fff;

    overflow:hidden;

    box-shadow:
    0 20px 50px
    rgba(12,45,87,.15);

    transition:
    transform .4s ease;
}

.stat-box:hover{
    transform:
    translateY(-6px);
}

/* orange accent line */
.stat-box::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:5px;
    height:100%;

    background:
    linear-gradient(
    180deg,
    #f2a900,
    #ffd24d);
}

.stat-box h3{
    font-size:38px;
    font-weight:800;

    color:#fff;

    margin-bottom:8px;
}

.stat-box p{
    color:#dce4ef;
    line-height:1.6;
}

/*=========================
RESPONSIVE
=========================*/
@media(max-width:1200px){

    .volunteer-slide-grid{
        grid-template-columns:
        1fr;

        text-align:center;

        gap:45px;
    }

    .volunteer-slide-content{
        max-width:100%;
    }

    .volunteer-slide-image{
        order:2;
    }

    .volunteer-slide-stats{
        order:3;

        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap;
    }

    .stat-box{
        width:240px;
    }

    .volunteer-btn-group{
        justify-content:center;
    }
}

@media(max-width:991px){

    .volunteer-slider{
        min-height:auto;
    }

    .volunteer-slide-title{
        font-size:48px;
    }

    .circle-border{
        width:340px;
        height:340px;
    }

    .volunteer-slide-image img{
        width:300px;
        height:300px;
    }

    .volunteer-slide-content p{
        font-size:16px;
    }
}

@media(max-width:768px){

    .volunteer-slider-section{
        padding:80px 0;
    }

    .volunteer-slide-grid{
        min-height:auto;
    }

    .volunteer-slide-title{
        font-size:36px;
    }

    .circle-border{
        width:280px;
        height:280px;
    }

    .volunteer-slide-image img{
        width:240px;
        height:240px;
    }

    .volunteer-slide-stats{
        flex-direction:column;
    }

    .stat-box{
        width:100%;
        text-align:left;
    }

    .volunteer-slide-content
    .hero-btn{
        width:100%;
        justify-content:center;
    }
}

/*=========================
 DROPDOWN MENU
=========================*/
.nav-links li{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:110%;
    left:0;
    min-width:240px;
    background:#fff;
    /*border-radius:12px;*/
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    padding:10px 0;
    z-index:999;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:all .35s ease;
    margin-top: 26px;
}

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

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#333;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.dropdown-menu li a:hover{
    background:rgba(242,169,0,.12);
    color:var(--secondary-color);
    padding-left:28px;
}

/*=========================
 RESPONSIVE DROPDOWN
=========================*/
@media(max-width:991px){

    .dropdown-menu{
        position:static;
        min-width:100%;
        box-shadow:none;
        border-radius:0;
        padding-left:15px;

        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
    }

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

}