:root {
            --vn-blue: #46CCF4;
            --vn-violet: #8B5CF6;
            --vn-bg: #FDFBF7;
            --vn-dark: #1e293b; /* Professional Slate for text, not pure black */
        }
        
        body { 
            background-color: var(--vn-bg); 
            font-family: 'Inter', sans-serif; 
            color: var(--vn-dark); 
            overflow-x: hidden; 
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, .font-heading { font-family: 'Outfit', sans-serif;font-style: normal; }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* REPLACING BLACK WITH BRAND GRADIENT */
        .brand-gradient-bg {
            background: linear-gradient(135deg, rgba(70, 204, 244, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(70, 204, 244, 0.2);
        }
        .logo {
          width: 120px;
          height: auto;
        }
        .btn-main {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            color: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px rgba(70, 204, 244, 0.2);
            font-weight: 600;
        }
        .btn-main:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
            filter: brightness(1.1);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 32px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* Nav Correction */
        .nav-height { height: 90px; }
        
        .float { animation: floating 4s ease-in-out infinite; }
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        footer a { transition: color 0.3s ease; }
        footer a:hover { color: var(--vn-blue); }


        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-style: normal; }

        /* STRUCTURED HEADER */
        header {
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(70, 204, 244, 0.1);
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            display: flex;
            align-items: center;
        }

        /* HERO SPACING - Prevents Hiding */
        .main-top-padding { padding-top: 120px; }

        .text-gradient {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-section {
            background: linear-gradient(135deg, rgba(70, 204, 244, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            border-radius: 50px;
        }

        .btn-main {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(70, 204, 244, 0.2);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 20px rgba(139, 92, 246, 0.3); }

        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid white;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-5px);
            border-color: var(--vn-blue);
            box-shadow: 0 20px 40px rgba(70, 204, 244, 0.1);
        }

        .float { animation: floating 4s ease-in-out infinite; }
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Value Icon Circles */
        .value-icon-circle {
            width: 50px; height: 50px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        /* Typewriter Animation - Heading */
        .typed-heading::after {
            content: '|';
            animation: blink 0.7s infinite;
        }
        @keyframes blink { 50% { opacity: 0; } }

        /* 1. Global Reveal State (Kept for other elements, but softened) */
.reveal, .reveal-left, .reveal-right { 
    visibility: visible; 
    opacity: 1; /* Start at 1 to test, then use GSAP to handle the fade */
}

/* 2. The Lottie Fix (CRITICAL) */
lottie-player {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 150px;
    min-height: 150px;
    margin: 0 auto;
    position: relative;
    z-index: 10; /* Keeps it above your background canvas */
}

/* 3. Hero Icon Container Fix */
.hero-icon-container, .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important; /* Prevents the animation from being clipped */
    opacity: 1 !important;
    transform: none !important;
}



        /* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    /* Brand Colors */
    --vn-blue: #46CCF4;
    --vn-violet: #8B5CF6;
    --vn-bg: #FDFBF7;
    --vn-dark: #0F172A;
    --vn-slate: #1E293B;
    
    /* Platform Specific Colors */
    --google-red: #EA4335;
    --meta-blue: #0668E1;
}

body { 
    background-color: var(--vn-bg); 
    font-family: 'Inter', sans-serif; 
    color: var(--vn-slate); 
    margin: 0; 
    overflow-x: hidden;
}

h1, h2, h3, h4 { 
    font-family: 'Outfit', sans-serif; 
    font-style: normal; 
}

/* =========================================
   2. SHARED COMPONENTS (Header & Layout)
   ========================================= */
header {
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(70, 204, 244, 0.1);
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    display: flex; 
    align-items: center;
}

.nav-spacer { height: 80px; }

.text-gradient {
    background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   3. BUTTONS & INTERACTIVES
   ========================================= */
.btn-brand {
    background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
    color: white;
    padding: 18px 36px;
    border-radius: 50px; /* Branding Style */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
}

.btn-ads {
    background: #0F172A;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-ads:hover { transform: scale(1.05); background: #000; }

/* =========================================
   4. SERVICE SPECIFIC CARDS
   ========================================= */

/* Web Dev: Service Cards */
.service-card {
    background: white;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(70, 204, 244, 0.12);
    border-color: var(--vn-blue);
}
.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card:hover .card-img-wrapper img { transform: scale(1.1); }

/* Branding: Feature Cards */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.4s;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

/* Ads: Metric Badges & Steps */
.metric-badge {
    background: #F1F5F9;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--vn-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    margin-bottom: 20px;
}

/* =========================================
   5. UTILITIES & ANIMATIONS
   ========================================= */
.img-mask {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.input-field {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    outline: none;
    transition: 0.3s;
}
.input-field:focus {
    border-color: var(--vn-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(70, 204, 244, 0.1);
}

/* GSAP Reveal Placeholders */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }

 /* Hero Canvas */
        #hero-canvas { pointer-events: none; }

        /* FIXED STACKED DECK LOGIC */
        
.process-container {
    position: relative;
    width: 100%;
}

.deck-card {
    position: sticky;
    top: 10vh; /* This is where the card stops and 'sticks' while you scroll */
    margin-bottom: 5vh;
    background: white;
    z-index: 10;
     box-shadow: 0 50px 100px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(139, 92, 246, 0.1);
            height: 75vh;
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 40px;
}
        /* ADVANCED SERVICE SECTION */
        .service-card {
            background: rgba(255, 255, 255, 0.6);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 30px;
            padding: 40px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: scale(1.05) translateY(-10px);
            background: white;
            border-color: var(--electric-blue);
            box-shadow: 0 30px 60px rgba(70, 204, 244, 0.2);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            opacity: 0; transition: 0.5s;
        }

        .service-card:hover::after { opacity: 1; }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
        }

        .read-more-btn {
            background: linear-gradient(90deg, var(--electric-blue), var(--violet));
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-top: 2rem;
            width: fit-content;
            transition: 0.3s;
        }

        .read-more-btn:hover {
            letter-spacing: 1px;
            box-shadow: 0 10px 20px rgba(70, 204, 244, 0.4);
        }

        /* Marquee */
        .marquee-container {
            background: #000;
            padding: 20px 0;
            transform: rotate(-1deg);
        }

        .service-box {
        background: white;
        border-radius: 40px;
        padding: 45px;
        border: 1px solid rgba(0,0,0,0.05);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service-box:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 40px 80px rgba(70, 204, 244, 0.15);
        border-color: var(--electric-blue);
    }

    .icon-wrapper {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        transition: transform 0.5s ease;
    }

    .service-box:hover .icon-wrapper {
        transform: scale(1.2) rotate(10deg);
    }

    .read-more-link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 900;
        font-size: 0.85rem;
        color: var(--electric-blue);
        letter-spacing: 1px;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .read-more-link:hover {
        color: var(--violet);
        gap: 20px;
    }

    /* Background glow effect for boxes */
    .service-box::before {
        content: '';
        position: absolute;
        top: -50%; left: -50%; width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(70, 204, 244, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .service-box:hover::before {
        opacity: 1;
    }


/* Ensure the player always has a footprint */
dotlottie-player {
    display: block !important;
    margin: 0 auto;
    min-height: 100px; /* Prevents it from collapsing to 0px before load */
    background-color: transparent !important;
}

/* Specific fix for your hero section lottie */
.float dotlottie-player {
    max-width: 100%;
}
dotlottie-player {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    pointer-events: none; /* Allows clicks to pass through to buttons behind it */
}

/* Ensure the 'float' class doesn't clip the animation */
.float {
    overflow: visible !important;
}
.faq-card.active {
    border-color: var(--vn-blue);
    box-shadow: 0 20px 40px rgba(70, 204, 244, 0.05);
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
    color: var(--vn-blue);
}


   :root {
            --vn-blue: #46CCF4;
            --vn-violet: #8B5CF6;
            --vn-bg: #FDFBF7;
            --vn-dark: #334155;
        }
        
        body { 
            background-color: var(--vn-bg); 
            font-family: 'Inter', sans-serif; 
            color: var(--vn-dark); 
            margin: 0; padding: 0;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-style: normal; }

        /* STRUCTURED HEADER */
        header {
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(70, 204, 244, 0.1);
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            display: flex;
            align-items: center;
        }

        .nav-spacer { height: 80px; }

        .text-gradient {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .blog-card {
            background: white;
            border-radius: 24px;
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(70, 204, 244, 0.15);
            border-color: var(--vn-blue);
        }

        .category-tag {
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 100px;
            background: rgba(70, 204, 244, 0.1);
            color: var(--vn-blue);
        }

        .btn-read {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--vn-violet);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }
        .btn-read:hover { gap: 14px; }

        /* Initial reveal states */
        .reveal { opacity: 0; transform: translateY(30px); }

         /* STYLING FOR THE SERVICE DETAIL CARDS */
    .service-detail-card {
        background: white;
        padding: 40px;
        border-radius: 35px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }

    .service-detail-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(70, 204, 244, 0.1);
    }

    .service-number {
        font-family: 'Syncopate', sans-serif;
        font-size: 4rem;
        font-weight: 900;
        opacity: 0.05;
        position: absolute;
        top: 10px;
        right: 20px;
        pointer-events: none;
    }

     .btn-gradient {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(70, 204, 244, 0.3); }

           :root {
            --vn-blue: #46CCF4;
            --vn-violet: #8B5CF6;
            --vn-bg: #FDFBF7;
            --vn-slate: #334155;
        }

        body { 
            background-color: var(--vn-bg); 
            font-family: 'Inter', sans-serif; 
            color: var(--vn-slate);
            margin: 0;
        }

        h1, h2, h3, .font-heading { font-family: 'Outfit', sans-serif; font-style: normal; }

        /* STRUCTURED NAV */
        header {
            height: 85px;
            background: rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(70, 204, 244, 0.1);
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            display: flex;
            align-items: center;
        }

        .main-content { padding-top: 120px; }

        .text-gradient {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* LIGHT BRAND GRADIENT BOX */
        .brand-card {
            background: linear-gradient(135deg, rgba(70, 204, 244, 0.05), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 30px;
        }

        .input-field {
            width: 100%;
            padding: 14px 20px;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            background: white;
            transition: all 0.3s ease;
            outline: none;
        }

        .input-field:focus {
            border-color: var(--vn-blue);
            box-shadow: 0 0 0 4px rgba(70, 204, 244, 0.1);
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--vn-blue), var(--vn-violet));
            color: white;
            padding: 16px 32px;
            border-radius: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(70, 204, 244, 0.2);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
        }

        /* BACKGROUND MOTION */
        #motionCanvas {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            opacity: 0.5;
        }

        .social-icon {
            width: 45px; height: 45px;
            display: flex; align-items: center; justify-content: center;
            background: white;
            border-radius: 12px;
            color: var(--vn-blue);
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }
        .social-icon:hover {
            background: var(--vn-blue);
            color: white;
            transform: translateY(-3px);
        }

 