:root {
    /* Default (Dark Mode) - Gemini Brand Colors */
    --bg-body: #050505;
    --bg-surface: #0f1115;
    --bg-surface-glass: rgba(15, 17, 21, 0.7);
    --primary-gradient: linear-gradient(135deg, #2979ff 0%, #6d28d9 100%);
    --accent-gradient: linear-gradient(45deg, #00d2ff, #3a7bd5);
    --gold-gradient: linear-gradient(135deg, #ffd700, #fdb931);
    --gemini-glow: 0 0 20px rgba(41, 121, 255, 0.4);

    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-light: rgba(255, 255, 255, 0.08);
    /* Light border for dark mode */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --section-spacing: 120px;
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    /* Modern Tech Font */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.glowing-btn {
    box-shadow: var(--gemini-glow);
}

.glowing-btn:hover {
    box-shadow: 0 0 30px rgba(41, 121, 255, 0.6);
    transform: translateY(-2px);
}

.section-header.center {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.section-badge {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #2979ff, #d96570);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1002;
    width: 0%;
    transition: width 0.1s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-icon {
    color: #2979ff;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #2979ff;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #2979ff;
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #6d28d9;
    bottom: 0;
    right: 0;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

.hero-content {
    max-width: 800px;
    padding-bottom: 4rem;
}

.hero-badge-wrapper {
    margin-bottom: 1.5rem;
}

.hero-badge {
    background: rgba(41, 121, 255, 0.1);
    border: 1px solid rgba(41, 121, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #60a5fa;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.typing-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats-new {
    display: flex;
    gap: 3rem;
    background: var(--bg-surface-glass);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    display: inline-flex;
    box-shadow: var(--card-shadow);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 2rem;
    border-right: 1px solid var(--border-light);
}

.stat-card:last-child {
    border: none;
    padding: 0;
}

.stat-icon {
    font-size: 1.5rem;
    color: #2979ff;
}

/* Aurora Text Effect */
h1,
h2 {
    position: relative;
    z-index: 2;
    /* Subtle glow behind text */
    text-shadow: 0 0 40px rgba(41, 121, 255, 0.15);
}

h2 .gradient-text {
    filter: drop-shadow(0 0 15px rgba(41, 121, 255, 0.3));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.05em;
    text-shadow: 0 0 20px rgba(41, 121, 255, 0.4);
    /* Logo Glow */
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* Trust Bar */
.trust-bar {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    background: #050505;
}

.trust-label {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

.logos-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.logo-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    opacity: 0.5;
    font-size: 2rem;
}

/* Calculator */
.calculator-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, #050505, #0a0a0e);
}

.row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calc-benefits li {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.1rem;
}

.calc-benefits i {
    color: #10b981;
}

.calc-widget {
    background: var(--bg-surface);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.calc-header {
    background: var(--bg-surface-glass);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.calc-header h3 {
    margin: 0;
    opacity: 0.9;
    color: var(--text-main);
}

.calc-body {
    padding: 2rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: #333;
    height: 6px;
    border-radius: 3px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #2979ff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-value {
    text-align: right;
    margin-top: 0.5rem;
    font-family: monospace;
    color: #2979ff;
    font-size: 1.1rem;
}

.calc-result {
    text-align: center;
    background: rgba(41, 121, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(41, 121, 255, 0.2);
}

.calc-result h2 {
    color: var(--text-main);
    font-size: 2.5rem;
    margin: 0.5rem 0;
    text-shadow: 0 0 20px rgba(41, 121, 255, 0.5);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* About Grid */
.about {
    padding: var(--section-spacing) 0;
}

.about-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.about-card-lg {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.card-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
    z-index: -1;
    filter: brightness(0.4);
}

.about-card-lg:hover .card-bg-img {
    transform: scale(1.05);
}

/* Glass Card 2.0 - High End */
.glass-card {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Highlight on top */
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    /* Highlight on left */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Inner rim */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(41, 121, 255, 0.1);
    border-color: rgba(41, 121, 255, 0.3);
}

.about-card-sm {
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.about-card-sm:hover {
    transform: translateX(10px);
    border-color: #2979ff;
}

.about-card-sm i {
    font-size: 1.8rem;
    color: #2979ff;
    margin-bottom: 1rem;
}

/* Services Wrapper */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-box {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: #2979ff;
    box-shadow: 0 10px 30px rgba(41, 121, 255, 0.2);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(41, 121, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2979ff;
    margin-bottom: 1.5rem;
}

.feat-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.learn-more {
    font-size: 0.9rem;
    color: #2979ff;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 600;
}

/* Timeline */
.process-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding-right: 3rem;
}

.timeline-item.right {
    margin-left: auto;
    padding-right: 0;
    padding-left: 3rem;
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    right: -25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: #0f1115;
    border: 2px solid #2979ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2979ff;
    z-index: 2;
    box-shadow: 0 0 15px rgba(41, 121, 255, 0.3);
}

.timeline-item.right .timeline-dot {
    left: -25px;
    right: auto;
}

.timeline-content h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

/* Testimonials Carousel */
.testimonials {
    background: var(--bg-surface);
    padding: var(--section-spacing) 0;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonials-track-new {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.testimonial-single {
    min-width: 100%;
    transition: transform 0.5s ease;
    padding: 2rem;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.testimonial-single p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.user-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2979ff, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.slider-nav {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: white;
    color: #000;
}

/* FAQ */
.faq-section {
    padding: var(--section-spacing) 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: #0f1115;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #2979ff;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    height: auto;
    padding-bottom: 1.5rem;
}

/* Contact CTA */
.contact-hero {
    padding: 4rem 0 8rem;
}

.contact-box {
    background: linear-gradient(135deg, #0f1115 0%, #1a1a2e 100%);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.simple-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Navbar Grid Layout for strict centering */
.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.logo {
    justify-self: start;
}

.nav-menu {
    justify-self: center;
    display: flex;
    list-style: none;
    /* Ensure no dots */
    gap: 3rem;
    /* More space */
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Push button to the right end */
.nav-wrapper>.btn {
    justify-self: end;
}

/* Ensure mobile toggle is hidden on desktop to avoid stray dots/elements */
.mobile-menu-toggle {
    display: none;
}

/* Fix Navbar Alignment - Match Global Container */
.navbar .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    /* Exact match to global .container */
    width: 100%;
}

/* Fix Scroll Indicator - Lowered to Safest Zone */
.scroll-indicator {
    bottom: 10px;
    /* Bare minimum from bottom */
    z-index: 20;
    /* High Z-index */
    animation: bounce 2s infinite;
}

/* Ensure Hero has breathing room at bottom so indicator doesn't overlap content */
.hero {
    padding-bottom: 4rem;
    /* Add specific padding at bottom */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Fix Contact Form Inputs */
.simple-form input,
/* CORRECTED TYPO from 'inputs' */
.simple-form select,
.simple-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    /* Glass feel - reinforced */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-main) !important;
    /* Force readable text */
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.simple-form textarea {
    resize: vertical;
    min-height: 120px;
}

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
    outline: none;
    border-color: #2979ff;
    background: rgba(41, 121, 255, 0.1);
    box-shadow: 0 0 15px rgba(41, 121, 255, 0.2);
}

.privacy-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    /* Slightly darker glass for cards */
}

.member-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.member-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
}

.gradient-bg-1 {
    background-image: var(--primary-gradient);
}

.gradient-bg-2 {
    background-image: var(--accent-gradient);
}

.gradient-bg-3 {
    background-image: var(--gold-gradient);
}

.member-info h3 {
    margin: 0.5rem 0;
    color: var(--text-main);
}

.member-role {
    display: block;
    color: #2979ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-socials a:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .row-split,
    .contact-box,
    .about-grid-new {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 0;
        right: auto;
        margin-left: -5px;
    }

    /* Adjust for alignment */
    .timeline-line {
        left: 20px;
    }

    .timeline-item.right .timeline-content {
        text-align: left;
    }

    .contact-box {
        padding: 2rem;
    }

    .nav-wrapper {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: white;
        margin: 5px 0;
    }

    /* Mobile Menu Overlay fix */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0f1115;
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
    }
}