/*primary color*/
.bg-cream {
    background-color: #daedf4;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #093929;
}
.text-yellow-500 {
    color: #7ed957;
}
.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #111827;
}
/* Subtle frosted-glass effect for fixed navbar */
.backdrop-soft {
    background-color: rgba(218, 237, 244, 0.65); /* matches bg-cream with transparency */
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    backdrop-filter: saturate(180%) blur(8px);
}
/* Limit hero image height so section doesn't expand excessively */
.hero-img {
    max-height: 520px;
    width: 100%;
    height: auto;
}
/* Partner logo grayscale with gentle hover reveal */
.logo-gray {
    filter: grayscale(90%);
    opacity: 0.85;
    transition: filter 200ms ease, opacity 200ms ease, transform 200ms ease;
}
.logo-gray:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-1px);
}

/* Testimonial carousel fade-in animation */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer styles */
.footer-section {
    position: relative;
    overflow: hidden;
}

.footer-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(47, 50, 125, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 50, 125, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 1;
}

.footer-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(47, 50, 125, 0.05) 100%);
    z-index: 2;
}