/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Image Gallary ***/

 .impact-gallery {
            background: #f5f9ff;
            padding: 4rem 2rem;
            text-align: center;
        }

        .impact-gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

         #who-we-are {
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        #who-we-are h2 {
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: #2c3e50;
        }

        #who-we-are p {
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }

        .video-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .video-wrapper {
            flex: 1 1 480px;
            max-width: 560px;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
        }

        .video-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
        }

        .video-grid.single-video {
            justify-content: center;
            margin-top: 2rem;
        }

        /*** New Section ***/
        .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
     .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    .section-title {
    font-size: clamp(2rem, 5vw, 2.8rem); 
    font-weight: var(--fw-bold); 
    text-align: center;
    margin-bottom: 3.5rem; 
    line-height: 1.2;
    color: var(--text); 
    position: relative;
    padding-bottom: 1rem; 
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

        .news-section {
            padding: 4rem 2rem;
            background: linear-gradient(to right, #e5ecf9, #f3f8ff);
            text-align: center;
        }

        .news-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .news-cards {
            max-width: 900px;
            margin: 2rem auto 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .news-card {
            background: white;
            border-left: 5px solid #3498db;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .news-card h3 {
            margin-top: 0;
            color: #2c3e50;
            font-size: 1.3rem;
        }

        .news-card p {
            color: #666;
            line-height: 1.6;
        }

        .news-card a {
            display: inline-block;
            margin-top: 0.5rem;
            color: #3498db;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .news-card a:hover {
            color: #2980b9;
        }

        .news-container {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
    }

    .news-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      text-decoration: none;
      color: inherit;
      display: block;
      transform: translateY(0);
    }

    .news-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .news-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .news-card:hover::before {
      opacity: 1;
    }
    

    .news-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

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

    .news-content {
      padding: 2rem;
      position: relative;
      z-index: 2;
    }

    .news-title {
      font-size: 1.4rem;
      margin: 0 0 0.8rem 0;
      color: #2c3e50;
      font-weight: 600;
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .news-card:hover .news-title {
      color: #3498db;
    }

    .news-meta {
      font-size: 0.9rem;
      color: #3498db;
      margin-bottom: 1rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .news-meta::before {
      
      font-size: 0.8rem;
    }

    .news-summary {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .news-card::after {
      content: 'Read More â†’';
      position: absolute;
      bottom: 1.5rem;
      right: 2rem;
      color: #3498db;
      font-weight: 600;
      font-size: 0.9rem;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .news-card:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
   
       
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 2rem;
        }

/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}



/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}
 .team-category {
        padding: 1.5rem var(--container-padding);
    }
    
.team-category {
    margin-bottom: 5rem; 
    padding: 3rem 2rem; 
    background: var(--background-alt); 
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow); 
    border: 1px solid var(--border-light); 
    
}
.join-team {
    text-align: center;
    padding: 5rem 2rem; 
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%); 
    color: white;
    border-radius: var(--radius-lg); 
    margin: 5rem auto; 
    max-width: calc(var(--max-width) - 4rem); 
    box-shadow: var(--shadow-lg);
}

.join-team h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    font-weight: var(--fw-bold); 
    margin-bottom: 1rem;
}

.join-team p {
    font-size: 1.1rem; 
    margin-bottom: 2.5rem; 
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-team .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.1rem;
    border-radius: var(--radius-lg);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1rem;
    border: 1px solid var(--primary); 
    cursor: pointer;
    line-height: 1.5;
    box-shadow: var(--shadow-sm);
    
    background: var(--primary); 
    color: white; 
}

.join-team .button:hover {
    background: var(--primary-dark); 
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px) scale(1.02); 
    box-shadow: var(--shadow);
}



/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/*** Button style ***/

.join-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem;
            justify-content: center;
            margin-top: 0.2rem;
        }

.join-buttons a {
        display: inline-block;
        padding: 0.60rem 0.5rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        min-width: 120px;
        text-align: center;
  }    
  
.join-button.team {
    background-color: #1D5D8C;
}

