  #custom-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
  }

  /* Slides */
  .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease;
  }                             
  .carousel-slide.active {
    opacity: 1;
    position: relative;
    z-index: 10;
  }

  /* Overlay */
  .carousel-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 5;
  }

  /* Content */
  .carousel-content {
    position: relative;
    z-index: 10;
    left: 70px;
    max-width: 600px;
    color: white;
    padding: 60px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .carousel-caption-small {
    font-weight: 700;
    color: #fcb700;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .carousel-caption-big {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .carousel-caption-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #f0f0f0;
  }

  /* Button */
  .carousel-btn {
    background-color: #fcb700;
    border: none;
    padding: 9px 30px;
    font-weight: 700;
    font-size: 14px;
    color: #222;
    cursor: pointer;
    border-radius: 4px;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 3px 7px rgba(252, 183, 0, 0.7);
    transition: background-color 0.3s ease;
  }
  .carousel-btn:hover {
    background-color: #e5ac00;
  }

  /* Navigation Arrows */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(252, 183, 0, 0.9);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
  }
  .carousel-arrow:hover {
    background: #e5ac00;
  }
  .arrow-left {
    left: 15px;
  }
  .arrow-right {
    right: 15px;
  }
  .carousel-arrow svg {
    fill: #222;
    width: 18px;
    height: 18px;
  }

  /* Dots */
  .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    background-color: #fcb700;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .carousel-dot.active {
    opacity: 1;
    box-shadow: 0 0 8px #fcb700;
  }

  /* Responsive */
  @media (max-width: 768px) {
    #custom-carousel {
      height: 400px;
    }
    .carousel-caption-big {
      font-size: 32px;
    }
    .carousel-content {
      padding: 40px 20px;
    }
  }
  @media (max-width: 480px) {
    #custom-carousel {
      height: 320px;
    }
    .carousel-caption-big {
      font-size: 24px;
    }
  }

  /* about section  */
  .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    gap: 20px; /* No space between items */
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.event-item {
    width: 370px;
    flex-shrink: 0;
    margin-right: 0;
    border-radius: 8px;
    overflow: hidden;
}

.event-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffc107;
    padding: 5px 10px;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
}

.event-content {
    padding: 15px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Optional: Pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}


.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / 22%);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text p {
    font-style: italic;
    font-size: 15px;
    color: #333;
    min-height: 100px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffc107;
}


.team-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-thumb {
    position: relative;
    overflow: hidden;
}

.team-thumb img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.team-thumb:hover img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 10px;
    left: 63%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-item:hover .team-social {
    opacity: 1;
}

.team-social li a {
    background: #00705d;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    color: #ffffff;
    transition: background 0.3s, color 0.3s;
    padding-top: 13px;
}

.team-social li a:hover {
    background: #ffffff;
    color: #00705d;
}


/* Basic Layout */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll-marquee 40s linear infinite;
    width: max-content;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Event Item Styling */
.event-item {
    flex: 0 0 auto;
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Event Image */
.event-thumb {
    position: relative;
    overflow: hidden;
}

.event-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-thumb:hover img {
    transform: scale(1.1);
}


/* Content Styling */
.event-content {
    padding: 15px;
}

.event-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: color 0.3s;
}


.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #777;
}



/* Responsive Fixes */
@media screen and (max-width: 768px) {
    .marquee-content {
        flex-wrap: nowrap;
        animation: scroll-marquee 60s linear infinite;
    }

    .event-item {
        width: 250px;
    }
}


.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}


.testimonial-card:hover .testimonial-img {
    transform: scale(1.05);
}

.blog-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-thumb {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.blog-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-thumb img {
    transform: scale(1.05);
}

.category {
   
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.blog-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-section {
    padding: 70px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.sub-heading.accent-color {
    color: #ffc105; /* warm yellow */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 17px;
    display: inline-block;
}

.section-heading h2.text-dark-teal {
    color: #0d715e; /* dark teal */
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.section-heading p.text-muted {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.impact-points-alt {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
}

.impact-points-alt li {
    font-size: 17px;
    color: #0d715e;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.impact-points-alt li i {
    color: #ffc105; /* yellow icons */
    font-size: 24px;
    margin-right: 18px;
    min-width: 32px;
    text-align: center;
}

.btn-yellow {
    background-color: #ffc105;
    color: #0d715e !important;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 193, 5, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: #e6ac00;
    box-shadow: 0 12px 28px rgba(230, 172, 0, 0.6);
    color: #0d715e !important;
    outline: none;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-wrap {
        flex-direction: column !important;
    }
    .about-img {
        margin-bottom: 35px;
    }
    .section-heading h2.text-dark-teal {
        font-size: 28px;
    }
    .impact-points-alt li {
        font-size: 15px;
    }
}


   .sponsor-item {
        padding: 15px;
        text-align: center;
        height: 100px !important;
    }

    .sponsor-item img {
        max-width: 100%;
        height: auto;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: grayscale(100%);
    }

    .sponsor-item img:hover {
        transform: scale(1.1);
        filter: grayscale(0%);
    }

    /* Custom arrows */
    .slick-prev, .slick-next {
        background-color: #0d715e !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        text-align: center !important;
        z-index: 1 !important;
        font-size: 20px !important;
    }

    .slick-prev:before{
      display: none !important;
    }
    .slick-next:before{
      display: none !important;
    }
    .slick-prev:hover, .slick-next:hover {
        background-color: #ffc105;
        color: #000;
    }

    .slick-prev {
        left: -50px;
    }

    .slick-next {
        right: -50px;
    }

    .donation-form-card {
  border: 1px solid #eee;
}

.btn-donate {
  background: #00705d;
  color: #fff;
  padding: 12px 35px;
  font-size: 18px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
}

.btn-donate:hover {
  background: #ffc105;
  color: #fcfcfc;
}

.support-box h5 {
  color: #2c3e50;
}

.support-box p {
  font-size: 15px;
  color: #555;
}

.sticky-header .primary-header {
    background-color: #fff;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.1);
}


@media (max-width: 991px) {
    #mobile-menu {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
    }


    .header-logo img {
    max-width: 100px;
}

}
/* Hide mobile menu by default on small screens */


/* Show mobile menu when active */
#mobile-menu.active {
    display: flex;
}


.testimonials-section {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h6 {
    font-weight: 600;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}
.testimonials-section {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.swiper-slide {
    height: auto;
}

.swiper {
    padding-bottom: 40px;
}

    .swiper-pagination.mt-3.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        display: none;
    }