@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Base spacing & Radius */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Animation Easings */
    --easing-framer: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s var(--easing-framer);
    --transition-medium: 0.4s var(--easing-standard);

    /* Light Theme Defaults */
    --bg-body: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #334155;
    /* Darker slate for better legibility */
    --border-subtle: #CBD5E1;
    --primary-blue: #2563EB;
    /* Solid professional blue */
    --accent-glow: rgba(59, 130, 246, 0.05);
}

.dark-theme {
    --bg-dark: #0A0F1E;
    --bg-body: #020617;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --primary-blue: #60A5FA;
    /* Brighter blue for better dark contrast */
    --primary-purple: #A78BFA;
    --accent-glow: rgba(96, 165, 250, 0.2);
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    /* Lighter slate for better dark legibility */
    --text-muted: #94A3B8;
    --border-subtle: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(96, 165, 250, 0.3);
    --gradient-hero: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
}

.dark-theme .page-header,
.dark-theme section.position-relative.d-flex.align-items-center.overflow-hidden {
    background-color: rgba(15, 23, 42, 0.75) !important;
}

.dark-theme .text-primary {
    color: #60A5FA !important;
    /* Brighter blue for dark backgrounds */
}

/* === Aesthetic Mesh Background === */
.mesh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.dark-theme .mesh-bg {
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

/* === Reference Project Animations === */
.dna-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: float-blob 14s ease-in-out infinite;
}

.floating-blob.b1 {
    width: 420px;
    height: 420px;
    background: #60a5fa;
    top: -120px;
    left: -100px;
}

.floating-blob.b2 {
    width: 360px;
    height: 360px;
    background: #93c5fd;
    bottom: -100px;
    right: -80px;
    animation-delay: 4s;
}

.floating-blob.b3 {
    width: 240px;
    height: 240px;
    background: #bfdbfe;
    top: 40%;
    right: 20%;
    animation-delay: 7s;
}

@keyframes float-blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.08);
    }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--primary-blue) 1.2px, transparent 1.2px),
        linear-gradient(90deg, var(--primary-blue) 1.2px, transparent 1.2px);
    background-size: 40px 40px;
    opacity: 0.25;
    /* Standardized opacity for Home page */
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Enhanced Blue Grid for Inner Pages (Light Mode) */
.page-header .hero-grid-bg {
    opacity: 0.35;
    /* Softened blue presence */
}

.dark-theme .hero-grid-bg {
    opacity: 0.15;
    /* Subtle blue grid for dark mode */
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.6;
    animation: rise linear infinite;
    pointer-events: none;
}

@keyframes rise {
    0% {
        transform: translateY(100vh) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

/* === Background Bubbles === */
.bubble-container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(59, 130, 246, 0.4);
    /* Increased opacity for better visibility */
    border-radius: 50%;
    animation: bubble-float 15s infinite ease-in;
    filter: blur(1px);
    /* Sharper bubbles */
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.bubble:nth-child(2n) {
    background: rgba(139, 92, 246, 0.3);
    /* Subtle purple tint */
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120vh) scale(1.2);
        opacity: 0;
    }
}

.text-gradient {
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.tilt {
    transition: transform 0.4s ease;
}

.tilt:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) scale(1.02);
}

/* lift moved to end of file to avoid conflicts */

/* === Light Theme Exact Colors === */
.light-theme {
    --bg-dark: #FFFFFF;
    --bg-body: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --primary-blue: #2563eb;
    --primary-purple: #7C3AED;
    --accent-glow: rgba(37, 99, 235, 0.05);
    --text-primary: #020617;
    /* Darker Slate-950 */
    --text-secondary: #334155;
    /* Darker Slate-700 */
    --text-muted: #475569;
    /* Darker Slate-600 */
    --border-subtle: #e2e8f0;
    /* Slate-200 */
    --border-glow: rgba(37, 99, 235, 0.1);
    --gradient-hero: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.light-theme .glass-card,
.light-theme .feature-card-premium,
.light-theme .timeline-card {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    color: #0f172a;
}

.light-theme .hero-image-wrapper {
    border-color: #FFFFFF !important;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25) !important;
}

/* Typography Update */
body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.light-theme .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Marquee Styles */
.marquee-banner {
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
}

.marquee-content-running {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-running 25s linear infinite;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.marquee-content-running i {
    color: var(--primary-blue);
}

@keyframes marquee-running {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 20% 30%, var(--accent-glow), transparent),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05), transparent);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Icon Colors */
.icon-green {
    color: #22c55e !important;
}

