:root{
    --primary:#000000;
    --secondary:#121212;
    --white:#ffffff;
    --accent:#c0c0c0;
}

body{
    font-family:Arial,sans-serif;
}
#mobileMenu .donate-btn {
  display: none;
}
.main-header{
    background:#000;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,.1);
}
/* Top Bar */

.top-bar{
    background:#111;
    transition:.4s ease;
}

/* Header */

.main-header{
    position:relative;
    width:100%;
    z-index:999;
    transition:.4s ease;
}

/* Sticky Header */

.main-header.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#000;
    animation:slideDown .4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

/* Hide Topbar */

.top-bar.hide{
    margin-top:-50px;
}

/* Animation */

@keyframes slideDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}

.navbar{
    padding:5px 0;
}

.navbar-brand img{
    max-height:100px;
}
.nav-link{
    color:#fff;
    font-weight:500;
    margin:0 15px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#c0c0c0;
}

.nav-link::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:0;
    height:2px;
    background:#fff;
    transition:.3s;
}

.nav-link.active {
  color: #c0c0c0 !important;
}
.nav-link.active::after {
  color: #c0c0c0 !important;
}
.nav-link:hover::after{
    width:100%;
}

#mobileMenu .donate-btn{
    background:#fff;
    color:#000;
    padding:12px 30px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

#mobileMenu .donate-btn:hover{
    background:#d9d9d9;
    color:#000;
}
.dropdown-menu{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
}

.dropdown-item{
    color:#fff;
}

.dropdown-item:hover{
    background:#222;
    color:#fff;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
}

.menu-close{
    display:none;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#111;
    border-radius:12px;
    padding:10px 0;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
.dropdown-toggle::after{
    display:none !important;
}
.dropdown-toggle-custom{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-icon{
    font-size:12px;
    transition:.3s;
}
.dropdown:hover .dropdown-icon{
    transform:rotate(180deg);
}
.dropdown-icon.rotate{
    transform:rotate(180deg);
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#1d1d1d;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:20px;
        justify-content: center;
    width: 100%;
}

.topbar-left a{
    color:#d9d9d9;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.topbar-left a:hover{
    color:#fff;
}

.topbar-left i{
    margin-right:8px;
}

.topbar-right a{
    width:34px;
    height:34px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.topbar-right a:hover{
    background:#fff;
    color:#000;
    transform:translateY(-2px);
}

.hero-slider{
    position:relative;
}

.hero-slide{
    min-height:550px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-slide .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    width: 100%;
    text-align: center;
}

.hero-content span{
    display:inline-block;
    color:#d9d9d9;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    color:#d9d9d9;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:15px;
    justify-content: center;
}

.btn-light-custom{
    background:#fff;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
}
.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
    background:rgba(255,255,255,.15);
    border-radius:50%;
}

.carousel-control-prev{
    left:30px;
}

.carousel-control-next{
    right:30px;
}

.carousel-control-prev i,
.carousel-control-next i{
    color:#fff;
    font-size:18px;
}
.carousel-indicators{
    margin-bottom:40px;
}

.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    border-radius:50%;
}

.hero-slide{
    overflow:hidden;
}

.hero-slide::before{
    content:'';
    position:absolute;
    inset:0;
    background:inherit;
    background-size:cover;
    background-position:center;
    animation:zoomBg 8s linear infinite alternate;
}

@keyframes zoomBg{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}
.hero-slide{
    animation:zoomEffect 8s linear infinite;
}

@keyframes zoomEffect{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.08);
    }

}

/* services section css */
.services-section{
    background:#f8f8f8;
}

.section-heading{
    max-width:800px;
    margin:auto;
}

.section-subtitle{
    display:inline-block;
    font-size:14px;
    letter-spacing:3px;
    color:#666;
    margin-bottom:15px;
    font-weight:600;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.section-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-10px);
    background:#000;
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#f2f2f2;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:32px;
    color:#000;
}

.service-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    transition:.3s;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    transition:.3s;
}

.service-card a{
    text-decoration:none;
    color:#000;
    font-weight:700;
    transition:.3s;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a{
    color:#fff;
}

.service-card:hover .service-icon{
    background:#fff;
}

/* about css */
.about-section{
    background:#fff;
    overflow:hidden;
}

/* Images */

.about-images{
    position:relative;
    min-height:650px;
}

.about-img-main{
    width:75%;
}

.about-img-main img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  height: 650px;
}

.about-img-small {
  width: 55%;
  position: absolute;
  right: 0;
  bottom: 40px;
  height: 350px;
}

