/* 
  Theme Variables 
  "c0de" Aesthetic: Dark, Neon, Monospace details 
*/
:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-primary: #00ff9d;
    /* Neon Green */
    --accent-secondary: #00d2ff;
    /* Cyan */
    --accent-glow: rgba(0, 255, 157, 0.2);
    --border-color: #333;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --section-spacing: 6rem;

    /* Dynamic Components */
    --glass-bg: rgba(5, 5, 5, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --input-bg: rgba(0, 0, 0, 0.3);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus-bg: rgba(0, 0, 0, 0.5);
    --star-color: white;
}

:root[data-theme="light"] {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --accent-primary: #000000;
    --border-color: #eaeaea;
    --accent-glow: rgba(0, 0, 0, 0.05);

    /* Dynamic Components */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: #eaeaea;
    --input-bg: #ffffff;
    --input-border: #eaeaea;
    --input-focus-bg: #ffffff;
    --star-color: #eaeaea;
    --card-shadow: 0 0 0 1px #eaeaea;
    --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Vercel Dots */
    --dot-bg: radial-gradient(#e5e7eb 1px, transparent 1px);
    --dot-size: 24px 24px;
}

[data-theme="light"] body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--dot-bg);
    background-size: var(--dot-size);
    z-index: -2;
    pointer-events: none;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.theme-toggle:hover {
    color: var(--accent-primary);
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

[data-theme="light"] .sun-icon {
    display: block;
}

[data-theme="light"] .moon-icon {
    display: none;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

section {
    position: relative;
    padding: var(--section-spacing) 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzLTMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjZykiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.1));
    background-size: 100% 4px;
    z-index: 100;
    pointer-events: none;
}

/* Typography Utility */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blinking-cursor {
    color: var(--accent-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    /* Reduced from 2rem */
    align-items: center;
}

.mobile-menu-btn,
.mobile-nav-overlay {
    display: none;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

/* Vertical Dividers Removed */

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--text-primary);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--accent-glow);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-mono);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: var(--section-spacing);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 157, 0.2);
}



