:root {
    --color-primary: #0047FF;
    --color-bg: #080A12;
    --color-surface: #12141D;
    --color-text: #FFFFFF;
    --color-text-muted: #8E93A6;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-primary-glow: rgba(0, 71, 255, 0.25);
    
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

[data-theme="light"] {
    --color-bg: #F5F7FF;
    --color-surface: #FFFFFF;
    --color-text: #0D1020;
    --color-text-muted: #4A4D5E;
    --color-border: rgba(13, 16, 32, 0.1);
    --color-primary-glow: rgba(0, 71, 255, 0.15);
}

[data-theme="light"] .visual-card {
    background: #0D1020 !important;
    border-color: rgba(0,71,255,0.3) !important;
}

[data-theme="light"] .visual-header {
    background: rgba(0,0,0,0.4) !important;
}

[data-theme="light"] .navbar {
    background: transparent;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(13, 16, 32, 0.92) !important;
    backdrop-filter: blur(12px);
}

[data-theme="light"] .hero-grid {
    background-image: none;
    background: transparent;
}

.noise-overlay {
    opacity: 0.8;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
}

.navbar {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 10, 18, 0.95) !important;
}

.bg-darker {
    background-color: rgba(0,0,0,0.3);
}

.visual-card {
    height: 320px;
    min-height: unset;
    background: #0D1020 !important;
    border: 1px solid rgba(0,71,255,0.25) !important;
}

.hero-grid {
    background-image: none;
    background: transparent;
}

.footer {
    background-color: transparent;
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.theme-toggle-btn:hover {
    color: var(--color-primary);
}

.moon-icon {
    display: none;
}
.sun-icon {
    display: block !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
body, body *, a, button {
    cursor: none !important;
}

/* Typography elements */
.heading-1 { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; font-weight: 800; }
.heading-2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.2; font-weight: 800; }
.heading-3 { font-family: var(--font-heading); font-size: 1.2rem; line-height: 1.3; font-weight: 800; }
.heading-4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; }
.text-primary { color: var(--color-primary); }
.text-gray { color: var(--color-text-muted); }
.body-large { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-center { text-align: center; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; }
.section-padding { padding: 8rem 0; }
.bg-darker { background-color: rgba(0, 71, 255, 0.03); }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-4 { margin-bottom: 1rem; }
.w-full { width: 100%; }
.max-w-lg { max-width: 800px; }
.max-w-md { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.gap-16 { gap: 4rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.inline-block { display: inline-block; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Grids */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2x2 { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, auto); }

/* Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.3"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 10;
    opacity: 0.15;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(0, 71, 255, 0.8);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.cursor-hover {
    width: 48px; height: 48px;
    background-color: var(--color-primary-glow);
}

/* Animations (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}
.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 20px var(--color-primary-glow);
}
.btn-primary:hover {
    background-color: #0036cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-primary-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}
.btn-ghost:hover {
    background: var(--color-surface);
    border-color: var(--color-text-muted);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary-glow);
}
.inline-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: opacity 0.3s ease;
}
.inline-link:hover { opacity: 0.8; }

/* Eyebrow & Badges */
.eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.chip {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Glass Panels */
.glass-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.glass-panel:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(245, 247, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links a.active {
    color: #0047FF;
    text-decoration: underline;
    text-decoration-color: #0047FF;
    text-underline-offset: 4px;
}
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--color-text); transition: 0.3s; }
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--color-bg); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; color: var(--color-text); text-decoration: none; }
.mobile-menu a.active { color: #0047FF; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #0047FF; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
    overflow: hidden;
}
.hero-grid {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: none;
    background: transparent;
    z-index: 0;
}
.hero-orb {
    position: absolute;
    width: 400px; height: 400px;
    background: var(--color-primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
}
.orb-left { top: -100px; left: -100px; animation: float 10s ease-in-out infinite; }
.orb-right { bottom: 100px; right: 0; animation: float 14s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 40px); }
}