.about-img-small img{
    height: 100%;
    width:100%;
    object-fit: cover;
    border-radius:25px;
    border:8px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Badge */

.experience-badge{
    position:absolute;
    left:40px;
    bottom:0;
    background:#000;
    color:#fff;
    padding:25px;
    border-radius:20px;
    max-width:220px;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.experience-badge h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.experience-badge span{
    font-size:14px;
    line-height:1.6;
}

/* Content */

.about-content{
    padding-left:30px;
}

.about-content h2 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #000;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

/* Features */

.about-features{
    display:grid;
    gap:15px;
    margin-bottom:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.feature-item i{
    width:35px;
    height:35px;
    background:#000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

/* Button */

.about-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:16px 36px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    background:#222;
    color:#fff;
}


/*==============================
MISSION VISION VALUES
===============================*/

.mission-vision-section{
    background:#111;
    padding:100px 0;
    overflow:hidden;
}

.section-title{
    max-width:800px;
    margin:auto;
}

.section-title span{
    color:#cfcfcf;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.mission-vision-section .section-title h2{
    color:#fff;
}
.section-title h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
}

.section-title p{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.8;
}

.foundation-card{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:45px 35px;
    height:100%;
    transition:.4s;
    position:relative;
}

.foundation-card:hover{
    transform:translateY(-10px);
    background:#000;
    border-color:rgba(255,255,255,.15);
}

.foundation-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.foundation-icon i{
    font-size:32px;
    color:#000;
}

.foundation-card h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}

.foundation-card p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:0;

}


/*=========================
IMPACT SECTION
=========================*/

.impact-section{
    padding:100px 0;
    background:#f8f8f8;
}

.impact-heading{
    max-width:750px;
    margin:auto;
}

.impact-heading span{
    display:block;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    color:#666;
    margin-bottom:15px;
}

.impact-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.impact-heading p{
    color:#666;
    line-height:1.8;
}

.impact-card{
    background:#fff;
    padding:45px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
}

.impact-card:hover{
    transform:translateY(-10px);
    background:#000;
}

.impact-card h3{
    display:inline-block;
    font-size:60px;
    font-weight:800;
    color:#111;
    margin-bottom:0;
    transition:.4s;
}

.impact-card span{
    font-size:40px;
    font-weight:700;
    color:#111;
    transition:.4s;
}

.impact-card h4{
    margin-top:15px;
    font-size:20px;
    font-weight:600;
    color:#555;
    transition:.4s;
}

.impact-card:hover h3,
.impact-card:hover span,
.impact-card:hover h4{
    color:#fff;
}


/*=========================
FEATURED PROGRAM
=========================*/

.featured-program{
    padding:100px 0;
    background:#fff;
}

.program-image{
    position:relative;
}

.program-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:30px;
}

.program-badge{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#000;
    color:#fff;
    padding:25px 30px;
    border-radius:20px;
}

.program-badge h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.program-badge p{
    margin:0;
    color:#ddd;
}

.program-content h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin:20px 0;
}

.program-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.program-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.program-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.program-item i{
    color:#000;
}

.program-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.program-btn:hover{
    background:#222;
    color:#fff;
}



/*=========================
GALLERY SECTION
=========================*/

.gallery-section{
    padding:100px 0;
    background:#f8f8f8;
}

.gallery-grid{
    margin-top:60px;

    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::before{
    content:'\f00e';
    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;
    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    width:70px;
    height:70px;

    background:rgba(0,0,0,.75);

    border-radius:50%;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    z-index:2;

    transition:.4s;
}

.gallery-item:hover::before{
    opacity:1;
}
.gallery-popup{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;
    align-items:center;
    justify-content:center;

    visibility:hidden;
    opacity:0;

    transition:.4s;

    z-index:99999;
}

.gallery-popup.show{
    visibility:visible;
    opacity:1;
}

.popup-img{
    width:80%;
    max-width:1100px;
    max-height:85vh;
    object-fit:contain;
}

.close-popup,
.gallery-prev,
.gallery-next{

    position:absolute;

    width:55px;
    height:55px;

    border-radius:50%;

    background:#fff;

    color:#000;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
}

.close-popup{
    top:30px;
    right:30px;
}

.gallery-prev{
    left:40px;
}

.gallery-next{
    right:40px;
}

.close-popup i,
.gallery-prev i,
.gallery-next i{
    font-size:20px;
}



/*====================
EVENTS SECTION
=====================*/

.events-section{
    padding:100px 0;
    background:#f8f8f8;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:60px;
}

.section-tag{
    display:block;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    color:#666;
    margin-bottom:15px;
}

.section-header h2{
    font-size:52px;
    font-weight:800;
    margin:0;
}

.view-all-btn{
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
}

.event-slider{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.event-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-12px);
}

.event-image{
    position:relative;
}

.event-image img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.event-date{
    position:absolute;
    top:20px;
    right:20px;

    width:75px;
    height:75px;

    background:#000;
    color:#fff;

    border-radius:20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.event-date span{
    font-size:28px;
    font-weight:800;
    line-height:1;
}

.event-content{
    padding:30px;
}

.event-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;

    font-size:14px;
    color:#666;

    margin-bottom:15px;
}

.event-content h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.event-content p{
    color:#666;
    line-height:1.8;
}

.event-footer{
    margin-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.event-link{
    color:#000;
    font-weight:700;
    text-decoration:none;
}

.event-register{
    background:#000;
    color:#fff;
    text-decoration:none;

    padding:10px 22px;
    border-radius:50px;
}



/*=========================
CTA SECTION
=========================*/

.cta-section{
    padding:60px 0;
    background:#fff;
}

.cta-box{
    background:#000;
    border-radius:30px;
    padding:50px 60px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    overflow:hidden;
    position:relative;
}

.cta-box::before{
    content:'';
    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,.04);

    border-radius:50%;

    top:-120px;
    right:-80px;
}

