/* ============================================================
   CODEZATECH — COMPLETE REDESIGN
   Theme: Deep Navy · Cerulean Blue · Cyan Glow
   Font: Roboto (Display) + DM Sans (Body)
   ============================================================ */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}


:root {
    --blue-900: #00030f;
    --blue-800: #041428;
    --blue-700: #071e36;
    --blue-600: #0a2540;
    --blue-500: #0d3460;
    --blue-400: #0e4d8c;
    --blue-300: #0077bd;
    --blue-200: #0ea5e9;
    --blue-100: #38bdf8;
    --blue-50: #7dd3fc;
    --cyan: #06b6d4;
    --white: #f0f9ff;
    --white-dim: rgba(240,249,255,0.7);
    --white-muted: rgba(240,249,255,0.35);
    --card-bg: rgba(7, 30, 54, 0.6);
    --card-border: rgba(14, 165, 233, 0.12);
    --glow: 0 0 40px rgba(14, 165, 233, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--blue-900);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--blue-800); }
::-webkit-scrollbar-thumb { background: var(--blue-300); border-radius: 2px; }

/* ─── CANVAS BACKGROUND ──────────────────────────────────── */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ─── CURSOR ─────────────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.25);
    border: 1.5px solid rgba(14, 165, 233, 0.6);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: screen;
}

body:has(a:hover) .cursor-glow,
body:has(button:hover) .cursor-glow {
    width: 50px; height: 50px;
    background: rgba(14, 165, 233, 0.15);
}

/* ─── LOADER ─────────────────────────────────────────────── */
.loader-screen {
    position: fixed; inset: 0;
    background: var(--blue-900);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader-screen.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-200);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: logoPulse 1s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    from { text-shadow: 0 0 20px rgba(14,165,233,0.5); }
    to { text-shadow: 0 0 50px rgba(14,165,233,0.9), 0 0 80px rgba(6,182,212,0.4); }
}

.loader-bar {
    width: 200px; height: 3px;
    background: rgba(14,165,233,0.15);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-200), var(--cyan));
    border-radius: 2px;
    animation: loaderFill 1.8s ease-in-out forwards;
}

@keyframes loaderFill {
    from { width: 0%; }
    to { width: 100%; }
}

.loader-text {
    color: var(--white-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(2, 12, 27, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(14,165,233,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-brand img { max-height: 60px; object-fit: contain; }

.brand-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
}

.brand-accent { color: var(--blue-200); }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--blue-200);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-nav {
    background: linear-gradient(135deg, var(--blue-300), var(--blue-200));
    color: var(--white) !important;
    text-decoration: none;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 119, 189, 0.35);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ─── SHARED BUTTONS ─────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue-300), var(--blue-200));
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(0,119,189,0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-200), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}


.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(111, 148, 165, 0.5); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white-dim);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(14,165,233,0.25);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: var(--blue-200);
    background: rgba(14,165,233,0.07);
    transform: translateY(-2px);
}

.w-full { width: 100%; justify-content: center; }
.mt-4 { margin-top: 1.5rem; }
.ms2 { margin-left: 0.4rem; }

/* ─── SECTION SHARED ─────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section { padding: 7rem 0; position: relative; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
    display: inline-block;
    color: var(--blue-200);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}

.section-line {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--blue-300), var(--cyan));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.text-blue { color: var(--blue-100); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s),
                transform 0.8s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s),
                transform 0.9s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s);
}

.reveal-up.visible, .reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,119,189,0.25), transparent 70%);
    top: -100px; left: -150px;
}





.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--blue-50);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--cyan); }
    50% { opacity: 0.5; box-shadow: 0 0 3px var(--cyan); }
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.0rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.word-gradient {
    background: linear-gradient(135deg, var(--blue-200), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}


/* ═══════════════════════════════════════════════════════════
   HERO IMAGE — seamless blend with page background
   ═══════════════════════════════════════════════════════════ */

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-scene {
    position: relative;
    width: 100%;
    max-width: 640px;
    animation: heroImgFloat 7s ease-in-out infinite;
    /* No background — completely transparent wrapper */
    background: none;
}

@keyframes heroImgFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-20px); }
}

/* The glow that sits BEHIND the image, matching its own blue atmosphere */
.his-glow {
    position: absolute;
    width: 75%;
    height: 60%;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
        rgba(0, 100, 200, 0.55) 0%,
        rgba(14, 165, 233, 0.3) 35%,
        transparent 70%
    );
    filter: blur(55px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: glowBreath 5s ease-in-out infinite alternate;
}