.hero-content {
    display: flex; align-items: center; justify-content: space-between; gap: 4rem; z-index: 2; width: 100%;
}
.hero-left { flex: 1; }
.hero-right { flex: 1; }
.social-proof { display: flex; gap: 3rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.proof-label { font-size: 0.875rem; color: var(--color-text-muted); }

/* Floating Card Visual */
.floating-visual { position: relative; width: 100%; height: 450px; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.visual-card {
    width: 80%;
    height: auto !important;
    min-height: unset !important;
    background: #0D1020 !important;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-primary-glow); border-radius: 12px;
    transform: rotateY(-15deg) rotateX(10deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), -10px -10px 40px rgba(0, 71, 255, 0.1);
    animation: floating 6s ease-in-out infinite;
    overflow: visible; z-index: 2;
}
.visual-header { padding: 1rem; border-bottom: 1px solid var(--color-border); background: rgba(0,0,0,0.3); }
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--color-border); }
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }
.visual-body {
    padding: 1.5rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.visual-code-line {
    display: block;
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: nowrap;
}
.w-3\/4 { width: 75%; } .w-5\/6 { width: 83%; } .w-1\/2 { width: 50%; }
.visual-glow { position: absolute; width: 60%; height: 60%; background: var(--color-primary); filter: blur(80px); opacity: 0.3; z-index: 1; pointer-events: none; }

@keyframes floating { 0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); } 50% { transform: rotateY(-15deg) rotateX(10deg) translateY(-20px); } }

/* Marquee Ticker */
.marquee-bar {
    width: 105%;
    left: -2.5%;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1.25rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    z-index: 10;
    position: relative;
    transform: rotate(-2deg);
    margin-top: 3vw;
    margin-bottom: 3vw;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-marquee 6s linear infinite;
    flex-shrink: 0;
}
.marquee-content span:not(.marquee-divider) {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.marquee-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2.5rem;
    font-size: 0.9rem;
}

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

/* Services */
.icon-box { font-size: 2.5rem; margin-bottom: 1rem; }

/* Work */
.work-image {
    height: 380px; background: var(--color-surface); border-radius: 8px; margin-bottom: 1.5rem; position: relative; overflow: hidden;
    touch-action: pan-y;
}
.scroll-img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 5s ease-in-out;
    transform: translateY(0);
}
.work-card:hover .scroll-img {
    transform: translateY(calc(-100% + 380px));
}
.image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); pointer-events: none; }
.tag { font-size: 0.75rem; padding: 0.2rem 0.6rem; border: 1px solid var(--color-border); border-radius: 50px; margin-right: 0.5rem; color: var(--color-text-muted); }


.pillar-card { display: flex; gap: 1.5rem; align-items: flex-start; }
.pillar-card .icon-box { background: var(--color-primary-glow); width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; padding: 0; margin-bottom: 0; flex-shrink: 0;}

/* Why Choose Us Block */
.why-choose-us {
    background: linear-gradient(90deg, #020B2D 0%, #0A1A4A 100%);
    position: relative;
    overflow: hidden;
}
.pattern-rings {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    overflow: hidden;
    pointer-events: none;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}
.pattern-rings::before {
    content: '';
    position: absolute;
    top: 100px; bottom: 100px; left: 100px; right: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.pattern-rings::after {
    content: '';
    position: absolute;
    top: 200px; bottom: 200px; left: 200px; right: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
}
.why-choose-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
.why-choose-left {
    flex: 1;
}
.why-choose-right {
    flex: 2.2;
}
.text-highlight {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0 0.5rem;
    border-radius: 8px;
    display: inline-block;
}
.text-white {
    color: var(--color-text) !important;
}
.text-white-opacity {
    color: var(--color-text-muted) !important;
}

.why-choose-us .text-white, .cta-banner-section .text-white, .footer .text-white {
    color: #ffffff !important;
}
.why-choose-us .text-white-opacity, .cta-banner-section .text-white-opacity, .footer .text-white-opacity {
    color: rgba(255, 255, 255, 0.8) !important;
}
.benefit-item {
    display: flex;
    flex-direction: column;
}
.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials-left {
    padding-right: 2rem;
}
.testimonials-right {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1rem 0;
}
.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: -1.5rem !important;
    position: relative;
    z-index: 1;
}
.testimonial-card:first-child {
    margin-top: 0 !important;
    transform: scale(0.95) translateY(1rem);
}
.testimonial-card.highlight-card {
    border-left: 4px solid var(--color-primary);
    transform: translateX(-15px) scale(1);
    box-shadow: -10px 20px 40px rgba(0, 71, 255, 0.15);
    z-index: 3;
}

.testimonial-card:last-child {
    transform: scale(0.95) translateY(-1rem);
    z-index: 2;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-user .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.quote-icon {
    opacity: 0.6;
}
.btn-rounded {
    border-radius: 50px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

@media (max-width: 992px) {
    .why-choose-grid {
        flex-direction: column;
    }
    .testimonials-right {
        margin-top: 3rem;
    }
    .testimonial-card {
        margin-top: 1rem !important;
    }
    .testimonial-card:first-child {
        transform: scale(1) translateY(0);
        margin-top: 0 !important;
    }
    .testimonial-card.highlight-card {
        transform: translateX(0) scale(1);
    }
    .testimonial-card:last-child {
        transform: scale(1) translateY(0);
    }
    .testimonials-left {
        padding-right: 0;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-bg);
}
.faq-container {
    border-top: 1px solid var(--color-border);
}
.accordion-item {
    border-bottom: 1px solid var(--color-border);
}
.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}
.accordion-header:hover {
    color: var(--color-primary);
}
.accordion-item.active .accordion-header {
    color: var(--color-primary);
}
.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}
.accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content p {
    padding-bottom: 1.5rem;
}

/* CTA Section */
.cta-banner-section {
    background: linear-gradient(90deg, #020B2D 0%, #0A1A4A 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    width: 100%;
}
.cta-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}
.cta-banner-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 2rem;
    position: relative;
    z-index: 10;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.cta-banner-section .btn-white {
    background: #ffffff;
    color: #0D1020;
    font-weight: 700;
}
.cta-banner-section .btn-white:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}
.cta-banner-section .eyebrow {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}
.cta-banner-section .heading-2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.2;
}
.cta-banner-section .btn-pill {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 0.75rem 2.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.cta-banner-section .btn-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* CTA Shapes */
.cta-banner-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-banner-section {
        height: auto;
        padding: 3rem 0;
    }
    .cta-banner-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .cta-banner-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
    .cta-banner-shapes {
        opacity: 0.2;
        width: 100%;
    }
}