.cta-content{
    max-width:600px;
    position:relative;
    z-index:2;
}

.cta-content span{
    color:#bdbdbd;
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
}

.cta-content h2{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:12px 0;
    line-height:1.1;
}

.cta-content p{
    color:#d5d5d5;
    margin:0;
    font-size:16px;
}

.cta-action{
    position:relative;
    z-index:2;
}

.cta-btn{
    background:#fff;
    color:#000;
    text-decoration:none;

    padding:16px 32px;
    border-radius:60px;

    display:inline-flex;
    align-items:center;
    gap:10px;

    font-weight:700;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    color:#000;
}

.cta-btn i{
    transition:.3s;
}

.cta-btn:hover i{
    transform:translateX(5px);
}



/* =================================
TRUSTED CLIENTS
================================= */

.trusted-clients {

    padding: 100px 0;

    background: #fff;

    position: relative;

    overflow: hidden;

}

.section-heading {

    text-align: center;

    margin-bottom: 60px;

}

.section-heading span {

    color: #666;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

}

.section-heading h2 {

    font-size: 48px;

    font-weight: 800;

    margin-top: 15px;

    color: #1B2235;

}

/* Logo Slider */

.logo-slider {

    overflow: hidden;

    position: relative;

    width: 100%;

}

.logo-track {

    display: flex;

    align-items: center;

    width: calc(250px * 16);

    animation: scrollLogo 30s linear infinite;

}

.logo-track img {

    height: 70px;

    width: auto;

    margin: 0 50px;

    filter: grayscale(100%);

    opacity: .6;

    transition: .4s;

}

.logo-track img:hover {

    filter: none;

    opacity: 1;

    transform: scale(1.05);

}

@keyframes scrollLogo {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(calc(-250px * 8));

    }

}





/*=========================
FOOTER
=========================*/

.main-footer{
    background:#000;
    color:#fff;
    padding:90px 0 0;
}

.footer-logo{
    max-width:80px;
    margin-bottom:20px;
}

.footer-about p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{
    background:#fff;
    color:#000;
}

.main-footer h4{
    margin-bottom:25px;
    font-weight:700;
}

.main-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.main-footer ul li{
    margin-bottom:12px;
}

.main-footer ul li a{
    color:#bdbdbd;
    text-decoration:none;
}

.main-footer ul li a:hover{
    color:#fff;
}

.footer-form{
    display:flex;
    margin-top:20px;
}

.footer-form input{
    flex:1;
    border:none;
    padding:14px 20px;
    border-radius:50px 0 0 50px;
}

.footer-form button{
    border:none;
    background:#fff;
    color:#000;
    padding:0 25px;
    font-weight:700;
    border-radius:0 50px 50px 0;
}

.footer-bottom{
    margin-top:70px;
    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    margin:0;
    color:#999;
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    color:#999;
    text-decoration:none;
}


/* bredcrumb section css */
.page-banner{
    padding:140px 0 90px;
    background:#000;
    position:relative;
    overflow:hidden;
}

.page-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-250px;
    right:-150px;
}

.banner-content{
    text-align:center;
    position:relative;
    z-index:2;
}

.banner-content span{
    color:#cfcfcf;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.banner-content h1{
    color:#fff;
    font-size:70px;
    font-weight:800;
    margin:15px 0;
}

.breadcrumb-nav{
    display:flex;
    justify-content:center;
    gap:12px;
}

.breadcrumb-nav a,
.breadcrumb-nav span{
    color:#bdbdbd;
    text-decoration:none;
}




.donation-amounts button{
    height:60px;
    border:none;
    border-radius:15px;
    background:#fff;
    font-weight:700;
    transition:.3s;
}

.donation-amounts button:hover{
    background:#000;
    color:#fff;
}

.donation-box input{
    width:100%;
    height:60px;
    border:none;
    border-radius:15px;
    margin-bottom:15px;
    padding:0 20px;
}

.donate-btn{
    width:100%;
    height:60px;
    border:none;
    background:#000;
    color:#fff;
    border-radius:15px;
    font-weight:700;
}


.donate-info h2{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    margin:15px 0 25px;
}

.donate-info p{
    color:#666;
    line-height:1.8;
}

.donation-benefits{
    margin-top:40px;
}

