@layer components {
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

:root {
    --brand-deep: #203F9A;
    --brand-dark: #0654A7;
    --brand-medium: #0171BC;
    --brand-light: #0196DA;
    --brand-accent: #FF7C10;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(1, 150, 218, 0.2); }
    50% { box-shadow: 0 0 40px rgba(1, 150, 218, 0.5); }
}

.animate-pulse-glow {
    animation: pulse-glow 3s infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, #203F9A 0%, #0196DA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-brand {
    background: linear-gradient(135deg, #203F9A 0%, #0654A7 100%);
}

/* Card Hover Effects */
.hover-card-lift {
    transition: all 0.3s ease;
}

.hover-card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(32, 63, 154, 0.15);
}

/* Timeline Components */
.timeline-line {
    background-image: linear-gradient(to right, #ccc 50%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-color: transparent;
    height: 1px;
}

/* Background Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #0171BC;
    animation: float 10s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #203F9A;
    animation: float 12s infinite alternate-reverse;
}

h1{font-size: 3.5rem;}