@keyframes glowBreath {
    from { opacity: 0.75; transform: translateX(-50%) scale(1); }
    to   { opacity: 1;    transform: translateX(-50%) scale(1.1); }
}

/* The image itself — blended so its dark edges vanish into the page */
.his-imgs {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    /* lighten makes dark pixels transparent — perfectly merges black bg */
    
    /* extra glow to match the electric blue halo in the image */
   
}



/* ── Ambient glows behind laptop ─────────────────────────── */
.ms-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}
.ms-glow-center {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0,119,189,0.45) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    animation: ambientPulse 5s ease-in-out infinite alternate;
}
.ms-glow-bottom {
    width: 300px; height: 120px;
    background: radial-gradient(ellipse, rgba(14,165,233,0.3) 0%, transparent 70%);
    bottom: 10px; left: 50%;
    transform: translateX(-50%);
    filter: blur(40px);
}

@keyframes ambientPulse {
    from { opacity: 0.7; transform: translate(-50%,-55%) scale(1); }
    to   { opacity: 1;   transform: translate(-50%,-55%) scale(1.12); }
}

/* ── Service badge cards ─────────────────────────────────── */
.ms-badge {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: rgba(5, 18, 38, 0.85);
    border: 1px solid rgba(14,165,233,0.25);
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    min-width: 95px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5),
                0 0 0 1px rgba(14,165,233,0.08),
                inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.3s ease;
    cursor: default;
}
.ms-badge:hover {
    border-color: rgba(14,165,233,0.5);
    box-shadow: 0 12px 40px rgba(14,165,233,0.2), 0 0 0 1px rgba(14,165,233,0.15);
    transform: translateY(-5px) scale(1.04) !important;
}

.ms-badge-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,119,189,0.3), rgba(14,165,233,0.15));
    border: 1px solid rgba(14,165,233,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-200);
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(14,165,233,0.5));
}

.ms-badge span {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(240,249,255,0.75);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.ms-badge-tl { top: 5%;  left: 0%;  animation: badgeF1 5.2s ease-in-out infinite; }
.ms-badge-tr { top: 5%;  right: 0%; animation: badgeF2 5.8s ease-in-out infinite; }
.ms-badge-bl { top: 58%; left: 0%;  animation: badgeF1 6.4s ease-in-out infinite 0.6s; }
.ms-badge-br { top: 72%; right: 0%; animation: badgeF2 4.9s ease-in-out infinite 0.3s; }

@keyframes badgeF1 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}
@keyframes badgeF2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(9px); }
}

/* ── Laptop shell ─────────────────────────────────────────── */
.laptop {
    position: absolute;
    z-index: 5;
    width: 370px;
    left: 50%; top: 5%;
    transform: translateX(-50%);
    perspective: 1200px;
}

/* ── Lid / Screen ─────────────────────────────────────────── */
.laptop-lid {
    width: 100%;
    background: linear-gradient(160deg, #1a2535 0%, #0d1825 60%, #060e18 100%);
    border-radius: 14px 14px 4px 4px;
    padding: 8px;
    border: 1.5px solid rgba(14,165,233,0.15);
    border-bottom: none;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.8),
        0 -4px 30px rgba(14,165,233,0.12),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
}

.laptop-bezel {
    background: #040d18;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-top: 3px;
}

.laptop-cam {
    width: 6px; height: 6px;
    background: #1a2535;
    border-radius: 50%;
    margin: 4px auto 3px;
    border: 1px solid rgba(14,165,233,0.1);
    position: relative;
    z-index: 2;
}
.laptop-cam::after {
    content: '';
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(14,165,233,0.3);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}