.benefit-item{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.benefit-icon{
    min-width:60px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f4f4f4;

    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon i{
    font-size:22px;
    color:#000;
}

.benefit-item h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}





/*==================================
DONATION SECTION
==================================*/

.donate-form-section{
    padding:100px 0;
    background:#f7f7f7;
}

.donation-wrapper{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* LEFT SIDE */

.donate-tag{
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
    color:#666;
}

.donation-info h2{
    font-size:42px;
    font-weight:800;
    margin:15px 0 20px;
    line-height:1.2;
}

.donation-info p{
    color:#666;
    line-height:1.8;
}


/* FORM */

.donation-form input,
.donation-form select{
    width:100%;
    height:60px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:0 18px;
    outline:none;
}

.donation-form textarea{
    width:100%;
    height:180px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:20px;
    resize:none;
    outline:none;
}

.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus{
    border-color:#000;
}

.form-label{
    font-weight:700;
    margin-bottom:10px;
}

.donate-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.donate-btn:hover{
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .donation-wrapper{
        padding:30px;
    }

    .donation-info h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .donation-wrapper{
        padding:20px;
        border-radius:20px;
    }

    .impact-stats{
        grid-template-columns:1fr;
    }

    .donation-info h2{
        font-size:28px;
    }

    .donate-btn{
        width:100%;
    }

}


.contact-info-section{
    padding:80px 0 40px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.icon-box{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#000;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:24px;
}

.contact-section{
    padding:60px 0 60px;
}

.contact-wrapper{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 50px rgba(0,0,0,.06);
}

.contact-content h2{
    font-size:48px;
    font-weight:800;
    margin:15px 0 20px;
}

.contact-content p{
    color:#666;
    line-height:1.8;
}

.contact-list{
    list-style:none;
    padding:0;
    margin-top:30px;
}

.contact-list li{
    margin-bottom:15px;
    font-weight:600;
}

.contact-list i{
    margin-right:10px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:18px 20px;
    outline:none;
}

.contact-form textarea{
    height:180px;
    resize:none;
}

.contact-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:12px;
    font-weight:700;
}










.committee-section{
    padding:120px 0;
    background:#fff;
    position:relative;
}

.committee-heading{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.committee-heading span{
    display:inline-block;
    color:var(--accent);
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.committee-heading h2{
    font-size:58px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:20px;
    font-weight:700;
}

.committee-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.committee-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.member-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid #eee;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s ease;
}

.member-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.member-img{
    height:320px;
    overflow:hidden;
}

.member-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.member-card:hover img{
    transform:scale(1.08);
}

.member-content{
    padding:30px;
}

.member-role{
    display:inline-block;
    padding:8px 18px;
    background:#f5f5f5;
    border-radius:50px;
    color:#555;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
    font-weight:600;
}

.member-content h3{
    color:var(--primary);
    font-size:28px;
    margin-bottom:12px;
}

.member-content p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* Featured Card */

.featured{
    grid-column:span 2;
    display:flex;
    align-items:center;
    background:linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8);
}

.featured .member-img{
    width:45%;
    height:100%;
}

.featured .member-content{
    width:55%;
    padding:50px;
}

.featured .member-role{
    background:#000;
    color:#fff;
}

.featured h3{
    font-size:42px;
    margin-bottom:15px;
}

.featured p{
    font-size:16px;
}

/* Hover Border */

.member-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    border:2px solid transparent;
    transition:.4s;
    pointer-events:none;
}

.member-card{
    position:relative;
}

.member-card:hover::after{
    border-color:var(--accent);
}

/* Responsive */

@media(max-width:991px){

    .committee-grid{
        grid-template-columns:1fr;
    }

    .featured{
        display:block;
    }

    .featured .member-img,
    .featured .member-content{
        width:100%;
    }

    .committee-heading h2{
        font-size:42px;
    }

    .featured h3{
        font-size:32px;
    }

}

@media(max-width:576px){

    .committee-section{
        padding:80px 0;
    }

    .committee-heading h2{
        font-size:34px;
    }

    .member-img{
        height:260px;
    }

    .member-content{
        padding:25px;
    }

}


/* youth page css */


/* ===========================
   YOUTH HERO
=========================== */

.youth-hero{
    padding:120px 0;
    background:#fff;
}

.sub-title{
    display:inline-block;
    color:#666;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.youth-hero h2 {
  font-size: 44px;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.youth-hero p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-img{
    overflow:hidden;
    border-radius:30px;
}

.hero-img img {
  width: 100%;
  display: block;
  border-radius: 30px;
  height: 400px;
  object-fit: cover;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    background:var(--primary);
    color:var(--white);
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
}

.theme-btn:hover{
    background:var(--secondary);
    color:#fff;
}

/* ===========================
   PROGRAM HIGHLIGHTS
=========================== */

.program-highlights{
    padding:120px 0;
    background:#f8f8f8;
}

.section-title{
    margin-bottom:70px;
}

.section-title span{
    color:#666;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
}

.section-title h2{
    font-size:52px;
    color:var(--primary);
    margin-top:15px;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.highlight-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:25px;
    transition:.4s;
    border:1px solid #eee;
}

.highlight-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.highlight-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#000;
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
}

.highlight-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.highlight-card p{
    color:#666;
    line-height:1.8;
}

/* ===========================
   JOURNEY TIMELINE
=========================== */

.journey-section{
    padding:120px 0;
    background:#fff;
}

.journey-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.journey-box{
    background:#fff;
    border:1px solid #eee;
    padding:40px 30px;
    border-radius:25px;
    position:relative;
    transition:.4s;
}

.journey-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.journey-box span{
    font-size:70px;
    font-weight:700;
    color:#ececec;
    display:block;
    margin-bottom:15px;
}

.journey-box h3{
    color:#000;
    margin-bottom:15px;
}

.journey-box p{
    color:#666;
    line-height:1.8;
}

/* ===========================
   SKILLS SECTION
=========================== */

.skills-section{
    padding:120px 0;
    background:#f8f8f8;
}

.skills-section img{
    width:100%;
    border-radius:30px;
}

.skills-section h2 {
  font-size: 44px;
  margin: 20px 0 30px;
  color: #000;
  font-weight: 600;
}

.skills-section ul{
    padding:0;
    margin:0;
    list-style:none;
}

.skills-section ul li{
    margin-bottom:18px;
    font-size:18px;
    color:#444;
    position:relative;
    padding-left:35px;
}

.skills-section ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    line-height:24px;
    text-align:center;
    border-radius:50%;
    background:#000;
    color:#fff;
    font-size:12px;
}

