body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #22252A; /* Main brand body text (Charcoal) */
    background-color: #F8FAFC; /* Clean, light neutral background */
}

/* Section Title Accent */
.section-title {
    position: relative;
    display: inline-block;
    color: #0A2E52; /* Deep Navy heading */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    border-radius: 9999px;
    background: #00A8E8; /* Bright Cyan accent line (Replaced default blue) */
}

/* Glassmorphic Card Styling */
.card-glow {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(10, 46, 82, 0.08); /* Subtle Deep Navy border */
    box-shadow: 0 24px 60px rgba(10, 46, 82, 0.08); /* Navy-tinted soft shadow */
}

/* Primary & Accent Buttons / CTA Classes */
.btn-primary {
    background-color: #00A8E8; /* Cyan CTA */
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0A2E52; /* Hover to Deep Navy */
}

/* Slideshow */
.slideshow {
    position: relative; 
    height: 420px;
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(10, 46, 82, 0.1);
}

.slideshow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.slideshow img.fade-out {
    opacity: 0;
    transform: translateX(35px);
}

.slideshow img.prep-left {
    transition: none !important;
    opacity: 0;
    transform: translateX(-35px);
}

@media (max-width: 640px) {
    .slideshow {
        height: 250px !important; /* Adjust height here if you want it even sleeker on phone */
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s ease-out forwards;
}

.fade-up.delay-200 { animation-delay: 0.2s; }
.fade-up.delay-400 { animation-delay: 0.4s; }
.fade-up.delay-600 { animation-delay: 0.6s; }

.fade-scale {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    animation: fadeScale 0.9s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Background Gradient Overlay */
.hero-bg {
    background-image: 
        linear-gradient(to right, 
            rgba(248, 250, 252, 0.98) 0%, 
            rgba(248, 250, 252, 0.85) 45%, 
            rgba(248, 250, 252, 0.25) 100%), 
        url('/static/home-1.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}