/* Hero Section Overhaul */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 8rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-bg); /* Fallback */
}

/* Layer 1: Moving Background Elements */
.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.moving-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    width: 600px; height: 600px;
    background: var(--accent-gradient);
    top: -10%; left: -10%;
    animation: move-1 25s infinite alternate ease-in-out;
}

.shape-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    bottom: 10%; right: -5%;
    animation: move-2 30s infinite alternate ease-in-out;
}

.shape-3 {
    width: 400px; height: 400px;
    background: rgba(128, 90, 213, 0.5);
    top: 40%; right: 30%;
    animation: move-3 20s infinite alternate ease-in-out;
}

.shape-4 {
    width: 300px; height: 300px;
    background: rgba(56, 189, 248, 0.4);
    bottom: -5%; left: 20%;
    animation: move-4 22s infinite alternate ease-in-out;
}

@keyframes move-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

@keyframes move-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-80px, -40px) rotate(20deg); }
}

@keyframes move-3 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, -60px); }
}

@keyframes move-4 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 30px) scale(1.2); }
}

/* Floating Bokeh/Particles */
.floating-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.floating-particles span {
    position: absolute;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    animation: bokeh-float 20s linear infinite;
    bottom: -150px;
}

.floating-particles span:nth-child(1) { left: 5%; width: 120px; height: 120px; animation-duration: 18s; animation-delay: 0s; }
.floating-particles span:nth-child(2) { left: 15%; width: 200px; height: 200px; animation-duration: 25s; animation-delay: 2s; background: var(--accent-secondary); }
.floating-particles span:nth-child(3) { left: 30%; width: 100px; height: 100px; animation-duration: 20s; animation-delay: 5s; }
.floating-particles span:nth-child(4) { left: 45%; width: 180px; height: 180px; animation-duration: 22s; animation-delay: 1s; background: var(--accent-tertiary); }
.floating-particles span:nth-child(5) { left: 60%; width: 140px; height: 140px; animation-duration: 19s; animation-delay: 8s; }
.floating-particles span:nth-child(6) { left: 75%; width: 220px; height: 220px; animation-duration: 28s; animation-delay: 3s; background: var(--accent-gradient); }
.floating-particles span:nth-child(7) { left: 85%; width: 90px; height: 90px; animation-duration: 15s; animation-delay: 10s; }
.floating-particles span:nth-child(8) { left: 50%; width: 160px; height: 160px; animation-duration: 24s; animation-delay: 4s; background: var(--accent-secondary); }
.floating-particles span:nth-child(9) { left: 25%; width: 130px; height: 130px; animation-duration: 21s; animation-delay: 7s; }
.floating-particles span:nth-child(10) { left: 90%; width: 150px; height: 150px; animation-duration: 26s; animation-delay: 2s; background: var(--accent-tertiary); }

@keyframes bokeh-float {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.5; }
    80% { opacity: 0.5; }
    100% { transform: translateY(-120vh) translateX(100px) scale(1.2); opacity: 0; }
}

/* Layer 2: Glass Pane */
.hero-glass-pane {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    backdrop-filter: blur(30px); /* Reduced blur for visibility */
    -webkit-backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.01); /* Subtle tint */
    pointer-events: none;
}

[data-theme="dark"] .hero-glass-pane {
    background: rgba(0, 0, 0, 0.05);
}

/* Layer 3: Content */
.hero-container {
    position: relative;
    z-index: 2; /* Content sits on top of glass */
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Adjust grid if visual is separate, but here it's global */
    gap: 4rem;
}

/* If we want to center the text since visuals are everywhere */
/* .hero-container {
    display: block;
    text-align: center;
    max-width: 900px;
} */
/* Keeping grid for now to match previous layout stability */

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1.5rem; }

/* Rest of CSS follows... keeping previous styles for buttons, nav, etc. */
/* ... (I will append the existing necessary styles below or ensure they are present) */