/* ===========================
   IMPACT SECTION
=========================== */

.youth-impact{
    padding:120px 0;
    background:#000;
}

.impact-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:80px;
}

.impact-box{
    background:#121212;
    border-radius:25px;
    padding:40px;
    text-align:center;
}

.impact-box h3{
    color:#fff;
    font-size:50px;
    margin-bottom:10px;
}

.impact-box p{
    color:#c0c0c0;
}

.youth-cta{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.youth-cta h2{
    color:#fff;
    font-size:58px;
    margin-bottom:20px;
}

.youth-cta p{
    color:#c0c0c0;
    line-height:1.8;
    margin-bottom:35px;
}

.youth-cta .theme-btn{
    background:#fff;
    color:#000;
}

.youth-cta .theme-btn:hover{
    background:#c0c0c0;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

    .highlight-grid,
    .journey-grid,
    .impact-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .youth-hero h2,
    .skills-section h2,
    .section-title h2,
    .youth-cta h2{
        font-size:42px;
    }

    .hero-img{
        margin-top:40px;
    }
}

@media(max-width:767px){

    .highlight-grid,
    .journey-grid,
    .impact-wrapper{
        grid-template-columns:1fr;
    }

    .youth-hero,
    .program-highlights,
    .journey-section,
    .skills-section,
    .youth-impact{
        padding:80px 0;
    }

    .youth-hero h2,
    .skills-section h2,
    .section-title h2,
    .youth-cta h2{
        font-size:34px;
    }
}




.event-hero{
    height:85vh;
    position:relative;
    overflow:hidden;
}

.event-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.event-hero .event-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2));
}

.event-hero .event-content{
    position:absolute;
    bottom:80px;
    max-width:900px;
}

.event-hero .event-content span{
    color:var(--accent);
    letter-spacing:3px;
}

.event-hero .event-content h1{
    color:#fff;
    font-size:52px;
    line-height:1.05;
    margin-top:20px;
    
  font-weight: 600;
}


.event-meta.tow{
    margin-top:-60px;
    position:relative;
    z-index:5;
}

.meta-grid{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 20px 80px rgba(0,0,0,.08);

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.meta-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.meta-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}



.event-main-section{
    padding:100px 0;
    background:#fff;
}

.event-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:start;
}

/* LEFT CONTENT */

.event-content{
    background:#fff;
}

.content-tag{
    display:inline-block;
    padding:8px 18px;
    background:#f5f5f5;
    border-radius:50px;
    font-size:13px;
    margin-bottom:20px;
}

.event-content h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #000;
  margin-bottom: 25px;
  font-weight: 700;
}

.event-content h3{
    font-size:18px;
    margin:35px 0 20px;
}

.event-content p{
    color:#555;
    line-height:2;
    margin-bottom:25px;
}




.event-content img{
    width:100%;
    border-radius:25px;
    margin:40px 0;
}

.event-content blockquote{
    background:#121212;
    color:#fff;
    padding:40px;
    border-radius:25px;
    margin:40px 0;
    font-size:24px;
    line-height:1.7;
}

.event-content ul{
    padding-left:20px;
}

.event-content ul li{
    margin-bottom:15px;
    color:#555;
}

/* SIDEBAR */

.event-sidebar{
    position:sticky;
    top:120px;
}

.sidebar-widget{
    background:#fff;
    border:1px solid #eee;
    border-radius:25px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.sidebar-widget h4 {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}

.event-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:center;
}

.event-item img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:15px;
}

.event-item span{
    display:block;
    color:#999;
    font-size:13px;
    margin-bottom:6px;
}

.event-item h5 a {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #111;
  text-decoration: navajowhite;
  font-weight: 600;
}

/* COMMENT BOX */

.event-comment-box{
    margin-top:80px;
    background:#f8f8f8;
    padding:50px;
    border-radius:30px;
}

.event-comment-box h3 {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 600;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.event-comment-box input,
.event-comment-box textarea{
    width:100%;
    border:none;
    background:#fff;
    padding:18px 22px;
    border-radius:15px;
    margin-bottom:20px;
    outline:none;
}

.event-comment-box textarea{
    height:180px;
    resize:none;
}

.event-comment-box button{
    border:none;
    background:#000;
    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    cursor:pointer;
    transition:.4s;
}

.event-comment-box button:hover{
    background:#121212;
}
.event-hero .event-content {
  background: none;
}



.newsletter-section{
    padding:120px 0;
    background:#fff;
}

.newsletter-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.newsletter-card{
    transition:.4s;
}

.newsletter-cover{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.newsletter-cover img {
  width: 100%;
  display: block;
  transition: .6s;
  height: 275px;
  object-fit: cover;
}
.newsletter-card:hover img{
    transform:scale(1.08);
}

.newsletter-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.25)
    );

    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    opacity:0;
    visibility:hidden;
    transition:.4s;
}
.newsletter-cover{
    transform:perspective(1000px)
    rotateY(-8deg);

    transition:.5s;
}