/* ── Screen content ──────────────────────────────────────── */
.laptop-screen {
    background: linear-gradient(160deg, #020c1e 0%, #040f22 50%, #020a1a 100%);
    min-height: 200px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* mini navbar */
.ls-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: rgba(3,10,24,0.9);
    border-bottom: 1px solid rgba(14,165,233,0.08);
}
.ls-logo {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.5rem; font-weight: 700; color: #fff;
}
.ls-logo i { color: var(--blue-200); font-size: 0.55rem; }
.ls-nav-links {
    display: flex; gap: 8px;
}
.ls-nav-links span { font-size: 0.38rem; color: rgba(255,255,255,0.5); }
.ls-btn {
    background: var(--blue-300);
    color: #fff; font-size: 0.38rem; font-weight: 700;
    padding: 2px 6px; border-radius: 3px;
}

/* screen body */
.ls-body {
    display: flex;
    align-items: center;
    padding: 12px 10px 10px;
    gap: 8px;
    min-height: 155px;
}

.ls-left { flex: 1.1; }
.ls-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem; font-weight: 800;
    color: #fff; line-height: 1.25;
    margin-bottom: 5px;
}
.ls-heading span { color: var(--blue-100); }
.ls-sub {
    font-size: 0.35rem; color: rgba(255,255,255,0.45);
    line-height: 1.6; margin-bottom: 8px; max-width: 110px;
}
.ls-cta {
    display: inline-block;
    background: var(--blue-300);
    color: #fff; font-size: 0.38rem; font-weight: 700;
    padding: 3px 8px; border-radius: 3px;
}

/* planet / orb on screen right */
.ls-right {
    flex: 0.9;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    height: 130px;
}

.ls-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(14,165,233,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,0.07) 1px, transparent 1px);
    background-size: 14px 14px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.ls-planet {
    position: relative; z-index: 2;
    width: 65px; height: 65px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%,
        #1a6ab5 0%, #0d4a8c 35%, #071e3d 70%, #020a1a 100%);
    box-shadow:
        0 0 30px rgba(14,165,233,0.55),
        0 0 60px rgba(14,165,233,0.2),
        inset -8px -8px 20px rgba(0,0,0,0.5),
        inset 5px 5px 12px rgba(14,165,233,0.15);
    animation: planetGlow 4s ease-in-out infinite alternate;
}

@keyframes planetGlow {
    from { box-shadow: 0 0 25px rgba(14,165,233,0.5), 0 0 50px rgba(14,165,233,0.15); }
    to   { box-shadow: 0 0 45px rgba(14,165,233,0.8), 0 0 90px rgba(14,165,233,0.3); }
}

.ls-planet-ring {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(14,165,233,0.25);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(1.35);
}
.ls-planet-glow {
    position: absolute;
    width: 100%; height: 30%;
    bottom: -5px; left: 0;
    background: radial-gradient(ellipse, rgba(14,165,233,0.6), transparent 65%);
    filter: blur(6px);
    border-radius: 50%;
}

/* scan line over screen */
.ls-scanline {
    position: absolute; inset: 0; z-index: 3;
    background: repeating-linear-gradient(
        180deg,
        transparent,
        transparent 2px,
        rgba(14,165,233,0.015) 2px,
        rgba(14,165,233,0.015) 4px
    );
    pointer-events: none;
}