.icon-yellow {
    color: #facc15 !important;
}

.icon-purple {
    color: #a855f7 !important;
}

.icon-blue {
    color: #3b82f6 !important;
}

.icon-red {
    color: #ef4444 !important;
}

.icon-teal {
    color: #2dd4bf !important;
}

.icon-box-green {
    background: rgba(34, 197, 94, 0.1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.icon-box-blue {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.icon-box-purple {
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.icon-box-yellow {
    background: rgba(250, 204, 21, 0.1);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
}

.icon-box-red {
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.icon-box-teal {
    background: rgba(45, 212, 191, 0.1);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.2);
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(2rem, 5.2vw, 3.2rem);
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: var(--text-primary);
    /* Changed from hardcoded dark color */
}

.hstat-item {
    display: flex;
    flex-direction: column;
}

.hstat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hstat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline-custom {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    /* Adaptable color */
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 550px;
}

.hero-body-custom {
    font-size: 0.9rem;
    color: var(--text-muted);
    /* Adaptable color */
    line-height: 1.6;
    max-width: 600px;
}

.theme-badge-hero {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.dark-theme .theme-badge-hero {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    /* Semi-transparent white border */
    color: #FFFFFF;
    /* White text for max visibility */
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.btn-hero-outline {
    background: transparent;
    border: 1px solid #3B82F6;
    color: #3B82F6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-outline:hover {
    background: #3B82F6;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.dark-theme .btn-hero-outline {
    border-color: rgba(255, 255, 255, 0.5);
    /* Brighter, semi-transparent white border */
    color: #FFFFFF;
    /* Pure white text for max visibility */
}

.dark-theme .btn-hero-outline:hover {
    background: #FFFFFF;
    color: #0F172A !important;
    /* Dark text on white hover background */
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.badge-card-white {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #0F172A !important;
    min-width: 220px;
}

.dark-theme .badge-card-white {
    background: #1E293B !important;
    /* Slate-800 for dark mode */
    border-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
}

.badge-card-white .badge-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: inherit !important;
}

.badge-card-white .badge-subtitle {
    font-size: 0.65rem;
    color: #64748B !important;
    /* Slate-500 */
}

.dark-theme .badge-card-white .badge-subtitle {
    color: #94A3B8 !important;
    /* Slate-400 */
}

.dot-i {
    position: relative;
    display: inline-block;
}

.dot-accent {
    position: absolute;
    top: -0.35em;
    left: 45%;
    width: 0.18em;
    height: 0.18em;
    background: #3B82F6;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
    z-index: 1;
}

/* Glassmorphism Components */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    /* Matching screenshot's large rounded corners */
    padding: 2.5rem;
    transition: all 0.5s var(--easing-framer);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

.glass-card:hover {
    border-color: var(--primary-blue);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.light-theme .glass-card:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.feature-card-premium {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    height: 100%;
    transition: all 0.6s var(--easing-framer);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

.feature-card-premium:hover {
    border-color: var(--primary-blue);
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.light-theme .feature-card-premium:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.icon-box-premium {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.5s var(--easing-framer);
}

.feature-card-premium:hover .icon-box-premium {
    transform: scale(1.1) rotate(5deg);
}

.badge-excellence {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
}

/* Multi-color Icon Orbs - Matching Screenshot Geometry */
.icon-box-premium,
.service-icon-box {
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible !important;
}

.service-icon-box i,
.icon-box-premium i {
    display: inline-block !important;
}

.orb-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.dark-theme .orb-blue {
    color: #60a5fa;
}

.orb-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
}

.dark-theme .orb-purple {
    color: #a78bfa;
}

.orb-red {
    background: rgba(244, 63, 94, 0.1);
    color: #e11d48;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.08);
}

.dark-theme .orb-red {
    color: #fb7185;
}

.orb-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.08);
}

.dark-theme .orb-cyan {
    color: #22d3ee;
}

/* Hover effect: Icon box lights up */
.glass-card:hover .icon-box-premium,
.glass-card:hover .service-icon-box,
.feature-card-premium:hover .icon-box-premium,
.feature-card-premium:hover .service-icon-box {
    transform: scale(1.1);
}

.glass-card:hover .orb-blue,
.feature-card-premium:hover .orb-blue {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.glass-card:hover .orb-purple,
.feature-card-premium:hover .orb-purple {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.glass-card:hover .orb-red,
.feature-card-premium:hover .orb-red {
    background: rgba(244, 63, 94, 0.2);
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.3);
}

.glass-card:hover .orb-cyan,
.feature-card-premium:hover .orb-cyan {
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

/* Buttons */
.btn-helium {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-medium);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-helium-primary {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-helium-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: #2563eb;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.btn-helium-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-helium-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

/* Navbar */
.helium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--easing-standard);
    background: transparent;
}

.helium-nav.scrolled {
    padding: 1rem 0;
    background: var(--bg-card);
    /* More solid background */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-icon-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-medium);
    margin-right: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-icon-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Darker Glass Card for Comparisons */
.glass-card-comparison {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s var(--easing-framer);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

.glass-card-comparison:hover {
    border-color: var(--primary-blue);
    background: var(--bg-card-hover);
    transform: translateY(-10px) perspective(1000px) rotateX(1deg) rotateY(1deg);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(59, 130, 246, 0.1);
}

.dark-theme .glass-card-comparison {
    background: #0a0f1e;
    /* Keep deep dark for dark theme as requested in original design */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.dark-theme .glass-card-comparison:hover {
    background: #0f172a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.comparison-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    transform: translateX(5px);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item i {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.icon-green {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.icon-red {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.text-traditional {
    color: var(--text-muted);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s var(--easing-standard);
    display: inline-block;
    /* Required for transform */
}

.nav-link:hover {
    color: #3B82F6 !important;
    text-decoration: underline !important;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
    /* Thicker line */
    transform: translateY(-3px);
    /* Elevation look */
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--easing-framer), transform 0.8s var(--easing-framer);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* New Hero Entrance Animations */
.animate-entrance {
    animation: heroEntrance 1.2s var(--easing-framer) forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Glass Card Shimmer Effect */
.glass-shimmer {
    position: relative;
    overflow: hidden;
}

.glass-shimmer::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    animation: shimmer 8s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translate(-30%, -30%) rotate(45deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(45deg);
    }
}

.float-animation {
    animation: floating 6s infinite ease-in-out;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-hero);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.animated-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.moving-glow {
    position: absolute;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: moveGlow 25s infinite alternate ease-in-out;
    opacity: 0.6;
}

@keyframes moveGlow {
    0% {
        transform: translate(-30%, -30%) scale(1);
    }

    100% {
        transform: translate(40%, 30%) scale(1.3);
    }
}

.glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
}

/* Continuous Vertical Timeline Line */
.timeline-continuous-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #3b82f6;
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    opacity: 0.9;
}

.anchor-dot-simple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px #3b82f6, 0 0 30px rgba(59, 130, 246, 0.8);
    z-index: 2;
}

.timeline-step:last-child .vertical-connector-line {
    bottom: 50%;
}

.timeline-step:first-child .vertical-connector-line {
    top: 50%;
}

.timeline-step {
    padding: 1.2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-card {
    background: #0f172a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.5s var(--easing-framer);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-card:hover {
    background: #131c36;
    border-color: var(--primary-blue);
    transform: translateY(-8px) perspective(1000px) rotateX(1deg) rotateY(1deg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(59, 130, 246, 0.15);
}

.timeline-img-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s var(--easing-framer);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 9;
    max-width: 420px;
}

.timeline-step:hover .timeline-img-container {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-weight: 800;
    font-size: 0.9rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dark-theme .step-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

@media (max-width: 991px) {
    .timeline-wrapper {
        left: 20px;
        transform: none;
        display: none;
        /* Hide pulse line on mobile for better readability */
    }

    .timeline-step {
        flex-direction: column-reverse;
        text-align: left !important;
        padding: 2rem 0;
    }

    .timeline-img-container {
        margin-bottom: 1.5rem;
    }
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    width: fit-content;
    margin: 0 auto 3rem;
}

.toggle-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-medium);
}

.toggle-btn.active {
    background: var(--text-primary);
    color: var(--bg-dark);
}

/* Accordion */
.helium-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--easing-standard);
    color: var(--text-secondary);
    padding-top: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-top: 1rem;
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Footer Grid */
.app-footer {
    background: #F8FAFC !important;
    /* Force solid light slate */
    padding: 4rem 0 2rem;
    border-top: 1px solid #E2E8F0;
    position: relative;
    z-index: 10;
    color: var(--text-primary);
}

.dark-theme .app-footer {
    background: #0F172A !important;
    /* Force solid dark slate */
    border-top-color: rgba(255, 255, 255, 0.05);
}

.footer-social-link {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #3B82F6;
    transform: translateY(-3px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 1.5rem;
}

/* Overrides for existing utility classes */
.bg-white,
.bg-main {
    background: transparent !important;
}

/* Premium Glass Card */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 40px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s var(--easing-framer);
}

.dark-theme .glass-card-premium {
    background: rgba(15, 23, 42, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-primary);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    /* Reduced from 5.5rem */
}

.badge-pill-premium {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #2563EB;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
}

.dark-theme .badge-pill-premium {
    color: #60A5FA;
}

.modern-card,
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    color: var(--text-primary) !important;
}

.text-secondary,
.text-muted {
    color: var(--text-secondary) !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

.section-subtitle {
    color: var(--text-secondary);
}

.accordion-button {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-subtle) !important;
}

.accordion-item {
    background: transparent !important;
    border: none !important;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-secondary) !important;
}

/* Global Spacing */
section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

/* Premium FAQ Accordion */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.4s var(--easing-framer);
}

.faq-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.light-theme .faq-item:hover {
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.05);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--easing-framer), padding 0.5s var(--easing-framer);
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq-icon {
    transition: transform 0.4s var(--easing-framer);
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Vertical Split Location Card */
.location-split-container {
    border-radius: 30px;
    /* Slightly smaller radius */
    overflow: hidden;
    max-width: 1100px;
    /* Added max-width to reduce size */
    margin: 0 auto;
    box-shadow: var(--card-shadow);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

.location-details-card {
    background: var(--bg-body);
    height: 100%;
}

.location-details-header {
    background: var(--primary-blue);
    padding: 1.5rem 2.5rem;
    /* Reduced from 2.5rem */
    position: relative;
    color: white;
}

.location-details-body {
    padding: 2.5rem;
    background: transparent;
}

.location-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.location-grid-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-container-split {
    height: 100%;
    min-height: 450px;
    background: var(--bg-dark);
}

.google-map-iframe {
    filter: grayscale(1) invert(90%) hue-rotate(180deg) brightness(1.1);
}

.light-theme .google-map-iframe {
    filter: none;
}

@media (max-width: 991.98px) {
    .map-container-split {
        min-height: 400px;
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-badge {
    transition: all 0.3s ease;
    cursor: default;
}

.floating-badge:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 30;
}

/* Card hover lift effect (Moved here to override reveal-up) */
.lift {
    transition: transform 0.35s cubic-bezier(.2, .7, .3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
    border-color: #93c5fd !important;
}

.light-theme .lift:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1) !important;
}
/* Premium Glass Inputs */
.glass-input {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    padding: 0.85rem 1.25rem !important;
    color: var(--text-primary) !important;
    transition: all 0.3s var(--easing-standard) !important;
    font-size: 0.95rem;
}

.dark-theme .glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #F8FAFC !important;
}

.glass-input:focus {
    background: #FFFFFF !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
    outline: none;
}

.dark-theme .glass-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15) !important;
}

.glass-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.dark-theme .glass-input::placeholder {
    color: #94A3B8;
    opacity: 0.5;
}

.glass-input option {
    background: var(--bg-body);
    color: var(--text-primary);
}

/* Footer Refinements */
.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s var(--easing-standard);
    font-size: 0.95rem;
}

.social-icon.fb { background: #1877F2; }
.social-icon.ig { background: #E4405F; }
.social-icon.wa { background: #25D366; }

.social-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Final Footer Sizing */
.x-small {
    font-size: 0.72rem !important;
}

.footer-link {
    font-size: 0.78rem !important;
}

.footer-brand-col p {
    font-size: 0.78rem !important;
}


/* Logo Visibility in Dark Mode */
.dark-theme .app-logo {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

