/* Enhanced styling for the left side text */
.whoweare__text {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 0rem;
}

/* Add a decorative border on the left */
.whoweare__text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    border-radius: 2px;
}

/* Style the paragraphs */
.whoweare__text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    position: relative;
    padding-left: 1rem;
}

/* Add subtle animation to paragraphs */
.whoweare__text p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.whoweare__text p:nth-child(2) {
    animation-delay: 0.2s;
}

/* First paragraph gets a special highlight */
.whoweare__text p:first-child::first-letter {
    font-size: 3rem;
    font-weight: bold;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced button styling */
.whoweare__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    margin-left: 1rem;
}


.whoweare__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Add a subtle shine effect */
.whoweare__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whoweare__btn:hover::before {
    left: 100%;
}

/* Keyframe animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whoweare__text {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .whoweare__text p {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 0.5rem;
    }
    
    .whoweare__text p:first-child::first-letter {
        font-size: 2.5rem;
        margin-right: 0.3rem;
    }
    
    .whoweare__btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
}

/* Alternative Style Option 1: Card-like with shadow */
.whoweare__text.card-style {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Alternative Style Option 2: Minimal with accent */
.whoweare__text.minimal-style {
    background: transparent;
    border-left: 5px solid #ff6b35;
    padding-left: 2rem;
    box-shadow: none;
}

.whoweare__text.minimal-style::before {
    display: none;
}

/* Alternative Style Option 3: Geometric pattern background */
.whoweare__text.pattern-style {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
}


/*
==============================================================================
                       NEW Quick Links Section desk
==============================================================================
==============================================================================
*/

.flaticon-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}

.ql-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.ql-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.ql-title {
  text-align: center;
  font-size: 32px;
  color: #2c4f3a;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ql-subtitle {
  text-align: center;
  color: #373638;
  font-size: 16px;
  margin-bottom: 50px;
}

.ql-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.ql-divider-line {
  height: 1px;
  width: 100px;
  background-color: #ff9f3e;
  margin: 0 15px;
}

.ql-divider-icon {
  color: #ff9f3e;
  font-size: 1.5rem;
}

.ql-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.ql-card {
  background: #fffaf4;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #e8e1d3;
}

.ql-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ql-card h3 {
  color: #2c4f3a;
  margin: 20px 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.ql-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ql-icon {
  font-size: 2.5rem;
  color: #ff9f3e;
  margin-bottom: 10px;
}

.ql-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: repeating-linear-gradient(
    45deg,
    #ff9f3e,
    #ff9f3e 10px,
    #e8c785 10px,
    #e8c785 20px
  );
  z-index: -1;
  transition: height 0.3s ease;
}

.ql-card:hover .ql-pattern {
  height: 100%;
  opacity: 0.1;
}

.ql-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23d4a762" opacity="0.1" d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.ql-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23d4a762" opacity="0.1" cx="50" cy="50" r="50"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

/*
==============================================================================
                        ADVERTISEMENT BANNER - DESKTOP CSS
==============================================================================

This CSS file contains styles specifically for DESKTOP devices only.
Use this file for desktop/tablet layouts (768px and above).
==============================================================================
*/