.join-button.partner {
    background-color: #2c81e2;
}


 /*** Partner Section ***/
        .partners-section, .contact-section {
            padding: 4rem 2rem;
            text-align: center;
        }

        .partners-section h2, .contact-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .partner-card {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 180px;
            width: 100%;
            box-sizing: border-box;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .partner-logo {
            max-height: 120px;
            object-fit: contain;
            width: 100%;
            border-radius: 8px;
        }

        .partner-card p {
            margin: 0;
            font-weight: 600;
            color: #2c3e50;
            text-align: center;
        }

        .contact-button.email {
            background-color: #4a6fa5;
        }

        .contact-button.instagram {
            background-color: #d17c8c;
        }

        .contact-button.youtube {
            background-color: #a94442;
        }


.contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .contact-buttons a {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            min-width: 120px;
            text-align: center;
        }

        .contact-button.linkedin {
            background-color: #507a93;
        }

        .contact-button.team {
            background-color: #6c8aad;
        }

        .contact-buttons a:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }


 /* Mobile Responsive Styles */
        @media (max-width: 768px) {
             .team-category {
        padding: 2rem 1.5rem; 
    }
    
            .hero {
                height: 80vh;
                min-height: 400px;
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .hero h2 {
                font-size: 1.1rem;
                margin-top: 0.5rem;
            }

            .impact-gallery, .news-section, .partners-section, .contact-section, #who-we-are {
                padding: 2rem 1rem;
            }

            .impact-gallery h2, .news-section h2, .partners-section h2, .contact-section h2, #who-we-are h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .gallery-grid img {
                height: 180px;
            }

            .news-cards {
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .news-card {
                padding: 1rem;
            }

            .news-card h3 {
                font-size: 1.1rem;
            }

            .partners-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .partner-card {
                height: 140px;
                padding: 1rem;
            }

            .partner-logo {
                max-height: 80px;
            }

            .partner-card p {
                font-size: 0.9rem;
            }

            .video-grid {
                flex-direction: column;
                gap: 1.5rem;
            }

            .video-wrapper {
                flex: none;
                max-width: 100%;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .contact-buttons a {
                width: 200px;
                padding: 0.8rem 1rem;
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }

            .hero h2 {
                font-size: 1rem;
            }

            .impact-gallery, .news-section, .partners-section, .contact-section, #who-we-are {
                padding: 1.5rem 0.8rem;
            }

            .impact-gallery h2, .news-section h2, .partners-section h2, .contact-section h2, #who-we-are h2 {
                font-size: 1.5rem;
            }

            .gallery-grid img {
                height: 150px;
            }

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

            .partner-card {
                height: 120px;
                padding: 0.8rem;
            }

            .partner-logo {
                max-height: 60px;
            }

            .partner-card p {
                font-size: 0.8rem;
            }

            .contact-buttons a {
                width: 180px;
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.3rem;
            }

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

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

            .video-wrapper {
                flex: 1 1 400px;
            }
        }

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Mission.Html ***/

    .current-initiatives, .mission-statement{
        padding: 2rem var(--container-padding);
    }

.mission-tagline {
    max-width: 800px;
    margin: 1rem auto 0; 
    color: rgba(255, 255, 255, 0.85); 
    font-size: clamp(1.1rem, 3vw, 1.3rem); 
    text-align: center;
    position: relative; 
    z-index: 2;
    line-height: 1.6;
}

.mission-statement {
    max-width: 800px;
    margin: 5rem auto; 
    text-align: center;
    padding: 0 1rem; 
}

.mission-statement h2 {
    
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: var(--fw-bold);
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1rem;
}
.mission-statement h2::after { 
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.mission-statement p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.current-initiatives {
    margin: 5rem 0; 
    padding: 4rem 2rem; 
    background-color: var(--background-alt); 
    border-radius: var(--radius-lg); 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03); 
}

.current-initiatives h2 {
    
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: var(--fw-bold);
    text-align: center;
    margin-bottom: 3.5rem;
    line-height: 1.2;
    color: var(--text);
    position: relative;
    padding-bottom: 1rem;
}
.current-initiatives h2::after { 
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0; 
    max-width: var(--max-width); 
    margin: 0 auto;
}

.initiative-card {
    background: var(--background); 
    padding: 2rem;
    border-radius: var(--radius); 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition-normal);
    border: 1px solid var(--border-light); 
    
    
    
}

.initiative-card:hover {
    transform: translateY(-6px); 
    box-shadow: var(--shadow-lg); 
    border-color: var(--border); 
}

.initiative-card h3 {
    color: var(--primary); 
    font-weight: var(--fw-semibold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.initiative-card ul {
    list-style-type: none; 
    padding-left: 0;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.initiative-card li {
    margin-bottom: 0.75rem; 
    position: relative;
    padding-left: 1.5rem; 
}

.initiative-card li::before { 
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--secondary); 
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

 .mission-hero h1 {
        font-size: 3.2rem;
    }

.mission-hero::before {
        opacity: 0 !important;
    }
.mission-hero {
        padding: 6rem 1rem 3rem;
    }
 .mission-hero h1 {
        font-size: 2.2rem;
    }
.mission-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%); 
    position: relative;
    overflow: hidden;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem; 
    text-align: center;
}

.mission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

.mission-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem); 
    font-weight: var(--fw-extrabold); 
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    margin-bottom: 1.5rem; 
    position: relative;
    z-index: 2;
    line-height: 1.1;
    letter-spacing: -0.02em;
}


.mission-statement-split {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #f8f9fb;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 2rem;
}

.mission-text {
  flex: 1 1 500px;
}

.mission-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.mission-image {
  flex: 1 1 400px;
  text-align: center;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


.advisory-board {
    text-align: center;
    margin: 4rem auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.advisory-board h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.advisory-board p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.advisors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.advisor-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    max-width: 300px;
    text-align: justify;
}

.advisor-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.advisor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advisor-card p {
    text-align: justify;
    font-size: 0.95rem;
    color: #555;
}

/* Prevent counter shaking during animation */
.stat-number {
    color: white;
    display: inline-block;
    min-width: 70px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
  gap: 20px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
}

.stat-box h2 {
  font-size: 36px;
  margin: 0 0 10px;
  font-weight: bold;
}

.stat-box p {
  font-size: 16px;
  margin: 0;
}
    
/* ✅ Mobile View */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    padding: 30px 10px;
  }

  .stat-box {
    width: 100%;
    max-width: 90%;
    padding: 25px 20px;
  }

  .stat-box h2 {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 14px;
  }
}

/*** Team.html ***/

.team-img {
        height: 300px;             /* Equal height for all images */
        width: 100%;               /* Full width */
        object-fit: cover;         /* Maintain aspect ratio and crop */
        border-radius: 8px;
        display: block;        /* Optional: rounded corners */
    }