/* Footer */
.footer {
    background-color: rgba(0, 71, 255, 0.03);
}
.footer-links ul { list-style: none; }
.footer-links a, .footer-contact a { color: var(--color-text-muted); text-decoration: none; display: block; margin-bottom: 0.75rem; transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover:not(.text-primary) { color: var(--color-text); }

/* Process Section (Desktop) */
.process-steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 2rem;
}
.process-line {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    z-index: 1;
}
.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.process-content {
    display: flex;
    flex-direction: column;
}

/* Fix CTA alignment */
.cta-banner-content {
    text-align: center;
}
.cta-banner-content .flex {
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-content { flex-direction: column; text-align: center; margin-top: 2rem;}
    .hero-right { width: 100%; margin-top: 3rem;}
    .social-proof { justify-content: center; }
}

@media (max-width: 768px) {
    .why-choose-right.grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .process-line {
        top: 0;
        bottom: 0;
        left: 24px;
        width: 1px;
        height: 100%;
        background: rgba(255, 255, 255, 0.15);
    }

    .process-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        gap: 1.5rem;
    }

    .process-number {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links, .nav-btn { display: none; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .cta-form { flex-direction: column; }
    .cta-form .btn { margin-left: 0; margin-top: 1rem; width: 100%; }
    .cta-alternatives { flex-direction: column; }
    .heading-1 { font-size: 2.5rem; }
    .heading-2 { font-size: 2rem; }
}

/* Forms — Dropdowns */
select {
    background-color: #0D1020 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
select option {
    background-color: #0D1020 !important;
    color: #ffffff !important;
}
[data-theme="light"] select {
    background-color: #ffffff !important;
    color: #0D1020 !important;
    border: 1px solid rgba(13, 16, 32, 0.2);
}
[data-theme="light"] select option {
    background-color: #ffffff !important;
    color: #0D1020 !important;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0047FF;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 71, 255, 0.4);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background-color: #0036cc;
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

/* Light Mode Text Color Overrides */
[data-theme="light"] .heading-1,
[data-theme="light"] .heading-2,
[data-theme="light"] .heading-3,
[data-theme="light"] .heading-4 {
    color: #0D1020 !important;
}

[data-theme="light"] p,
[data-theme="light"] .body-large,
[data-theme="light"] .text-gray {
    color: #4A4D5E !important;
}

/* Theme Toggle Styles */
.sun-icon { display: block; }
.moon-icon { display: none; }

[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

.process-step .step-number, .process-step span {
    color: #ffffff !important;
}

[data-theme="light"] .testimonial-card *,
[data-theme="light"] .glass-panel * {
    color: #0D1020 !important;
}

/* Dark sections always have white text — both light & dark mode */
.why-choose-us *,
.cta-banner-section * {
    color: #ffffff !important;
}

/* Explicit light-mode reinforcement for dark sections */
[data-theme="light"] .why-choose-us *,
[data-theme="light"] .cta-banner-section * {
    color: #ffffff !important;
}

[data-theme="light"] .visual-card {
    background: #0D1020 !important;
    border-color: rgba(0,71,255,0.3) !important;
}

[data-theme="light"] .visual-card * {
    color: inherit !important;
}

[data-theme="light"] .marquee-bar * {
    color: #ffffff !important;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 767px) {
    .hero {
        min-height: unset !important;
        height: auto !important;
        padding-top: 8rem !important;
        padding-bottom: 3rem !important;
    }
    .hero-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .hero-left {
        width: 100% !important;
        flex: 1 1 100% !important;
        padding-top: 0 !important;
        margin-top: 1rem !important;
    }
    .hero-actions {
        gap: 1.5rem !important;
    }
    .hero-right {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .marquee-bar {
        width: 100vw !important;
        left: 0 !important;
        transform: none !important;
        overflow: hidden !important;
        position: relative !important;
    }
    .marquee-content {
        display: inline-flex !important;
        white-space: nowrap !important;
        animation: scroll-marquee 25s linear infinite !important;
        min-width: max-content !important;
    }
    .marquee-content span {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .terms-content, .privacy-content {
        padding: 2rem 1rem !important;
    }
    .terms-content h2, .terms-content h3, .privacy-content h2, .privacy-content h3 {
        font-size: 1.2rem !important;
        word-break: break-word !important;
    }
    .terms-content p, .terms-content li, .privacy-content p, .privacy-content li {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    /* Navbar padding */
    .navbar {
        padding: 0.6rem 0 !important;
    }

    /* Scroll buttons (Mobile only) */
    .card-scroll-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(0, 71, 255, 0.7);
        border: none;
        color: white;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 8px;
        z-index: 10;
        cursor: pointer;
    }
    
    .scroll-btn-up { top: 15px; }
    .scroll-btn-down { bottom: 15px; }

    .image-overlay {
        display: none !important;
    }

    /* Project image container scroll on mobile */
    .work-image {
        overflow-y: auto !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch;
    }
    .scroll-img {
        height: auto !important;
        min-height: 100%;
        display: block;
    }
    /* Hide scrollbar but keep functionality */
    .work-image::-webkit-scrollbar {
        display: none;
    }
    .work-image {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Horizontal scroll fixes */
    .marquee-bar {
        width: 100% !important;
        transform: none !important;
    }

    .hero-content {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }

    .container {
        padding: 0 1rem !important;
        width: 100% !important;
    }

    .cta-banner-shapes {
        display: none !important;
    }

    .why-choose-card, .why-choose-grid {
        width: 100% !important;
        overflow: hidden !important;
    }

    /* Navbar/Hero spacing */
    .hero {
        padding-top: 7rem;
    }

    /* Hero card text overflow */
    .floating-visual {
        height: auto;
        width: 100%;
    }
    .visual-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        transform: none !important;
        animation: none !important;
        height: auto !important;
        min-height: unset !important;
    }
    .visual-body {
        padding: 0.8rem 1rem !important;
    }
    .visual-code-line {
        font-size: 0.72rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* About collage section fixes and reordering */
    .about-collage-section .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .about-collage-section .about-content {
        order: 1 !important; /* Text second */
        width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }
    .about-collage-section .about-images {
        order: -1 !important; /* Image first */
        width: 100% !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto 1.5rem auto !important;
    }
    /* Select the specific wrapper div for the circular image */
    .about-collage-section .about-images > div > div:first-child {
        width: 300px !important;
        height: 300px !important;
    }
    /* Circular image sizing */
    .about-collage-section .about-images img {
        width: 300px !important;
        height: 300px !important;
    }
    /* Stats badge positioning */
    .about-collage-section .about-images div[style*="position: absolute"] {
        position: absolute !important;
        bottom: 0px !important;
        right: 0px !important;
        transform: none !important;
        z-index: 20 !important;
    }
}