.hero-subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(0, 255, 157, 0.05);
    color: var(--accent-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-text h1.glitch-text {
    position: relative;
    color: var(--text-primary);
}

.hero-text h1.glitch-text::before,
.hero-text h1.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.hero-text h1.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.hero-text h1.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(35px, 9999px, 86px, 0);
    }

    5% {
        clip: rect(66px, 9999px, 2px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 98px, 0);
    }

    15% {
        clip: rect(69px, 9999px, 44px, 0);
    }

    20% {
        clip: rect(31px, 9999px, 20px, 0);
    }

    25% {
        clip: rect(98px, 9999px, 7px, 0);
    }

    30% {
        clip: rect(48px, 9999px, 42px, 0);
    }

    35% {
        clip: rect(6px, 9999px, 83px, 0);
    }

    40% {
        clip: rect(22px, 9999px, 12px, 0);
    }

    45% {
        clip: rect(74px, 9999px, 51px, 0);
    }

    50% {
        clip: rect(76px, 9999px, 7px, 0);
    }

    55% {
        clip: rect(36px, 9999px, 70px, 0);
    }

    60% {
        clip: rect(19px, 9999px, 60px, 0);
    }

    65% {
        clip: rect(51px, 9999px, 26px, 0);
    }

    70% {
        clip: rect(34px, 9999px, 3px, 0);
    }

    75% {
        clip: rect(18px, 9999px, 92px, 0);
    }

    80% {
        clip: rect(100px, 9999px, 12px, 0);
    }

    85% {
        clip: rect(9px, 9999px, 51px, 0);
    }

    90% {
        clip: rect(89px, 9999px, 28px, 0);
    }

    95% {
        clip: rect(63px, 9999px, 17px, 0);
    }

    100% {
        clip: rect(38px, 9999px, 98px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(16px, 9999px, 63px, 0);
    }

    5% {
        clip: rect(99px, 9999px, 12px, 0);
    }

    10% {
        clip: rect(78px, 9999px, 90px, 0);
    }

    15% {
        clip: rect(24px, 9999px, 36px, 0);
    }

    20% {
        clip: rect(70px, 9999px, 81px, 0);
    }

    25% {
        clip: rect(1px, 9999px, 11px, 0);
    }

    30% {
        clip: rect(84px, 9999px, 64px, 0);
    }

    35% {
        clip: rect(23px, 9999px, 75px, 0);
    }

    40% {
        clip: rect(44px, 9999px, 28px, 0);
    }

    45% {
        clip: rect(88px, 9999px, 95px, 0);
    }

    50% {
        clip: rect(4px, 9999px, 33px, 0);
    }

    55% {
        clip: rect(27px, 9999px, 6px, 0);
    }

    60% {
        clip: rect(93px, 9999px, 34px, 0);
    }

    65% {
        clip: rect(42px, 9999px, 78px, 0);
    }

    70% {
        clip: rect(59px, 9999px, 2px, 0);
    }

    75% {
        clip: rect(12px, 9999px, 15px, 0);
    }

    80% {
        clip: rect(54px, 9999px, 96px, 0);
    }

    85% {
        clip: rect(67px, 9999px, 39px, 0);
    }

    90% {
        clip: rect(15px, 9999px, 6px, 0);
    }

    95% {
        clip: rect(87px, 9999px, 8px, 0);
    }

    100% {
        clip: rect(55px, 9999px, 74px, 0);
    }
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Code Block Visual */
.code-block-wrapper {
    background: #111;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.code-block-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.window-header {
    background: #1a1a1a;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.title {
    margin-left: 10px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

pre {
    padding: 1.5rem;
    overflow-x: auto;
}

code {
    font-family: var(--font-mono);
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* About Us */
.about-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Tech Section (Our Expertise) */
.tech-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 100%);
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 5px;
}

/* Stars Animation */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes twinkle {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: var(--opacity);
        box-shadow: 0 0 4px white;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: translateY(20px);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 255, 157, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.tech-card:hover .tech-icon-wrapper {
    background: var(--accent-primary);
    color: #000;
    transform: rotateY(180deg);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-family: var(--font-mono);
}

.tech-card:hover .tech-tag {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    border-color: rgba(0, 255, 157, 0.3);
}

/* Light Theme Overrides for Cards */
[data-theme="light"] .tech-card,
[data-theme="light"] .job-card,
[data-theme="light"] .contact-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: none;
    /* Minimalist */
}

[data-theme="light"] .tech-card:hover,
[data-theme="light"] .job-card:hover,
[data-theme="light"] .contact-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #000;
}

[data-theme="light"] .tech-tag,
[data-theme="light"] .job-tags span {
    background: #fafafa;
    color: #000;
    border: 1px solid #eaeaea;
}