:root {
    /* Color Palette - Light Mode */
    --primary-bg: #f0f4f8; /* Slightly cooler/darker white */
    --secondary-bg: #ffffff;
    --text-main: #1a202c;
    --text-muted: #4a5568;
    --accent-color: #3182ce;
    --accent-secondary: #d53f8c; /* Pink/Purple */
    --accent-tertiary: #805ad5; /* Purple */
    
    /* Vibrant Gradient */
    --accent-gradient: linear-gradient(135deg, #00c6fb 0%, #005bea 50%, #d53f8c 100%);
    --accent-gradient-text: linear-gradient(135deg, #00c6fb 0%, #005bea 50%, #d53f8c 100%);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.7);
    
    /* Shadows & Depth */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(66, 153, 225, 0.3);
    
    /* Spacing */
    --container-padding: 2rem;
    --header-height: 80px;
}

[data-theme="dark"] {
    /* Color Palette - Dark Mode */
    --primary-bg: #0b1121; /* Deep Blue/Black */
    --secondary-bg: #151f32;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-color: #38bdf8;
    --accent-secondary: #f472b6;
    --accent-tertiary: #a78bfa;
    
    /* Electric Gradient */
    --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    --accent-gradient-text: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.6);
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.2);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    /* Mesh + Grid Background */
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(213, 63, 140, 0.08), transparent 25%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography Utilities */
.text-gradient {
    background: var(--accent-gradient-text);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradient-flow 5s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 0 rgba(49, 130, 206, 0.5), 0 5px 15px rgba(0, 0, 0, 0.1); /* 3D Border bottom */
    transition: all 0.1s ease; /* Faster transition for button press feel */
    transform: translateY(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(49, 130, 206, 0.5), 0 10px 25px rgba(56, 189, 248, 0.4);
    color: #ffffff !important;
}
.btn-primary:hover::before { opacity: 1; }

.btn-primary:active,
.btn-primary.btn-pressed {
    transform: translateY(4px); /* Simulate full press */
    box-shadow: 0 0 0 rgba(49, 130, 206, 0.5), 0 0 5px rgba(0, 0, 0, 0.2); /* Remove 3D border to look flat/pressed */
    filter: none; /* Remove brightness filter to keep color consistent */
    color: #ffffff !important;
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.btn-link {
    color: var(--accent-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}
.btn-link:hover { gap: 0.8rem; }
.btn-link:hover::after { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.05); /* Ultra transparent initially */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background: rgba(11, 17, 33, 0.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img { height: 40px; width: auto; }

[data-theme="dark"] .logo-img {
    filter: invert(1) brightness(2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    opacity: 0.8;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent-color); }
.nav-links a.active::before {
    content: '';
    position: absolute;
    bottom: -5px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: var(--text-main); margin: 5px auto; transition: 0.3s; border-radius: 3px; }

/* Theme Switcher */
.theme-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.theme-switcher-checkbox {
    display: none;
}

.theme-switcher-label {
    width: 60px;
    height: 30px;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.theme-switcher-icon {
    font-size: 14px;
    line-height: 1;
    z-index: 1;
    user-select: none;
}

.theme-switcher-ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 2;
}

.theme-switcher-checkbox:checked + .theme-switcher-label .theme-switcher-ball {
    transform: translateX(30px);
}

/* Tech Marquee */
.tech-marquee {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin-top: -4rem; /* Overlap hero slightly */
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.marquee-content {
    display: flex;
    gap: 4rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}
.tech-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.tech-dot {
    width: 8px; height: 8px; background: var(--accent-color); border-radius: 50%; opacity: 0.5;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 8rem 0; position: relative; }
.section-header { margin-bottom: 5rem; }
.section-header.center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Decorative Orbs in Sections */
.decorative-blob {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: -1;
}
.blob-1 { background: var(--accent-tertiary); top: 10%; left: -5%; }
.blob-2 { background: var(--accent-color); bottom: 10%; right: -5%; }
.blob-3 { background: var(--accent-secondary); top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; opacity: 0.15; }

.section-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    background: rgba(56, 189, 248, 0.1);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.section-title { font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; }

/* Cards */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Top highlight */
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}
.card:hover::before { opacity: 1; }

.card-content h3 { font-size: 2rem; margin-bottom: 1rem; font-weight: 700; }
.card-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; flex-grow: 1; }

/* Services Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.service-item {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.05); /* Slight brightening on dark mode */
}
[data-theme="light"] .service-item:hover { background: #ffffff; }

/* Glass Icons */
.glass-icon {
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}
.service-item:hover .glass-icon {
    transform: rotate(10deg) scale(1.1);
    border-color: var(--accent-color);
}

.service-item h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; justify-content: center; }

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(56, 189, 248, 0.15);
    transform: scale(1.05);
}
.pricing-card.featured:hover { transform: scale(1.08) translateY(-10px); }

.plan-price { font-size: 3.5rem; font-weight: 800; color: var(--text-main); letter-spacing: -0.03em; }

/* Timeline */
.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-color) 10%, var(--accent-color) 90%, transparent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 13px; /* Center on 2px line at left:24px. */
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 4px var(--primary-bg); /* Gap effect */
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 4px var(--primary-bg), 0 0 10px var(--accent-color);
}