/* ── Base / keyboard ─────────────────────────────────────── */
.laptop-base {
    width: 100%;
    background: linear-gradient(180deg, #1c2a3a 0%, #0f1e2e 100%);
    border-radius: 0 0 10px 10px;
    border: 1.5px solid rgba(14,165,233,0.12);
    border-top: 2px solid rgba(14,165,233,0.08);
    padding: 8px 14px 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.laptop-keyboard {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 4px 6px 3px;
}

.lk-row {
    display: flex;
    gap: 2px;
    justify-content: center;
}
.lk-row span {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 1.5px;
    border: 1px solid rgba(255,255,255,0.04);
    max-width: 22px;
}
.lk-spacebar {
    display: flex; justify-content: center; margin-top: 2px;
}
.lk-spacebar span {
    width: 45%; height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 1.5px;
    border: 1px solid rgba(255,255,255,0.04);
}

.laptop-trackpad {
    width: 60px; height: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    margin: 4px auto 0;
}

/* ── Ground shadow ───────────────────────────────────────── */
.laptop-shadow {
    width: 85%; height: 8px;
    background: radial-gradient(ellipse, rgba(14,165,233,0.25), transparent 70%);
    filter: blur(8px);
    margin: 6px auto 0;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 40px;
    border: 2px solid rgba(14,165,233,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-cue-inner {
    width: 4px; height: 8px;
    background: var(--blue-200);
    border-radius: 2px;
    animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ─── MARQUEE STRIP ──────────────────────────────────────── */
.marquee-strip {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(14,165,233,0.1);
    border-bottom: 1px solid rgba(14,165,233,0.1);
    background: rgba(4, 20, 40, 0.5);
    padding: 1rem 0;
    z-index: 1;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-track span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-muted);
}

.marquee-track .dot {
    color: var(--blue-300);
    font-size: 0.5rem;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-section {
    background: rgba(4, 20, 40, 0.3);  }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(6,182,212,0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover { transform: translateY(-8px); border-color: rgba(14,165,233,0.35); box-shadow: 0 20px 60px rgba(14,165,233,0.12); }
.service-card:hover::before { opacity: 1; }

.sc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.sc-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(0,119,189,0.3), rgba(14,165,233,0.15));
    border: 1px solid rgba(14,165,233,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-100);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.service-card:hover .sc-icon {
    background: linear-gradient(135deg, var(--blue-300), var(--blue-200));
    color: #fff;
    box-shadow: 0 0 20px rgba(14,165,233,0.4);
}

.sc-num {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(14,165,233,0.08);
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .sc-num { color: rgba(14,165,233,0.18); }

.service-card h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.sc-tags span {
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.15);
    color: var(--blue-50);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(14,165,233,0.2);
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .sc-arrow {
    background: linear-gradient(135deg, var(--blue-300), var(--blue-200));
    border-color: transparent;
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(14,165,233,0.4);
}


/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section{
     background: rgba(4, 20, 40, 0.3);;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-desc {
    color: var(--white-dim);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.about-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(14,165,233,0.07);
    border: 1px solid rgba(14,165,233,0.15);
    color: var(--blue-50);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-badges span:hover {
    background: rgba(14,165,233,0.15);
    border-color: rgba(14,165,233,0.35);
}

.about-badges i { color: var(--blue-200); font-size: 0.8rem; }

/* Process Steps */
.process-steps { display: flex; flex-direction: column; gap: 1.2rem; }

.ps-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.ps-step:hover { border-color: rgba(14,165,233,0.3); transform: translateX(5px); }

.ps-num {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-300);
    line-height: 1;
    min-width: 40px;
}

.ps-content h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.ps-content p {
    color: var(--white-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}


.projects-section {
    background: transparent;
}
*{box-sizing:border-box;margin:0;padding:0}

/* Base structural layout wrapper - standard desktop */
.wrap{padding:4rem 10rem;font-family:'DM Sans',system-ui,sans-serif;max-width:1440px;margin:0 auto}
.tab-bar{display:flex;gap:0.5rem;margin-bottom:2.5rem;background:rgba(14,165,233,0.06);border:1px solid rgba(14,165,233,0.12);border-radius:14px;padding:5px;width:fit-content}
.tab-btn{padding:0.55rem 1.4rem;border-radius:10px;border:none;background:transparent;color:rgba(240,249,255,0.5);font-size:0.85rem;font-weight:600;letter-spacing:0.5px;cursor:pointer;transition:all 0.25s;font-family:inherit}
.tab-btn.active{background:rgba(14,165,233,0.18);color:#7dd3fc;border:1px solid rgba(14,165,233,0.3)}
.tab-btn:hover:not(.active){color:rgba(240,249,255,0.8)}
.tab-panel{display:none}.tab-panel.active{display:block}

/* UI/UX grid - 3 Columns on desktop */
.uiux-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.uiux-card{background:rgba(15,23,42,0.7);border:1px solid rgba(14,165,233,0.13);border-radius:18px;overflow:hidden;transition:border-color 0.3s,transform 0.3s;cursor:pointer;text-decoration:none;display:block}
.uiux-card:hover{border-color:rgba(14,165,233,0.35);transform:translateY(-4px)}
.uiux-thumb{height:180px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.thumb-bike{background:linear-gradient(145deg,#0c1f3a,#0e3460)}
.thumb-gym{background:linear-gradient(145deg,#0c1f3a,#1a1060)}
.thumb-med{background:linear-gradient(145deg,#0c1f3a,#003a30)}
.thumb-icon{font-size:3rem;opacity:0.9;filter:drop-shadow(0 0 16px rgba(14,165,233,0.5));animation:float 3s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.thumb-label{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);font-size:0.6rem;letter-spacing:3px;font-weight:700;color:rgba(240,249,255,0.35);white-space:nowrap;text-transform:uppercase}
.uiux-body{padding:1.2rem}
.uiux-tag{display:inline-block;font-size:0.65rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#38bdf8;background:rgba(14,165,233,0.1);border:1px solid rgba(14,165,233,0.2);border-radius:50px;padding:0.2rem 0.65rem;margin-bottom:0.6rem}
.uiux-name{font-size:1rem;font-weight:800;color:#f0f9ff;margin-bottom:0.4rem;line-height:1.2}
.uiux-desc{font-size:0.78rem;color:rgba(240,249,255,0.45);line-height:1.6;margin-bottom:1rem}
.uiux-link{display:inline-flex;align-items:center;gap:0.4rem;font-size:0.78rem;font-weight:700;color:#38bdf8;text-decoration:none;transition:gap 0.2s}
.uiux-link:hover{gap:0.7rem}
.uiux-link svg{width:13px;height:13px}

/* Full Stack grid - 2 Columns on desktop */
.fs-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.fs-card{background:rgba(15,23,42,0.7);border:1px solid rgba(14,165,233,0.13);border-radius:18px;overflow:hidden;transition:border-color 0.3s,transform 0.3s}
.fs-card:hover{border-color:rgba(14,165,233,0.35);transform:translateY(-4px)}

/* Slider Layout rules */
.fs-slider{position:relative;width:100%;height:200px;overflow:hidden;background:#070d19}
.fs-slides{display:flex;height:100%;transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1)}
.fs-slide-container{min-width:100%;height:300px;position:relative;overflow:hidden}
.fs-slide{width:100%;height:100%;object-fit:cover;display:block}
.fs-slide-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent, rgba(15,23,42,0.95));padding:1.5rem 1rem 0.6rem;color:rgba(240,249,255,0.8);font-size:0.72rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;text-align:center}

/* Slider controls */
.fs-prev,.fs-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(15,23,42,0.65);backdrop-filter:blur(4px);border:1px solid rgba(14,165,233,0.25);color:#38bdf8;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;transition:all 0.2s;padding:0}
.fs-prev:hover,.fs-next:hover{background:#38bdf8;color:#0f172a;border-color:#38bdf8}
.fs-prev{left:12px}
.fs-next{right:12px}
.fs-prev svg,.fs-next svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.5;flex-shrink:0}

/* Dots */
.fs-dots{position:absolute;bottom:35px;left:50%;transform:translateX(-50%);display:flex;gap:6px;z-index:10}
.fs-dot{width:6px;height:6px;border-radius:50%;background:rgba(240,249,255,0.3);border:none;padding:0;cursor:pointer;transition:all 0.2s}
.fs-dot.active{background:#38bdf8;transform:scale(1.3)}

/* Card body */
.fs-body{padding:1.4rem}
.fs-tag{display:inline-block;font-size:0.65rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#38bdf8;background:rgba(14,165,233,0.1);border:1px solid rgba(14,165,233,0.2);border-radius:50px;padding:0.2rem 0.65rem;margin-bottom:0.7rem}
.fs-name{font-size:1.1rem;font-weight:800;color:#f0f9ff;margin-bottom:0.5rem}
.fs-desc{font-size:0.82rem;color:rgba(240,249,255,0.45);line-height:1.65;margin-bottom:1.1rem}
.fs-pills{display:flex;gap:0.4rem;flex-wrap:wrap;margin-bottom:1.1rem}
.fs-pill{font-size:0.68rem;font-weight:600;color:rgba(240,249,255,0.5);background:rgba(14,165,233,0.07);border:1px solid rgba(14,165,233,0.15);border-radius:50px;padding:0.18rem 0.6rem}
.fs-actions{display:flex;gap:0.7rem}
.fs-btn{display:inline-flex;align-items:center;gap:0.4rem;font-size:0.78rem;font-weight:700;padding:0.5rem 1rem;border-radius:8px;text-decoration:none;transition:all 0.2s;font-family:inherit;cursor:pointer;border:none}
.fs-btn-primary{background:rgba(14,165,233,0.15);color:#38bdf8;border:1px solid rgba(14,165,233,0.3)}
.fs-btn-primary:hover{background:rgba(14,165,233,0.25)}
.fs-btn-ghost{background:transparent;color:rgba(240,249,255,0.4);border:1px solid rgba(255,255,255,0.08)}
.fs-btn-ghost:hover{color:rgba(240,249,255,0.7);border-color:rgba(255,255,255,0.15)}
.fs-btn svg{width:13px;height:13px}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Tablets and Mobile Devices)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .wrap {
        padding: 3rem 4rem; /* Lower screen container side spacing */
    }
    .uiux-grid {
        grid-template-columns: repeat(2, 1fr); /* Step down UI/UX cards to 2 columns on tablets */
    }
}

@media screen and (max-width: 768px) {
    .wrap {
        padding: 2rem 1.5rem; /* Clean edge boundaries for phones */
    }
    .uiux-grid, .fs-grid {
        grid-template-columns: 1fr; /* Force single column stacks for both components */
        gap: 1.25rem;
    }
    .tab-bar {
        width: 100%; /* Expand switcher to use mobile viewport widths seamlessly */
        justify-content: center;
    }
    .tab-btn {
        flex: 1; /* Match balance between tab toggles uniformly */
        text-align: center;
        padding: 0.6rem 1rem;
    }
}
/* --- Contact Section --- */
.contact-section {
  padding: 6rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

/* --- Left Side --- */
.contact-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0.8rem 0 1rem;
}

.contact-desc {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-200);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.72rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.ci-val {
  color: var(--white-dim);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Right Side: Form Card --- */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 249, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(14, 165, 233, 0.07);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}

/* --- Submit Button --- */
.btn-submit {
  width: 100%;
  padding: 0.95rem 2rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- Success Message --- */
.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--blue-100);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--cyan);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.75rem;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    border-top: 1px solid rgba(14,165,233,0.1);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand p {
    color: var(--white-muted);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--blue-200); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14,165,233,0.07);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    color: var(--white-muted);
    font-size: 0.82rem;
}

.footer-tagline {
    color: var(--blue-200) !important;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem !important;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-socials a {
    color: var(--white-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(14,165,233,0.15);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover {
    color: var(--blue-200);
    border-color: var(--blue-200);
    background: rgba(14,165,233,0.08);
}



/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .project-feature { grid-template-columns: 1fr; gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}






@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-stats { gap: 1rem; }
    .container { padding: 0 1.2rem; }
    .contact-form { padding: 1.5rem; }
}


.form-success{
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #00ff88;
    font-weight: 600;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    animation: wa-pulse 2.2s ease-in-out infinite;
    transition: transform 0.2s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.12);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #25D366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wa-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.09); }
}

/* ── WhatsApp Floating Button – Style 3 Dark + Ring ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    animation: wa-ring 2s ease-out infinite;
    transition: transform 0.2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #25D366;
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #111;
    color: #25D366;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #111;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wa-ring {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   CLEAN MOBILE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .hero-content { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 320px; 
        margin-top: 2rem;
    }
    
    .laptop {
        position: absolute;
        width: 100%;       
        max-width: 290px;  
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .hero-img-scene { 
        max-width: 380px; 
        margin: 0 auto; 
    }

    .nav-toggle { 
        display: flex; 
    }
.nav-links {
        position: fixed;
        top: 0; 
        right: -100%;                  /* Kept hidden cleanly off-screen */
        width: 280px; 
        height: 100vh;
        background: rgba(2, 12, 27, 0.98);
        display: flex;                  /* Forces vertical layout stacking */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;        /* Aligns links neatly to the left edge */
        gap: 1.5rem;
        padding: 8rem 2rem 2rem 2rem;   /* Top padding ensures items clear the header */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(14, 165, 233, 0.1);
        backdrop-filter: blur(20px);
        z-index: 99999;                 /* Places the menu wrapper safely above everything else */
    }

    .nav-links.open { 
        right: 0; 
    }

    .services-grid { 
        grid-template-columns: 1fr; 
    }

    .contact-wrapper { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }

    .form-row { 
        grid-template-columns: 1fr; 
    }

    .project-feature { 
        padding: 2rem; 
    }

    .hero { 
        padding: 8rem 0 4rem;
        text-align: center; 
    }
  
    .btn-ghost {
        margin-top: 10px !important;
    }

    .section { 
        padding: 4rem 0; 
    }

    .laptop-screen {
        min-height: 150px; 
    }

    .ls-body {
        min-height: 110px;
    }

    .ls-planet {
        width: 45px;
        height: 45px;      
    }

    .ms-badge {
        display: none !important;
    }

    .whatsapp-float {
        position: fixed !important; 
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        z-index: 99999; 
    }
}

@media (max-width: 480px) {
    .hero-cta { 
        flex-direction: column; 
    }
    .hero-stats { 
        gap: 1rem; 
    }
    .container { 
        padding: 0 1.2rem; 
    }
    .contact-form { 
        padding: 1.5rem; 
    }
}