.newsletter-card:hover .newsletter-cover{
    transform:perspective(1000px)
    rotateY(0deg)
    translateY(-10px);
}
.newsletter-card:hover .newsletter-overlay{
    opacity:1;
    visibility:visible;
}

.action-btn{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    text-decoration:none;

    background:#fff;
    color:#000;

    transition:.3s;
}

.action-btn:hover{
    background:#000;
    color:#fff;
}

.newsletter-content{
    padding-top:20px;
}

.newsletter-content span{
    color:#999;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.newsletter-content h3{
    font-size:22px;
    line-height:1.4;
    margin-top:10px;
    color:#000;
}
/*==============================
      new changes css
==============================*/



/*==============================
      ABOUT PAGE BANNER
==============================*/

.page-banner{

    position:relative;

    height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:url("../images/slider.webp") center center/cover no-repeat;

}

.banner-overlay
 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .58), rgba(0, 0, 0, .72));
}

.banner-content{

    position:relative;

    z-index:2;

    max-width:720px;

    text-align:center;

    margin:auto;

}

.banner-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.banner-content h1{

    color:var(--white);

    font-size:68px;

    font-weight:800;

    margin-bottom:20px;

    line-height:1.1;

}

.banner-content p{

    color:rgba(255,255,255,.88);

    font-size:20px;

    line-height:1.8;

    margin-bottom:30px;

}

.breadcrumb-list{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:0;

    margin:0;

    list-style:none;

}

.breadcrumb-list li{

    color:rgba(255,255,255,.85);

    font-size:15px;

}

.breadcrumb-list li a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.breadcrumb-list li a:hover{

    color:var(--accent);

}




.section-padding{
    padding:110px 0;
}

.about-images{
    position:relative;
    padding-right:80px;
}

.about-img-main img{
    width:100%;
    border-radius:30px;
    display:block;
}