.timeline-content-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.timeline-content-link:hover {
    transform: translateX(10px);
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content-link:hover .timeline-content {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.timeline-date {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.upcoming {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Footer */
.main-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 6rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-logo {
    height: 70px !important; /* Larger than navbar logo */
    width: auto;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive */

@media (max-width: 992px) {

    .hero-title { font-size: 4rem; }

    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }

    .hero-buttons { justify-content: center; }

}



@media (max-width: 768px) {



    :root { --header-height: 70px; }



    



    .container {



        width: 100%;



        padding: 0 1.25rem;



    }







    .hero-section {



        padding-top: calc(var(--header-height) + 2rem);



        padding-bottom: 3rem;



        min-height: auto;



    }







        .hero-container {







            padding: 0; 







            grid-template-columns: 1fr;







            text-align: center;







            gap: 2rem;







        }







    







        .hero-title { 







            font-size: 2.5rem; 







            margin-bottom: 1rem;







        }







        







        .hero-subtitle {







            margin-left: auto;







            margin-right: auto;







        }







    







        .hero-buttons {







            justify-content: center;







        }







    







        .section-header.center {







            padding: 0 1rem;







        }







    







        .section-title {







            font-size: 2rem; 







        }







    







    .nav-actions {



        gap: 0.75rem;



    }



    



    .logo-img {



        height: 32px; /* Slightly smaller logo */



    }







    /* Mobile Menu Button */



    .mobile-menu-btn { 



 

        display: block; 

        z-index: 1001; 

        position: relative;

    }

    

    .mobile-menu-btn.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }

    .mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; }

    .mobile-menu-btn.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }



                    .nav-links {



                        position: fixed;



                        background: rgba(255, 255, 255, 0.4); /* Lower opacity to show blur */



                        backdrop-filter: blur(50px); /* Heavy blur */



                        -webkit-backdrop-filter: blur(50px);



                        border-bottom: 1px solid rgba(255, 255, 255, 0.2);



                        width: 100%;



                        max-width: 100%;



                        left: -100%;



                        top: var(--header-height);



                        height: calc(100vh - var(--header-height));



                        padding: 2rem;



                        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);



                        display: flex;



                        flex-direction: column;



                        align-items: center;



                        box-shadow: 0 10px 30px rgba(0,0,0,0.3);



                        z-index: 999;



                        overflow-y: auto;



                    }



                



                    [data-theme="dark"] .nav-links {



                        background: rgba(15, 23, 42, 0.6); /* Lower opacity to let heavy blur do the work */



                        backdrop-filter: blur(50px);



                        -webkit-backdrop-filter: blur(50px);



                    }



            



    

    

    .nav-links.active { left: 0; }

    

    .nav-links li {

        width: 100%;

        text-align: center;

        margin-bottom: 1.5rem;

    }



    .nav-links a {

        font-size: 1.2rem; /* Larger touch targets */

        display: block;

        padding: 0.5rem;

    }

    

    .grid-2 { grid-template-columns: 1fr; }

    .section { padding: 4rem 0; } /* Reduced section padding */

    .card { padding: 2rem; }

    

    .footer-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-col {

        align-items: center;

    }

}
