 /* font family */
        body {
            font-family: 'Inter', sans-serif;
        }
        
        /*  CTA section */
        .wave-bg {
            background-color: #062242; 
            position: relative;
            overflow: hidden;
        }
        
        .wave-bg::before {
            content: '';
            position: absolute;
            bottom: 99%; 
            left: -5%;
            width: 110%;
            height: 100px; 
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230d9488' fill-opacity='1' d='M0,160L48,181.3C96,203,192,245,288,240C384,235,480,181,576,170.7C672,160,768,192,864,208C960,224,1056,224,1152,202.7C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: bottom;
            transform: scaleY(-1);
        }

        
         .footer-wave-bg {
            background-color: #ffffff; 
            position: relative;
            overflow: hidden;
         }
         
         .footer-wave-bg::before {
             content: '';
             position: absolute;
             bottom: 99%; 
             left: -5%;
             width: 110%;
             height: 100px; 
             background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300234B' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,186.7C672,192,768,160,864,138.7C960,117,1056,107,1152,117.3C1248,128,1344,160,1392,176L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
             background-repeat: no-repeat;
             background-size: 100% 100px;
             background-position: bottom;
             z-index: 10;
         }

        /* Custom Swiper Styles */
        .impact-carousel .swiper-pagination-bullet-active,
        .testimonial-carousel .swiper-pagination-bullet-active {
            background-color: #f89122; /* Teal-600 */
        }
        .impact-carousel .swiper-button-next,
        .impact-carousel .swiper-button-prev,
        .testimonial-carousel .swiper-button-next,
        .testimonial-carousel .swiper-button-prev {
            color: #f89122; /* Teal-600 */
        }
        /* Ensure slides are same height */
        .swiper-slide {
            height: auto;
            display: flex;
        }
        .swiper-slide > div {
            width: 100%;
        }

        /* Styles for the modal */
        .modal-overlay {
            transition: opacity 0.3s ease-in-out;
        }
        .modal-container {
            transition: transform 0.3s ease-in-out;
        }

        /* Simple spinner animation */
        .spinner {
            border-top-color: #f89122;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

    
    /* Logo Carousel Styles */
.logo-carousel-container {
    position: relative;
    overflow: hidden;
}

.logo-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.logo-img {
    max-width: 150px;
    max-height: 70px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-item {
        width: 50%;
    }
    
    .logo-img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 50%;
    }
    
    .logo-img {
        max-height: 40px;
    }
}