.about-img-small{

    position:absolute;
    right:0;
    bottom:50px;

    width:55%;

    border-radius:25px;

    overflow:hidden;


    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.about-img-small img{
    width:100%;
    display:block;
}

.experience-box{

    position:absolute;

    left:-20px;

    bottom:25px;

    background:#000;

    color:#fff;

    padding:25px 30px;

    border-radius:22px;

    min-width:180px;

}

.experience-box h2{

    font-size:52px;

    margin-bottom:8px;

}

.experience-box span{

    line-height:1.7;

    font-size:15px;

}

.section-subtitle{

    display:inline-block;

    color:#777;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:58px;

    line-height:1.15;

    margin-bottom:30px;

    color:#000;

}

.about-content p{

    color:#666;

    line-height:2;

    margin-bottom:25px;

}



.about-list div{

    font-weight:600;
    margin-bottom: 20px;
}

.about-list i{

    color:#000;

    font-size:18px;

}



.founder-section{
    padding:110px 0;
    background:#f8f8f8;
}

.founder-left{
    position:sticky;
    top:120px;
}

.founder-img{
    overflow:hidden;
    border-radius:25px;
}

.founder-img img{
    width:100%;
    display:block;
}

.founder-card{
    background:#000;
    color:#fff;
    padding:30px;
    border-radius:20px;
    margin-top:25px;
}

.founder-card span{
    color:#c0c0c0;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.founder-card h3{
    margin:15px 0;
    font-size:32px;
    font-weight: 700;
}

.founder-card p{
    margin:0;
    line-height:1.8;
    color:#ddd;
}

.founder-right{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.section-heading{
    margin-bottom:35px;
}

.section-heading span{
    color:#888;
    letter-spacing:3px;
    font-size:13px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    line-height:1.9;
}

.accordion-item{
    border:none;
    border-radius:16px!important;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.accordion-button{
    padding:22px 25px;
    font-size:20px;
    font-weight:700;
    box-shadow:none!important;
}

.accordion-button:not(.collapsed){
    background:#000;
    color:#fff;
}

.accordion-body{
    max-height:450px;
    overflow:auto;
    padding:30px;
    line-height:1.9;
    color:#666;
}

.accordion-body h3,
.accordion-body h4{
    color:#000;
    margin-bottom:18px;
}

.accordion-body ul{
    padding-left:20px;
}

.accordion-body li{
    margin-bottom:12px;
}

.accordion-body blockquote{
    border-left:4px solid #000;
    padding-left:20px;
    font-style:italic;
    color:#222;
}

.accordion-body::-webkit-scrollbar{
    width:6px;
}

.accordion-body::-webkit-scrollbar-thumb{
    background:#000;
    border-radius:20px;
}

@media(max-width:991px){

    .founder-left{
        position:relative;
        top:auto;
        margin-bottom:40px;
    }

    .founder-right{
        padding:30px;
    }

    .section-heading h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .founder-section{
        padding:80px 0;
    }

    .founder-right{
        padding:20px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .accordion-button{
        font-size:17px;
        padding:18px;
    }

}

/*=============================
Organisation History
==============================*/

.history-section{
    background:var(--secondary);
    position:relative;
    overflow:hidden;
}

.history-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    top:-180px;
    right:-180px;
}

.history-year{
    color:#fff;
    position:sticky;
    top:120px;
}

.history-year span{
    display:block;
    letter-spacing:4px;
    color:#c0c0c0;
    font-size:14px;
    margin-bottom:10px;
}

.history-year h2{
    font-size:90px;
    font-weight:700;
    line-height:1;
    margin-bottom:25px;
}

.history-line{
    width:70px;
    height:4px;
    background:#fff;
    margin-bottom:30px;
}

.history-year ul{
    margin:0;
    padding:0;
    list-style:none;
}

.history-year ul li{

    color:#d7d7d7;
    margin-bottom:15px;
    padding-left:28px;
    position:relative;
    font-size:17px;

}

.history-year ul li::before{

    content:"";
    width:9px;
    height:9px;
    background:#fff;
    border-radius:50%;
    position:absolute;
    left:0;
    top:8px;

}

.history-card{

    background:#fff;
    padding:60px;
    border-radius:24px;
    box-shadow:0 30px 70px rgba(0,0,0,.25);

}

.history-tag{

    display:inline-block;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#666;
    font-size:13px;
    margin-bottom:15px;

}

.history-card h2{

    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;

}

.history-card p{

    color:#666;
    line-height:1.9;
    margin-bottom:22px;
    font-size:17px;

}

.history-card strong{

    color:#111;

}

/* Responsive */

@media(max-width:991px){

.history-year{

    position:relative;
    top:0;
    margin-bottom:40px;

}

.history-year h2{

    font-size:65px;

}

.history-card{

    padding:35px;

}

.history-card h2{

    font-size:36px;

}

}

@media(max-width:576px){

.history-card{
    padding:25px;
}

.history-card h2{
    font-size:30px;
}

.history-year h2{
    font-size:52px;
}

.history-card p{

    font-size:15px;

}

}




/*=========================
Milestone Timeline
=========================*/

.milestone-section{

    background:#f8f8f8;
    position:relative;

}

.timeline{

    position:relative;
    max-width:1100px;
    margin:auto;
    margin-top:70px;

}

.timeline::before{

    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:#e3e3e3;
    transform:translateX(-50%);

}

.timeline-item{

    width:50%;
    position:relative;
    margin-bottom:60px;

}

.timeline-item.left{

    padding-right:70px;

}

.timeline-item.right{

    margin-left:50%;
    padding-left:70px;

}

.timeline-year{

    width:80px;
    height:80px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    position:absolute;
    top:20px;
    z-index:5;
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.timeline-item.left .timeline-year{

    right:-40px;

}

.timeline-item.right .timeline-year{

    left:-40px;

}

.timeline-card{

    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #ececec;
    transition:.4s;

}

.timeline-card:hover{

    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.timeline-card h4{

    font-size:24px;
    margin-bottom:15px;
    color:#111;

}

.timeline-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

/* Mobile */

@media(max-width:991px){

.timeline::before{

left:25px;

}

.timeline-item{

width:100%;
padding-left:80px!important;
padding-right:0!important;
margin-left:0!important;

}

.timeline-year{

left:-15px!important;
right:auto!important;
width:55px;
height:55px;
font-size:14px;

}

.timeline-card{

padding:25px;

}

.timeline-card h4{

font-size:20px;

}

}



/*==========================
OBJECTIVE SECTION
===========================*/

.objective-section{

    background:#000;
    position:relative;
    overflow:hidden;

}
.objective-section .section-title h2{
    color: #fff;
}

.objective-section::before{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
   background: rgba(233, 227, 227, 0.09);
    top:-250px;
    right:-180px;

}

.objective-card{

    background:#fff;
    border-radius:22px;
    padding:45px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    height:100%;
    transition:.4s;
    border:1px solid #ececec;
    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.objective-card::after{

    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:#000;
    transform:scaleX(0);
    transition:.4s;

}

.objective-card:hover{

    transform:translateY(-10px);

}

.objective-card:hover::after{

    transform:scaleX(1);

}

.objective-number{

    position:absolute;
    right:25px;
    top:20px;
    font-size:52px;
    font-weight:700;
    color:#f2f2f2;

}

.objective-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:34px;
    margin-bottom:30px;
    transition:.4s;

}

.objective-card:hover .objective-icon{

    transform:rotateY(180deg);

}

.objective-card h4{
    font-weight: 700;
    font-size:28px;
    margin-bottom:18px;
    color:#111;

}

.objective-card p{

    color:#666;
    line-height:1.9;
    margin:0;

}

/* Responsive */

@media(max-width:991px){

.objective-card{

    padding:35px 25px;

}

.objective-icon{

    width:75px;
    height:75px;
    font-size:28px;

}

.objective-card h4{

    font-size:24px;

}

}




/*=====================================
TESTIMONIAL SECTION
=====================================*/

.testimonial-section{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(0,0,0,.03);
    border-radius:50%;
    left:-180px;
    top:-180px;
}

.testimonial-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(192,192,192,.12);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

.testimonial-slider{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    margin-top:70px;
    position:relative;

}

.testimonial-wrapper{

    width:100%;
    max-width:900px;
    position:relative;
    min-height:380px;

}

.testimonial-card{

    background:#fff;
    border-radius:25px;
    padding:45px;
    border:1px solid #ececec;

    box-shadow:
    0 12px 40px rgba(0,0,0,.08);

    transition:.5s;

    display:none;
text-align: center;
    animation:fadeUp .6s ease;

}

.testimonial-card.active{

    display:block;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 60px rgba(0,0,0,.12);

}


.quote {
  width: 75px;
  height: 75px;
  border-radius: 50%;

  background: #000;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  margin: 0 auto 25px;

}

.stars{

    color:#d4af37;
    letter-spacing:4px;
    font-size:20px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#555;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;

}

.client{

    display:flex;
    align-items:center;
    gap:18px;

    padding-top:25px;
justify-content: center;
    border-top:1px solid #eee;

}

.client-img{

    width:80px;
    height:80px;

    border-radius:50%;

    background:#000;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;

}
.client-img img {
  width: 80px;
  object-fit: cover;
  height: 80px;
  border-radius: 50%;
}

.client h5{

    margin-bottom:5px;
    font-size:22px;
    color:#000;

}

.client span{

    color:#777;
    font-size:15px;

}

/* Buttons */

.ts-btn{

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#000;

    border:1px solid #ddd;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.ts-btn:hover{

    background:#000;
    color:#fff;
    transform:scale(1.08);

}

/* Dots */

.testimonial-dots{

    margin-top:45px;

    display:flex;
    justify-content:center;
    gap:12px;

}

.dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#cfcfcf;

    transition:.35s;

    cursor:pointer;

}

.dot.active{

    width:40px;

    border-radius:50px;

    background:#000;

}

/* Animation */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translatex(60px);

    }

    to{

        opacity:1;
        transform:translatex(0);

    }

}

/*====================
Responsive
=====================*/

@media(max-width:991px){

    .testimonial-slider{

        gap:15px;

    }

    .testimonial-card{

        padding:35px;

    }

}

@media(max-width:767px){

    .testimonial-slider{

        flex-direction:column;

    }

    .ts-btn{

        width:50px;
        height:50px;

    }

    .testimonial-card{

        padding:30px 25px;

    }

    .client{

        flex-direction:column;
        align-items:flex-start;

    }

    .testimonial-card p{

        font-size:16px;

    }

}



.event-banner{
    background-image:url("../images/event1.jpg");
}

.event-banner{
    background-image:url("../images/g1.jpg");
}



.page-banner.contact-banner{
    background-image:url("../images/contact-us.jpg");
}



.page-banner.partner-banner{
    background-image:url("../images/event.jpg");
}

.page-banner.newsletter-banner{
    background-image:url("../images/youth.jpg");
}

/*==========================
Pagination
===========================*/

.pagination-section{

    padding:70px 0;
    display:flex;
    justify-content:center;

}

.custom-pagination{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin:0;
    padding:0;

    list-style:none;

}

.custom-pagination li a,
.custom-pagination li span{

    width:52px;
    height:52px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:#fff;

    border:1px solid #e7e7e7;

    color:#222;

    font-size:16px;
    font-weight:600;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.custom-pagination li a:hover{

    background:#000;
    color:#fff;

    transform:translateY(-4px);

}

.custom-pagination li a.active{

    background:#000;
    color:#fff;

    border-color:#000;

}

.page-arrow{

    font-size:18px;

}

/* Responsive */

@media(max-width:576px){

.custom-pagination{

    gap:8px;

}

.custom-pagination li a,
.custom-pagination li span{

    width:42px;
    height:42px;

    font-size:14px;

}

}


/*=============================
Community Engagement
=============================*/

.community-engagement{
    background:#fff;
}

.community-box{

    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:20px;
    padding:35px;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.community-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.box-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:#000;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.community-box h3{

    margin-bottom:25px;
    font-size:28px;

}

.community-box ul{

    margin:0;
    padding:0;
    list-style:none;

}

.community-box ul li{

    position:relative;

    padding-left:28px;
    margin-bottom:16px;

    color:#555;
    line-height:1.8;

}

.community-box ul li::before{

    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:#000;

    position:absolute;

    left:0;
    top:12px;

}

.community-box strong{

    color:#000;

}

.community-scroll{

    max-height:700px;

    overflow-y:auto;

    padding-right:10px;

}

/* Scrollbar */

.community-scroll::-webkit-scrollbar{

    width:8px;

}

.community-scroll::-webkit-scrollbar-thumb{

    background:#c0c0c0;
    border-radius:20px;

}

.community-scroll::-webkit-scrollbar-track{

    background:#f5f5f5;

}

@media(max-width:991px){

.community-box{

    padding:30px;

}

.community-scroll{

    max-height:500px;

}

}