/* Advertisement Section - Desktop Styles */
.advertisement {
    padding: 40px 150px 15px 150px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.advertisement__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.advertisement__banner {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advertisement__banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.advertisement__link {
    display: block;
    text-decoration: none;
    outline: none;
}

.advertisement__link:focus {
    outline: 3px solid #007bff;
    outline-offset: 3px;
}

.advertisement__image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.advertisement__image:hover {
    opacity: 0.95;
    transform: scale(1.02);
}

/* DESKTOP ADVERTISEMENT - VISIBLE ON DESKTOP */
.advertisement__link--desktop,
.advertisement__image--desktop {
    display: block;
}

/* MOBILE ADVERTISEMENT - HIDDEN ON DESKTOP */
.advertisement__link--mobile,
.advertisement__image--mobile {
    display: none;
}

/* Advertisement Label - Desktop */
.advertisement__label {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.advertisement__label span {
    padding: 6px 12px;
    background-color: #e9ecef;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
}

.advertisement__label span:hover {
    background-color: #dee2e6;
}

/* Loading State - Desktop */
.advertisement__image[src=""],
.advertisement__image[src="#"] {
    background: linear-gradient(90deg, #f0f0f0 25%, transparent 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 200px;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .advertisement__image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .advertisement__banner,
    .advertisement__image {
        transition: none;
    }
    
    .advertisement__banner:hover {
        transform: none;
    }
    
    .advertisement__image:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .advertisement {
        display: none;
    }
}

/* YouTube Gallery Styles - Mimics the existing gallery styles */
.youtube-gallery {
    padding: 5px 0px 30px 0px;
  
    background-color: #f9f9f9;
}

.youtube-gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.youtube-gallery__header {
    text-align: center;
    margin-bottom: 40px;
}

.youtube-gallery__subtitle {
    color: #666;
    font-size: 16px;
    display: none;
    margin-bottom: 10px;
}

.youtube-gallery__title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.youtube-gallery__title span {
    color: #e74c3c; /* Adjust to match your brand color */
}

.youtube-gallery__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.youtube-gallery__divider span {
    height: 1px;
    background-color: #ddd;
    width: 50px;
}

.youtube-gallery__divider i {
    margin: 0 15px;
    color: #e74c3c; /* Adjust to match your brand color */
}

.youtube-gallery__description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.youtube-gallery__carousel {
    position: relative;
    overflow: hidden;
}

.youtube-gallery__track {
    display: flex;
    transition: transform 0.5s ease;
}

.youtube-gallery__item {
    flex: 0 0 300px;
    margin: 0 10px;
}

.youtube-gallery__video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.youtube-gallery__thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.youtube-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-gallery__info {
    text-align: center;
    padding: 20px;
    color: #fff;
}

.youtube-gallery__item-title {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.youtube-gallery__item-desc {
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.youtube-gallery__play {
    display: inline-block;
    color: #fff;
    font-size: 36px;
    transition: transform 0.3s ease;
}

.youtube-gallery__play:hover {
    transform: scale(1.1);
    color: #e74c3c; /* Adjust to match your brand color */
}

.youtube-gallery__video-wrapper:hover .youtube-gallery__overlay {
    opacity: 1;
}

.youtube-gallery__video-wrapper:hover .youtube-gallery__thumbnail {
    transform: scale(1.05);
}

.youtube-gallery__empty {
    text-align: center;
    padding: 40px;
    background-color: #f1f1f1;
    border-radius: 6px;
}








.mobile-donors-section {
    display: none;
}

/* First Section ------------1---------------- Hero Slider Section - Desktop Styles-------------------1-------------------- */
/* Hero Slider Section - Desktop Styles */
.hero-slider {
  margin-top: 5px;
    position: relative;
    height: 650px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.hero-slider__container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-slider__slide {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: right 1.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
}

.hero-slider__slide--active {
    right: 0;
    visibility: visible;
    z-index: 1;
}

.hero-slider__slide--prev {
    right: 100%;
    visibility: visible;
    z-index: 0;
}

.hero-slider__content {
    width: 80%;
    padding: 0 10%;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-slider__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

/*
.hero-slider__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0f73c1;
    border-radius: 2px;
}
*/

.hero-slider__description {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 40px;
    font-weight: 400;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-slider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero-slider__slide--active .hero-slider__image {
    transform: scale(1);
}

.hero-slider__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-slider__btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(45deg, #ffbb33, #ff8800);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-slider__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero-slider__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 122, 0, 0.4);
}

.hero-slider__btn:hover::before {
    left: 100%;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider__arrow--prev {
    left: 30px;
}

.hero-slider__arrow--next {
    right: 30px;
}

.hero-slider__dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-slider__dot--active {
    background-color: #ff7a00;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes hero-slider-slide-in-bottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-slider__slide--active .hero-slider__content {
    animation: hero-slider-slide-in-bottom 1s ease-out both;
    animation-delay: 0.3s;
}

.hero-slider__slide--zoom-out .hero-slider__image {
    transform: scale(1.15);
}

.hero-slider {
  padding: 0px;
}

/*--------------------------------------------------- Who We Are Section (Desktop) --------------------------------------------------------------------------------------*/  
/* Who We Are Section - Desktop Styles */
.whoweare {
    position: relative;
    color: white;
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(to right, #11335c, #0e5dbb);
}

.whoweare::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/bc1.png') no-repeat center;
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.whoweare__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.whoweare__header {
    text-align: center;
    margin-bottom: 60px;
}

.whoweare__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.whoweare__subtitle::before,
.whoweare__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.whoweare__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.whoweare__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.whoweare__title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
    
}

.whoweare__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.whoweare__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.whoweare__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.whoweare__description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.whoweare__content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
}

.whoweare__text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.whoweare__text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.whoweare__btn {
    display: inline-block;
    padding: 14px 25px;
    background: linear-gradient(45deg, #ff9f3e, #ffbb33);
    color: #1e3c72;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    text-align: center;
    align-self: flex-start;
    width: 100%; /* Make button full width */
    max-width: 600px; /* Match max-width of text container */
}

.whoweare__btn:hover {
    background: linear-gradient(45deg, #ffbb33, #ff8800);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whoweare__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.whoweare__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.whoweare__card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

.whoweare__card i {
    font-size: 32px;
    color: #ff9f3e;
    margin-bottom: 10px;
}

.whoweare__card-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.whoweare__card p {
    font-size: 16px;
    line-height: 1.6;
}


/* =============================================================Recent Activities Section - Desktop Styles */
.activities {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.activities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/pattern-light.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.activities__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.activities__header {
    text-align: center;
    margin-bottom: 50px;
}

.activities__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.activities__subtitle::before,
.activities__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.activities__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.activities__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.activities__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
   text-decoration: none;
}

.activities__title span {
    color: #ff9f3e;
}

.activities__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.activities__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.activities__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.activities__description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.activities__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.activities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.activities__card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activities__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activities__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activities__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activities__card:hover .activities__image img {
    transform: scale(1.1);
}

.activities__date {
    position: absolute;
    top: 15px;
    right: 15px;
     background: linear-gradient(to right, #11335c, #0e5dbb);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
    z-index: 1;
}

.activities__date-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.activities__date-month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 3px;
}

.activities__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activities__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.activities__category, 
.activities__author {
    display: flex;
    align-items: center;
}

.activities__meta i {
    margin-right: 5px;
    color: #ff9f3e;
}

.activities__item-title {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.activities__link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.activities__link:hover {
    color: #f39c12;
}


.activities__empty {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    grid-column: span 3;
}

.activities__cta {
    text-align: center;
    margin-top: 30px;
}

.activities__btn {
    display: inline-flex;
    align-items: center;
     background: linear-gradient(to right, #11335c, #0e5dbb);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.activities__btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.activities__btn:hover {
    background: linear-gradient(to right, #11335c, #0e5dbb);
    transform: translateY(-5px);
    
}

.activities__btn:hover i {
    transform: translateX(5px);
}

/* ---------------------------------------------Gallery Section Styles ------------------------------------------*/

/* Gallery Section - Desktop Styles */
.gallery {
    padding: 20px 0;
    background-color: #f9fafb;
    position: relative;
}

.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/pattern-light.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.gallery__header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.gallery__subtitle::before,
.gallery__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.gallery__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.gallery__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.gallery__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
}

.gallery__title span {
    color: #ff9f3e;
    font-size: 32px;
    font-weight: 700;
    margin-right: 5px;
}

.gallery__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.gallery__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.gallery__description {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.gallery__carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.gallery__track {
    display: flex;
    width: fit-content;
    animation: galleryScroll 60s linear infinite;
}

.gallery__track:hover {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery__item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery__image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 159, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__info {
    transform: translateY(0);
}

.gallery__item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery__item-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery__zoom {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #ff9f3e;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery__zoom:hover {
    text-decoration: none;
    background-color: #ff9f3e;
    color: white;
}

.gallery__empty {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.gallery__btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.gallery__btn {
    display: inline-block;
    padding: 10px 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    border: none;
    background: transparent;
}

.gallery__btn::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -20px;
    width: calc(100% + 50px);
    height: calc(100% + 25px);
    background-image: url('https://www.raiseindiafoundation.org/assets/img/brush-btn-6.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.gallery__btn:hover {
    transform: translateY(-3px);
}

.gallery__btn span {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
}
/* -------------------------------------------------------------------------------------------------Impact Dashboard Section - Desktop Styles */
.impact {
    position: relative;
    padding: 70px 0;
    color: #fff;
    overflow: hidden;
}

.impact__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.2) saturate(0.7);
    z-index: -2;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(25, 50, 95, 0.85) 100%);
    z-index: -1;
}

.impact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.impact__header {
    text-align: center;
    margin-bottom: 60px;
}

.impact__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.impact__subtitle::before,
.impact__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.impact__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.impact__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.impact__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

.impact__title span {
    color: #fff;
}

.impact__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.impact__divider span {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #ff9f3e, #ffd700);
}

.impact__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.impact__description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.impact__counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -20px;
}

.impact__counter {
    flex: 0 0 calc(25% - 40px);
    margin: 0 20px 40px;
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.impact__counter::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.impact__counter:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.impact__counter:hover::before {
    transform: scaleX(1);
}

.impact__counter-icon {
    font-size: 46px;
    color: #ff9f3e;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.impact__counter-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.impact__counter-icon i {
    position: relative;
    z-index: 1;
}

.impact__counter-number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.impact__counter-title {
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    letter-spacing: 1px;
    margin-top: 5px;
}

@keyframes impact-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.impact__counter {
    animation: impact-fade-in-up 0.8s ease backwards;
}

.impact__counter:nth-child(1) {
    animation-delay: 0.1s;
}

.impact__counter:nth-child(2) {
    animation-delay: 0.3s;
}

.impact__counter:nth-child(3) {
    animation-delay: 0.5s;
}

.impact__counter:nth-child(4) {
    animation-delay: 0.7s;
}

.impact__counter:hover .impact__counter-icon {
    animation: impact-pulse 1.5s infinite;
}

@keyframes impact-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/* -----------------------------------------Team Section - The Faces Behind Our Mission Desktop CSS------------------------------------------------- */
/* Team Section Styles */
.team-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5f2 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/content/uploads/pattern.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.team-heading {
    text-align: center;
    margin-bottom: 60px;
}

.team-heading .subheading {
    font-size: 16px;
    font-weight: 500;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: none;
    margin-bottom: 10px;
}

.team-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.2;
}

.heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.heading-divider span {
    height: 2px;
    width: 40px;
    background-color: #ff9f3e;
}

.heading-divider i {
    color: #ff9f3e;
    font-size: 18px;
    margin: 0 15px;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.team-carousel {
    position: relative;
    overflow: hidden;
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.team-member {
    flex: 0 0 25%;
    padding: 15px;
    box-sizing: border-box;
}

.member-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.member-social {
    text-decoration: none;
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
     background: linear-gradient(to right, #e45e03, #ff9f3e);
    transition: bottom 0.3s ease;
}

.member-social a {
    text-decoration: none;}

.member-card:hover .member-social {
    bottom: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    color: #ff9f3e;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
}

.member-position {
    font-size: 15px;
    color: #11335c;
    font-weight: 500;
    margin: 0 0 15px;
}

.member-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.team-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.team-prev,
.team-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    color: #ff9f3e;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.team-prev {
    margin-left: -25px;
}

.team-next {
    margin-right: -25px;
}

.team-prev:hover,
.team-next:hover {
    background-color: #ff9f3e;
    color: white;
    transform: scale(1.1);
}

.team-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot.active {
    background-color: #ff9f3e;
    transform: scale(1.3);
}


.team-empty {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-empty p {
    font-size: 18px;
    color: #666;
}

/* Animation for entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-heading,
.team-member {
    animation: fadeInUp 0.8s ease forwards;
}

.team-heading {
    animation-delay: 0.2s;
}

.team-member:nth-child(1) {
    animation-delay: 0.4s;
}

.team-member:nth-child(2) {
    animation-delay: 0.6s;
}

.team-member:nth-child(3) {
    animation-delay: 0.8s;
}

.team-member:nth-child(4) {
    animation-delay: 1s;
}


/* -----------------------------------------Testimonials Section - Voices of Impact CSS (Simplified)------------------------------------------------- */
/* Testimonials Section - Desktop Styles */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(30, 60, 114, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(30, 60, 114, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    z-index: 0;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.testimonials__subtitle::before,
.testimonials__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.testimonials__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.testimonials__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.testimonials__title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
}

.testimonials__title span {
    color: #000;
}

.testimonials__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonials__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.testimonials__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.testimonials__description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.testimonials__wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 60px;
}

.testimonials__item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials__item--active {
    display: block;
    opacity: 1;
}

.testimonials__content {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonials__content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonials__quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.testimonials__text {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonials__item-divider {
    width: 50px;
    height: 3px;
    background-color: #ff9f3e;
    margin-bottom: 20px;
}

.testimonials__author {
    display: flex;
    align-items: center;
}

.testimonials__author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #1e3c72;
}

.testimonials__author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials__author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 5px;
}

.testimonials__author-info p {
    font-size: 14px;
    color: #666;
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__dot--active {
    background-color: #1e3c72;
    transform: scale(1.2);
}

@keyframes testimonials-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testimonials-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.testimonials__header,
.testimonials__item--active {
    animation: testimonials-fade-in 0.8s ease forwards;
}




/* =================================Quick Links Section Styles==================================== */
/* Quick Links Section - Desktop Styles */
.quicklinks {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.quicklinks__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.quicklinks__header {
    text-align: center;
    margin-bottom: 50px;
}

.quicklinks__subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.quicklinks__subtitle::before,
.quicklinks__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.quicklinks__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.quicklinks__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.quicklinks__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
}

.quicklinks__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quicklinks__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.quicklinks__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.quicklinks__description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.quicklinks__grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
}

.quicklinks__card {
    background: linear-gradient(135deg, #0D2F56, #112e51);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px 35px;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    max-height: 130px;
    min-width: 250px;
    text-decoration: none;
}

.quicklinks__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.quicklinks__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    animation: quicklinks-pulse-bg 3s infinite ease-in-out;
}

.quicklinks__icon i {
    font-size: 35px;
    color: #fff;
    animation: quicklinks-pulse-icon 3s infinite ease-in-out;
}

.quicklinks__content {
    flex-grow: 1;
}

.quicklinks__card-title {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    color: #fff;
    margin: 0;
}

@keyframes quicklinks-pulse-bg {
    0% {
        transform: scale(1);
        background-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        background-color: rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: scale(1);
        background-color: rgba(255, 255, 255, 0.2);
    }
}

@keyframes quicklinks-pulse-icon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* --------------------------------------------Our Causes Section Styles------------------------------------------------------------- */
/* Support Our Causes Section - Desktop Styles */
.causes {
    padding: 30px 0 0 0;
    background-color: #f8f9fa;
    position: relative;
}

.causes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/pattern-light.svg');
    background-size: 200px;
    opacity: 0.07;
    z-index: 0;
}

.causes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.causes__header {
    text-align: center;
    margin-bottom: 60px;
}

.causes__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.causes__subtitle::before,
.causes__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.causes__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.causes__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.causes__title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px;
    position: relative;
}

.causes__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.causes__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.causes__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.causes__description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.causes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.causes__item {
    transition: all 0.3s ease;
}

.causes__item:hover {
    transform: translateY(-10px);
}

.causes__inner {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.causes__item:hover .causes__inner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.causes__thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.causes__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.causes__item:hover .causes__thumb img {
    transform: scale(1.05);
}

.causes__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.causes__time {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.causes__time i {
    color: #ff9f3e;
}

.causes__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.causes__item-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.causes__item:hover .causes__item-title {
    color: #ff9f3e;
}

.causes__excerpt {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.causes__progress {
    margin-top: auto;
    margin-bottom: 25px;
}

.causes__progress-bar {
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.causes__progress-fill {
    height: 100%;
    background: linear-gradient(to right, #11335c, #0e5dbb);
    border-radius: 5px;
    position: relative;
    transition: width 1s ease-in-out;
}

.causes__progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0 5px 5px 0;
}

.causes__stats {
    display: flex;
    justify-content: space-between;
}

.causes__stats-item {
    text-align: center;
    flex: 1;
}

.causes__stats-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.causes__stats-item:nth-child(2) .causes__stats-value {
    color: #11335c;
}

.causes__stats-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.causes__footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 5px;
}

.causes__btn {
    width: 100%;
    text-align: center;
    display: block;
    background: linear-gradient(to right, #11335c, #0e5dbb);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
   
}

.causes__btn:hover {
    background-color: #ff9f3e;
    transform: translateY(-2px);
    
}

.causes__empty {
    text-align: center;
    padding: 50px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.causes__empty p {
    font-size: 18px;
    color: #6b7280;
}

@keyframes causes-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.causes__header,
.causes__item {
    animation: causes-fade-in-up 0.8s ease forwards;
}

.causes__header {
    animation-delay: 0.2s;
}

.causes__item:nth-child(1) {
    animation-delay: 0.4s;
}

.causes__item:nth-child(2) {
    animation-delay: 0.6s;
}

/* -----------------------------------------Latest Updates & Donors Section - Desktop CSS------------------------------------------------ */

/* Container Styles */
.updates-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px 0 0 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
    font-weight: 600;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff9f3e, #2980b9);
    margin: 15px auto 0;
}

/* Main Container for both feeds */
.updates-donors__container {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

/* ------ Updates Feed Styles ------ */
.updates-feed__wrapper {
    flex: 2;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.updates-feed__header {
     background: linear-gradient(to right, #11335c, #0e5dbb);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.updates-feed__title_content {
    color: #4e4a4a;
    font-size: 18px;
    font-weight: bold;
}

.updates-feed__options {
    display: flex;
    gap: 15px;
}

.updates-feed__option {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.updates-feed__option:hover {
    background: rgba(255, 255, 255, 0.3);
}

#updatesAutoScrollToggle {
    min-width: 110px;
    text-align: center;
}

#updatesAutoScrollToggle.active {
    background: rgba(255, 255, 255, 0.4);
}

/* Updates Feed Scroll Container */
.updates-feed__scroll-container {
    position: relative;
    height: 500px;
    overflow-y: auto;
    background-color: #f9f9f9;
    scrollbar-width: none;
    scrollbar-color: #ff9f3e #f0f0f0;
}

.updates-feed__scroll-content {
    width: 100%;
    padding: 15px;
}

.updates-feed__card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    border: 1px solid #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
}

.updates-feed__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.updates-feed__card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.updates-feed__avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e1e1e1;
    margin-right: 12px;
    overflow: hidden;
    border: 2px solid #ff9f3e;
}

.updates-feed__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.updates-feed__info {
    flex: 1;
}

.updates-feed__author {
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
    font-size: 16px;
}

.updates-feed__timestamp {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
}

.updates-feed__timestamp i {
    margin-right: 5px;
    font-size: 12px;
}

.updates-feed__content {
    margin-bottom: 15px;
}

.updates-feed__title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.updates-feed__text {
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.updates-feed__media {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.updates-feed__media img, 
.updates-feed__media video {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

.updates-feed__actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.updates-feed__action-button {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.updates-feed__action-button:hover {
    background-color: #f0f0f0;
}

.updates-feed__action-button i {
    margin-right: 8px;
    font-size: 16px;
}

.updates-feed__like-button:hover {
    color: #e74c3c;
}

.updates-feed__comment-button:hover {
    color: #ff9f3e;
}

.updates-feed__share-button:hover {
    color: #2ecc71;
}

/* Comment Section */
.updates-feed__comments {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.updates-feed__comment-form {
    display: flex;
    margin-bottom: 10px;
}

.updates-feed__comment-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
}

.updates-feed__comment-submit {
    background-color: #ff9f3e;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.updates-feed__comments-list {
    max-height: 200px;
    overflow-y: auto;
}

.updates-feed__comment-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.updates-feed__comment-author {
    font-weight: bold;
    color: #333;
}

/* ------ Donors Feed Styles ------ */
.donors-feed__wrapper {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.donors-feed__header {
     background: linear-gradient(to right, #11335c, #0e5dbb);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donors-feed__title {
    font-size: 18px;
    font-weight: bold;
}

.donors-feed__options {
    display: flex;
    gap: 15px;
}

.donors-feed__option {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.donors-feed__option:hover {
    background: rgba(255, 255, 255, 0.3);
}

#donorsAutoScrollToggle {
    min-width: 110px;
    text-align: center;
}

#donorsAutoScrollToggle.active {
    background: rgba(255, 255, 255, 0.4);
}

/* Donors Feed Scroll Container */
.donors-feed__scroll-container {
    position: relative;
    height: 500px;
    overflow-y: auto;
    background-color: #f9f9f9;
    scrollbar-width: none;
    scrollbar-color: #2ecc71 #f0f0f0;
}

.donors-feed__scroll-content {
    width: 100%;
    padding: 15px;
}

.donors-feed__card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    border: 1px solid #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
}

.donors-feed__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.donors-feed__donor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #f39c12;
    flex-shrink: 0;
}

.donors-feed__donor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donors-feed__donor-info {
    flex: 1;
}

.donors-feed__donor-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.donors-feed__donation-amount {
    font-size: 18px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 5px;
}

.donors-feed__donation-time {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.donors-feed__donor-message {
    font-size: 13px;
    color: #666;
    font-style: italic;
    line-height: 1.4;
    border-left: 3px solid #e1e1e1;
    padding-left: 10px;
    margin-top: 5px;
}

.updates-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.updates-section__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: #ff9f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.updates-section__subtitle::before,
.updates-section__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff9f3e;
}

.updates-section__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.updates-section__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.updates-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
}

.updates-section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.updates-section__divider span {
    height: 2px;
    width: 60px;
    background-color: #ff9f3e;
}

.updates-section__divider i {
    color: #ff9f3e;
    font-size: 24px;
    margin: 0 15px;
}

.updates-section__description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}
