/* Google Fonts: Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
* {
    font-family: 'Montserrat', sans-serif !important;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #49B7BA;
    border-radius: 4px;
}

/* Enhanced Scroll Animation Reveal Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Card Micro-interactions */
.interactive-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.interactive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -8px rgba(73, 183, 186, 0.2), 0 10px 18px -6px rgba(0, 0, 0, 0.04);
    border-color: rgba(73, 183, 186, 0.55);
}

/* Subtle Button Glow & Shimmer */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
    60deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
    transition: all 0.75s ease;
    opacity: 0;
}
.btn-glow:hover::after {
    left: 140%;
    opacity: 1;
}
.btn-glow:hover {
    transform: scale(1.02) translateY(-2px);
}
.btn-glow:active {
    transform: scale(0.99) translateY(0);
}

/* Classy Thinned Counter Number styling & hover shine */
.stat-number {
    font-weight: 200;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}
.stat-card:hover .stat-number {
    color: #49B7BA;
    text-shadow: 0 4px 16px rgba(73, 183, 186, 0.3);
}

/* Active Nav link indicator */
.nav-link.active-nav {
    color: #49B7BA !important;
    position: relative;
}
.nav-link.active-nav::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2.5px;
    background: #49B7BA;
    border-radius: 9999px;
    animation: navUnderline 0.3s ease forwards;
}

@keyframes navUnderline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Hero Atmospheric Light Shimmer & Ambient Orb */
.hero-glow-orb {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(73, 183, 186, 0.28) 0%, rgba(73, 183, 186, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: ambientPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes ambientPulse {
    0% {
    transform: scale(0.9) translate(-20px, -10px);
    opacity: 0.55;
    }
    50% {
    transform: scale(1.15) translate(20px, 15px);
    opacity: 0.85;
    }
    100% {
    transform: scale(0.95) translate(-10px, -5px);
    opacity: 0.6;
    }
}

/* Floating Pill Badges Subtle Bobbing */
@keyframes floatSlow1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}
@keyframes floatSlow2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-9px); }
}
@keyframes floatSlow3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}
.float-bob-1 { animation: floatSlow1 5.2s ease-in-out infinite; }
.float-bob-2 { animation: floatSlow2 5.8s ease-in-out infinite 0.6s; }
.float-bob-3 { animation: floatSlow3 6.4s ease-in-out infinite 1.2s; }

/* Floating WhatsApp Pulse Ring */
@keyframes pulseRing {
    0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.whatsapp-pulse-btn {
    animation: pulseRing 2.4s infinite;
}

/* Interactive Journey Process Connector line */
.journey-connector {
    background: linear-gradient(90deg, #49B7BA 0%, #359395 100%);
    background-size: 200% 100%;
    animation: shimmerLine 3s infinite linear;
}
@keyframes shimmerLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Form Card Subtle Glow Border on Focus */
.form-container:focus-within {
    box-shadow: 0 0 0 2px rgba(73, 183, 186, 0.4), 0 25px 50px -12px rgba(73, 183, 186, 0.18);
}

/* Image Sheen Overlay on Hover */
.image-sheen-container {
    position: relative;
    overflow: hidden;
}
.image-sheen-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
    135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 100%
    );
    transform: rotate(35deg);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.image-sheen-container:hover::after {
    transform: rotate(35deg) translate(80%, 80%);
}

@media (prefers-reduced-motion: reduce) {
    html {
    scroll-behavior: auto !important;
    }
    .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    }
    .interactive-card, .btn-glow, .hero-glow-orb, .float-bob-1, .float-bob-2, .float-bob-3, .whatsapp-pulse-btn {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    }
    .btn-glow::after, .image-sheen-container::after {
    display: none !important;
    }
}