[data-theme="light"] .tech-card h3 {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trusted By Section */
.trusted-by-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .trusted-item {
    background: #ffffff;
    border: none;
    /* Rely on grid gap */
}

[data-theme="light"] .trusted-item:hover {
    background: #fafafa;
    box-shadow: none;
    z-index: 1;
    /* Bring to top if needed, but for grid gap usually not needed unless utilizing scale */
}

.trusted-by-section .section-header {
    margin-bottom: 3rem;
}

.trusted-by-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.trusted-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.text-center {
    text-align: center;
}


.trusted-item {
    background: #0a0a0a;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 25%;
    /* Force 4 per row mainly */
}

/* Force 4 items per row, but allow wrapping */
.trusted-item {
    flex-basis: calc(25% - 1px);
}

/* Hover State Style */
.trusted-item:hover,
.trusted-item.highlight {
    filter: grayscale(0%);
    opacity: 1;
    background: #0f0f0f;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

/* Specific to BillingPro to center nicely if needed, though flex handles it */
.billing-pro {
    flex-grow: 0;
    min-width: 300px;
    /* Make it a bit wider if centered alone */
}

.company-name {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}



/* Stack Section */
.stack-section {
    padding: var(--section-spacing) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tech-marquee {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.tech-item {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.tech-item:hover {
    color: var(--accent-primary);
}

/* CTA Section */
.cta-section {
    padding: var(--section-spacing) 0;
    text-align: center;
}

.cta-box {
    background: radial-gradient(circle at center, var(--card-bg), var(--bg-color));
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .cta-box {
    box-shadow: none;
    background: #ffffff;
    background-image: var(--dot-bg);
    background-size: var(--dot-size);
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

input {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-mono);
    min-width: 300px;
}

input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-mono);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    [data-theme="light"] .mobile-nav-overlay {
        background: rgba(255, 255, 255, 0.95);
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .mobile-nav-overlay.active .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Animation Delays */
    .mobile-nav-overlay.active .mobile-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-nav-overlay.active .mobile-link:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-nav-overlay.active .mobile-link:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-nav-overlay.active .mobile-link:nth-child(4) {
        transition-delay: 0.4s;
    }

    .mobile-nav-overlay.active .mobile-link:nth-child(5) {
        transition-delay: 0.5s;
    }

    .mobile-nav-overlay.active .mobile-link:nth-child(6) {
        transition-delay: 0.6s;
    }

    .mobile-link:hover {
        color: var(--accent-primary);
    }

    .btn-mobile-cta {
        background: var(--text-primary);
        color: var(--bg-color);
        padding: 0.8rem 2rem;
        border-radius: 50px;
        margin-top: 1rem;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .contact-form input {
        min-width: auto;
        width: 100%;
    }
}


/* Stats Section */
.stats-section {
    padding: 6rem 0;
    position: relative;
    background: transparent;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 4rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: var(--font-mono);
    line-height: 1;
}

[data-theme="light"] .stat-number {
    text-shadow: none;
    color: #000;
}

[data-theme="dark"] .stat-number {
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.plus {
    font-size: 3rem;
    color: #333;
    font-weight: 700;
    vertical-align: super;
    margin-left: 5px;
}

.stat-label {
    display: block;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Card Lists */
.card-list {
    list-style: none;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.card-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.card-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-family: var(--font-mono);
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.client-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .client-logo {
    color: #000000;
}

/* Careers */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 4rem;
}

.tags-cloud span {
    background: rgba(0, 255, 157, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    /* Default Dark Mode */
    border: 1px solid rgb(0 255 157 / 49%);
}

[data-theme="light"] .tags-cloud span {
    color: #333;
    /* Light Mode Override */
}

.job-card {
    background: linear-gradient(145deg, #0f0f0f, #050505);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards per row */
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Center the 3rd card */
.careers-grid .job-card:nth-child(3) {
    grid-column: 1 / span 2;
    /* take full row */
    justify-self: center;
    /* center horizontally */
    max-width: 420px;
    /* keep same card width */
}


.job-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.job-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
    font-family: var(--font-mono);
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Contact Section Redesign */
.contact-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

[data-theme="dark"] .contact-section {
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.contact-card {
    padding: 3rem;
    border-radius: 16px;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-desc {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.contact-item a,
.contact-item p {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-icon {
    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-primary);
    font-family: var(--font-mono);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-primary);
    color: #000;
    transform: translateY(-3px);
}

/* Modern Form */
.form-card {
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.modern-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.modern-form select option {
    background-color: #000;
    color: white;
    padding: 10px;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--accent-primary);
    background: var(--input-focus-bg);
    box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.05);
}

.modern-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem;
    }
}


.job-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.btn-sm {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-sm:hover {
    background: var(--accent-primary);
    color: black;
}

/* Contact Overhaul */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 4px;
    color: white;
    font-family: var(--font-main);
    resize: none;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.full-width {
    width: 100%;
}

/* Footer Overhaul */
.footer-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-column a,
.footer-contact p {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links a {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    font-size: 0.8rem;
}

/* Running Stars */
#running-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.running-star {
    position: absolute;
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    filter: blur(1px);
    opacity: 0;
}

/* Left side stars */
/* Left side stars */
.star-left {
    left: -200px;
    transform: rotate(35deg);
    animation: shooting-left 45s linear infinite;
    /* Slowed down cycle */
}

/* Right side stars */
.star-right {
    right: -200px;
    transform: rotate(-35deg);
    animation: shooting-right 50s linear infinite;
    /* Slowed down cycle */
}

@keyframes shooting-left {
    0% {
        transform: translateX(0) translateY(0) rotate(35deg) scale(1);
        opacity: 1;
    }

    10% {
        transform: translateX(120vw) translateY(70vh) rotate(35deg) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateX(120vw) translateY(70vh) rotate(35deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes shooting-right {
    0% {
        transform: translateX(0) translateY(0) rotate(-35deg) scale(1);
        opacity: 1;
    }

    10% {
        transform: translateX(-120vw) translateY(70vh) rotate(-35deg) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateX(-120vw) translateY(70vh) rotate(-35deg) scale(0.5);
        opacity: 0;
    }
}

/* More varied delays to make them infrequent (30-45s gaps roughly) */
.star-left:nth-child(1) {
    top: 0%;
    animation-delay: 0s;
}

.star-left:nth-child(2) {
    top: 30%;
    animation-delay: 25s;
}

.star-right:nth-child(3) {
    top: 0%;
    animation-delay: 15s;
}

.star-right:nth-child(4) {
    top: 30%;
    animation-delay: 40s;
}

@media (max-width: 768px) {

    .contact-wrapper,
    .footer-content-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 2rem;
    }
}

/* 3D Cube Hero Visual */
.hero-visual {
    display: flex;
    justify-content: flex-start;
    /* Shift to left (closer to text) */
    align-items: center;
    height: 400px;
    /* Ensure height for centering */
    perspective: 1000px;
    padding-left: 150px;
    /* Adjust spacing */
}

.cube-container {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--accent-primary);
    backdrop-filter: blur(2px);
}

.face.front {
    transform: rotateY(0deg) translateZ(100px);
}

.face.back {
    transform: rotateY(180deg) translateZ(100px);
}

.face.right {
    transform: rotateY(90deg) translateZ(100px);
}

.face.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.face.top {
    transform: rotateX(90deg) translateZ(100px);
}

.face.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

/* Inner Cube for extra effect */
.cube::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: 60px;
    left: 60px;
    background: var(--accent-primary);
    transform-style: preserve-3d;
    transform: translateZ(0);
    box-shadow: 0 0 40px var(--accent-primary);
    opacity: 0.8;
    border-radius: 50%;
    /* Make it a glowing core sphere */
    animation: inner-pulse 2s infinite alternate;
}

/* Orbital Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-top: 2px solid var(--accent-primary);
    animation: rotate-ring 10s infinite linear;
}

.ring-2 {
    width: 260px;
    height: 260px;
    border-right: 2px solid var(--accent-primary);
    animation: rotate-ring-reverse 15s infinite linear;
}

.ring-3 {
    width: 340px;
    height: 340px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    animation: rotate-ring 20s infinite linear;
}


@keyframes rotate {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes rotate-ring {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(360deg);
    }
}

@keyframes rotate-ring-reverse {
    from {
        transform: translate(-50%, -50%) rotateX(-60deg) rotateY(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(-60deg) rotateY(-360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(-20px) rotateZ(5deg);
    }
}

@keyframes inner-pulse {
    from {
        opacity: 0.5;
        transform: scale(0.8);
        box-shadow: 0 0 20px var(--accent-primary);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 60px var(--accent-primary);
    }
}

/* 3D Tilt Effect Class */
.tilt-card {
    transition: transform 0.1s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-content {
    transform: translateZ(20px);
}

/* Light Theme Overrides */
[data-theme="light"] .modern-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

[data-theme="light"] .star {
    opacity: 0 !important;
    display: none !important;
}

/* Select specific stars to convert to Plus symbols (4-5 items) */
[data-theme="light"] .star:nth-child(13),
[data-theme="light"] .star:nth-child(28),
[data-theme="light"] .star:nth-child(42),
[data-theme="light"] .star:nth-child(67),
[data-theme="light"] .star:nth-child(85) {
    display: block !important;
    opacity: 0.4 !important;
    /* Subtle */
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    transform: scale(1) !important;
    animation: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

[data-theme="light"] .star:nth-child(13)::after,
[data-theme="light"] .star:nth-child(28)::after,
[data-theme="light"] .star:nth-child(42)::after,
[data-theme="light"] .star:nth-child(67)::after,
[data-theme="light"] .star:nth-child(85)::after {
    content: '+';
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 24px;
    /* Slightly bigger */
    color: #a1a1aa;
    /* Matches dot style/neutral gray */
    line-height: 1;
    display: block;
}

[data-theme="light"] .noise-overlay {
    opacity: 0.02;
}

[data-theme="light"] .scanlines {
    opacity: 0.03;
}

[data-theme="light"] .face {
    background: rgba(0, 0, 0, 0.02);
    border-color: #eaeaea;
}

[data-theme="light"] .cube::after {
    background: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .orbit-ring {
    border-color: #eaeaea;
}

[data-theme="light"] .btn-primary {
    background: #000;
    border-color: #000;
    color: #fff;
}

[data-theme="light"] .btn-primary:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

[data-theme="light"] .btn-secondary {
    background: #fff;
    border-color: #eaeaea;
    color: #000;
}

[data-theme="light"] .btn-secondary:hover {
    background: #fafafa;
    border-color: #000;
}

[data-theme="light"] .badge {
    background: #fafafa;
    color: #000;
    border: 1px solid #eaeaea;
}

/* Final Light Mode Fixes & Vercel Patches */
[data-theme="light"] .site-footer {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
}

[data-theme="light"] .contact-form textarea {
    background: #ffffff;
    color: #000000;
    border: 1px solid #eaeaea;
}

[data-theme="light"] .contact-form textarea:focus {
    border-color: #000000;
}

[data-theme="light"] .social-icon {
    background: #ffffff;
    border: 1px solid #eaeaea;
    color: #000000;
}

[data-theme="light"] .social-icon:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

[data-theme="light"] .info-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
}

[data-theme="light"] .contact-wrapper {
    background: transparent;
    border: none;
    padding: 0;
}

[data-theme="light"] .tech-icon-wrapper {
    background: #fafafa;
    color: #000;
    border: 1px solid #eaeaea;
}

[data-theme="light"] .tech-card:hover .tech-icon-wrapper {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Light Mode Override: Keep Tech Section Dark for Contrast */
[data-theme="light"] .tech-section .section-header h2,
[data-theme="light"] .tech-section .section-header p,
[data-theme="light"] .tech-section .badge {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .tech-section .badge {
    background: rgba(255, 255, 255, 0.1);
}

/* Light Mode Override: Force Trusted By Section to be Dark */
[data-theme="light"] .trusted-by-section {
    background: #050505;
    /* Keep it dark */
    border-color: #333;
}

[data-theme="light"] .trusted-by-section h2 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

[data-theme="light"] .trusted-item {
    background: #0a0a0a;
    border: 1px solid #333;
}

[data-theme="light"] .trusted-item:hover {
    background: #0f0f0f;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .company-name,
[data-theme="light"] .client-logo {
    color: #ffffff;
}

/* ------------------------------------------------------------------
   Dark Mode Enforcement for Specific Sections in Light Theme
   ------------------------------------------------------------------ */

/* Core Competencies (Tech Section) */
[data-theme="light"] .tech-section {
    background: radial-gradient(circle at center, #0f0f0f 0%, #050505 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

[data-theme="light"] .tech-section .section-header h2,
[data-theme="light"] .tech-section .section-header p {
    color: #ffffff;
}

[data-theme="light"] .tech-section .badge {
    background: rgba(0, 255, 157, 0.1);
    color: #ffffff;
    ;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

/* Force Tech Cards to Dark Mode Style */
[data-theme="light"] .tech-section .tech-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

[data-theme="light"] .tech-section .tech-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 255, 157, 0.1);
    transform: translateY(-10px) scale(1.02);
}

[data-theme="light"] .tech-section .tech-card h3 {
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

[data-theme="light"] .tech-section .tech-card p {
    color: #a1a1aa;
}

[data-theme="light"] .tech-section .tech-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .tech-section .tech-card:hover .tech-tag {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-primary);
    border-color: rgba(0, 255, 157, 0.3);
}

[data-theme="light"] .tech-section .tech-icon-wrapper {
    background: rgba(0, 255, 157, 0.1);
    color: inherit;
    border: none;
}

[data-theme="light"] .tech-section .tech-card:hover .tech-icon-wrapper {
    background: var(--accent-primary);
    color: #000;
    transform: rotateY(180deg);
}

/* Trusted By Section */
[data-theme="light"] .trusted-by-section {
    background: #050505;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

[data-theme="light"] .trusted-by-section h2 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

[data-theme="light"] .trusted-item {
    background: #0a0a0a;
    border: 1px solid #333;
}

[data-theme="light"] .trusted-item:hover {
    background: #0f0f0f;
    border-color: #fff;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
    z-index: 1;
}

[data-theme="light"] .company-name,
[data-theme="light"] .client-logo {
    color: #ffffff;
}