/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --bg-dark: #040814;
    --bg-card: rgba(13, 20, 32, 0.45);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(0, 212, 255, 0.15);
    --logo-border: rgba(255, 255, 255, 0.025);
    
    /* Premium Palette Colors */
    --clr-primary: #00D4FF;     /* Cyan */
    --clr-secondary: #35E48B;   /* Green */
    --clr-accent: #FFD54F;      /* Gold */
    --clr-white: #FFFFFF;
    --clr-text-sec: #cbd5e1;    /* Improved contrast Slate */
    
    /* Legacy Mappings for Compatibility */
    --clr-purple: #35E48B;
    --clr-blue: #00D4FF;
    --clr-pink: #FFD54F;
    
    --grad-primary: linear-gradient(135deg, var(--clr-purple) 0%, var(--clr-blue) 100%);
    --grad-accent: linear-gradient(135deg, var(--clr-pink) 0%, var(--clr-purple) 100%);
    --grad-mixed: linear-gradient(135deg, var(--clr-pink) 0%, var(--clr-purple) 50%, var(--clr-blue) 100%);
    
    /* Text colors */
    --text-white: #ffffff;
    --text-gray: #e2e8f0;       /* Improved contrast Slate-Light */
    --text-muted: #94a3b8;      /* Improved contrast Slate-Muted */
    
    /* Font sizes */
    --font-heading: 'Space Grotesk', 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--clr-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-pink);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   FLOATING AMBIENT BACKGROUND BLOBS
   ========================================== */
/* ==========================================
   AMBIENT BACKGROUND LAYER STACK
   ========================================== */
.bg-layer-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: -3;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(0, 212, 255, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.012) 1px, transparent 1px);
    z-index: -2;
}

.bg-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, transparent 20%, var(--bg-dark) 85%);
    pointer-events: none;
}

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

.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.18;
    mix-blend-mode: screen;
    animation: float-blob 20s infinite alternate ease-in-out;
}

.blob-cyan {
    background: var(--clr-primary);
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
}

.blob-green {
    background: var(--clr-secondary);
    width: 600px;
    height: 600px;
    top: 30%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-blue {
    background: #1d4ed8;
    width: 450px;
    height: 450px;
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 60px) scale(1.1);
    }
    100% {
        transform: translate(-40px, -80px) scale(0.95);
    }
}
/* Mobile consultation form fix */
@media (max-width: 768px) {

    .consultation-form-card {
        width: 100%;
        padding: 20px 15px;
        border-radius: 20px;
    }

    .form-header h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 8px;
    }

    .form-header p {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 25px;
    }

    .consultation-form .form-group {
        margin-bottom: 15px;
    }

    .consultation-form label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .consultation-form input,
    .consultation-form select {
        height: 42px;
        font-size: 13px;
        padding: 0 12px;
    }

    .form-consent-group {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .form-consent-label {
        font-size: 10px !important;
    }

    .btn-primary-glowing {
        width: 100%;
        padding: 12px !important;
        font-size: 14px;
    }
}

.form-header p {
    margin-bottom: 20px;
}

.form-header {
    margin-bottom: 15px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: var(--grad-mixed);
}

.btn-primary-glowing {
    background: var(--grad-mixed);
    color: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: cta-pulse 3s infinite alternate ease-in-out;
}

.btn-primary-glowing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-mixed);
    filter: blur(12px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-glowing:hover::before {
    opacity: 0.8;
}

.btn-primary-glowing:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(53, 228, 139, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    background: var(--grad-primary);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 0;
}

.btn-icon:hover {
    transform: scale(1.05);
    background: var(--grad-mixed);
}

.w-full {
    width: 100%;
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.navbar-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 80px;
    z-index: 100;
    background: rgba(7, 11, 17, 0.45);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.navbar-header.scrolled {
    top: 12px;
    height: 64px;
    background: rgba(7, 11, 17, 0.75);
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(0, 212, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
    width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--clr-white);
}

/* Navigation Links with animated dots & underlines */
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--clr-text-sec);
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.nav-link::after {
    display: none; /* remove old simple underline */
}

.nav-link:hover {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.02);
}

/* Active Page Indicator with glowing pill and animated dot */
.nav-link.active {
    color: var(--clr-white);
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.18);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.08);
    padding-left: 20px;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--clr-secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--clr-secondary);
    animation: active-dot-pulse 1.5s infinite alternate ease-in-out;
}

@keyframes active-dot-pulse {
    0% { transform: translateY(-50%) scale(0.8); opacity: 0.6; }
    100% { transform: translateY(-50%) scale(1.3); opacity: 1; }
}

/* Slide transition on arrow */
.cta-arrow {
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.btn-primary-glowing:hover .cta-arrow {
    transform: translateX(4px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.05);
}

.logo-accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo .dot {
    color: var(--clr-pink);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* ==========================================
   MOBILE NAVIGATION DRAWER
   ========================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(10, 11, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 1px solid var(--border-color);
}

.mobile-drawer.open {
    right: 0;
}

.close-drawer {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 36px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.close-drawer:hover {
    color: var(--clr-pink);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-white);
    padding-left: 8px;
    border-left: 3px solid var(--clr-purple);
}

.mobile-cta {
    margin-top: 30px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
/* ==========================================
   HERO SECTION (AWWWARDS REDESIGN)
   ========================================== */
.hero-section {
    padding-top: 200px;
    padding-bottom: 120px;
    position: relative;
    z-index: 2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .hero-content {
        align-items: center;
    }
}

/* Trust Badge Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--clr-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
    margin-bottom: 28px;
    animation: badge-pulse 2.5s infinite alternate ease-in-out;
}

@keyframes badge-pulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.06);
    }
    100% {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--clr-white);
    margin-bottom: 12px;
    max-width: 800px;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 64px;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }
}

/* Animated gradient text for Growth */
.text-gradient-growth {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, var(--clr-primary) 50%, #2979ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-accent);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 620px;
}

@media (max-width: 767px) {
    .hero-desc {
        font-size: 16px;
    }
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

.cta-primary {
    background: var(--grad-primary);
    box-shadow: 0 4px 20px rgba(53, 228, 139, 0.25);
    border-radius: 50px;
}

.cta-primary:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.45);
    transform: translateY(-3px) scale(1.02);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.icon-arrow {
    font-size: 13px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-secondary:hover .icon-arrow {
    transform: translateX(4px);
}

/* Statistics row */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 56px;
}

@media (max-width: 767px) {
    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Glassmorphism Stat Cards */
.stat-card {
    background: rgba(13, 20, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 991px) {
    .stat-card {
        text-align: center;
    }
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.08);
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.stat-card-number::after {
    content: attr(data-suffix);
}

.stat-card-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

/* Social Proof logo row */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

@media (max-width: 991px) {
    .hero-social-proof {
        align-items: center;
    }
}

.social-proof-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-sec);
    opacity: 0.7;
}

.social-proof-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

@media (max-width: 767px) {
    .social-proof-logos {
        justify-content: center;
        gap: 20px;
    }
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 8px;
    filter: grayscale(1) opacity(0.35);
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0) opacity(0.95);
    transform: translateY(-2px);
    color: var(--clr-primary);
}

/* Right Column: Hero Visual Mockups */
.hero-visual {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        height: 480px;
    }
}

.visual-glow-backdrop {
    position: absolute;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, rgba(53, 228, 139, 0.08) 45%, rgba(0, 212, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

/* Dashboard Mock Window */
.visual-dashboard-window {
    position: absolute;
    width: 100%;
    max-width: 640px;
    height: 400px;
    background: 
        linear-gradient(rgba(8, 14, 28, 0.65), rgba(4, 7, 16, 0.85)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 45%, rgba(53, 228, 139, 0.05) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(0, 212, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 3;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-dashboard-window:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.02);
    background: 
        linear-gradient(rgba(10, 18, 36, 0.7), rgba(5, 10, 22, 0.9)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 212, 255, 0.25) 45%, rgba(53, 228, 139, 0.1) 100%) border-box;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(0, 212, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dashboard-header {
    height: 44px;
    background: rgba(255, 255, 255, 0.015);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
}

.win-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.win-dot.dot-red { background: #ff5f56; }
.win-dot.dot-yellow { background: #ffbd2e; }
.win-dot.dot-green { background: #27c93f; }

.dashboard-search {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.02);
    height: 24px;
    border-radius: 8px;
    margin-left: 24px;
    margin-right: 36px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    padding-left: 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    letter-spacing: 0.3px;
}

.dashboard-body {
    height: calc(100% - 44px);
    padding: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    height: 100%;
}

.dashboard-sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 16px;
    align-items: center;
}

.side-nav-item {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.side-nav-item:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
}

.side-nav-item.active {
    background: rgba(0, 212, 255, 0.08);
    color: var(--clr-primary);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4px;
}

.chart-lbl {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-text-sec);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.chart-val {
    font-size: 16px;
    color: var(--clr-secondary);
    font-weight: 800;
    letter-spacing: -0.2px;
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(53, 228, 139, 0.2);
}

.analytics-svg {
    width: 100%;
    height: 130px;
    margin-top: 8px;
    overflow: visible;
}

.dashboard-footer-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
}

.df-stat {
    display: flex;
    flex-direction: column;
}

.df-stat-num {
    font-size: 17px;
    font-weight: 800;
    color: var(--clr-white);
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.df-stat-lbl {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Glassmorphic Visual Panels */
.visual-panel {
    position: absolute;
    background: 
        linear-gradient(rgba(10, 16, 32, 0.45), rgba(5, 8, 18, 0.75)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 4;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-panel:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: transparent;
    background: 
        linear-gradient(rgba(12, 20, 40, 0.55), rgba(6, 10, 24, 0.85)) padding-box,
        linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(53, 228, 139, 0.15) 100%) border-box;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.seo-panel {
    top: 8%;
    left: -6%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.seo-title-wrap {
    display: flex;
    flex-direction: column;
}

.seo-title-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--clr-text-sec);
    margin-bottom: 2px;
}

.seo-score-percent {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: -0.5px;
}

.circle-fill {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s ease-out;
}

.marketing-panel {
    bottom: 8%;
    right: -6%;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: perspective(1000px) rotateY(-8deg) translateY(10px);
}

.panel-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 213, 79, 0.08);
    border: 1px solid rgba(255, 213, 79, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.05);
}

.panel-details {
    display: flex;
    flex-direction: column;
}

.pd-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--clr-text-sec);
    margin-bottom: 2px;
}

.pd-val {
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--clr-accent);
    font-size: 19px;
    letter-spacing: -0.3px;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.15);
}

/* Floating Notification Cards */
.floating-notif-card {
    position: absolute;
    background: 
        linear-gradient(rgba(10, 16, 32, 0.4), rgba(5, 8, 18, 0.7)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%) border-box;
    border: 1px solid transparent;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-notif-card:hover {
    transform: translateY(-6px) scale(1.04) !important;
    border-color: transparent;
    background: 
        linear-gradient(rgba(12, 20, 40, 0.5), rgba(6, 10, 24, 0.8)) padding-box,
        linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(53, 228, 139, 0.12) 100%) border-box;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(0, 212, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.notif-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bg-green { background: rgba(53, 228, 139, 0.08); border: 1px solid rgba(53, 228, 139, 0.15); }
.bg-cyan { background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.15); }
.bg-gold { background: rgba(255, 213, 79, 0.08); border: 1px solid rgba(255, 213, 79, 0.15); }
.bg-purple { background: rgba(149, 87, 219, 0.08); border: 1px solid rgba(149, 87, 219, 0.15); }

.notif-content {
    display: flex;
    flex-direction: column;
}

.notif-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--clr-white);
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.notif-desc {
    font-size: 9px;
    color: var(--clr-text-sec);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* Floating Card Coordinates & Speeds */
.notif-traffic {
    top: 28%;
    right: -10%;
}
.notif-roas {
    bottom: 28%;
    left: -8%;
}

/* 3D shapes */
.visual-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 15px 30px rgba(0, 212, 255, 0.08));
}

.glass-sphere-1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(0, 212, 255, 0.03) 50%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 60px;
    right: 50px;
}

.glass-donut-1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 12px solid rgba(255, 255, 255, 0.04);
    top: 240px;
    left: -20px;
    transform: rotateX(45deg);
}

/* Custom Floating Animations with delays */
.float-delay-1 { animation: float-anim-1 7s infinite alternate ease-in-out; }
.float-delay-2 { animation: float-anim-2 8s infinite alternate ease-in-out; }
.float-delay-3 { animation: float-anim-3 6s infinite alternate ease-in-out; }
.float-delay-4 { animation: float-anim-4 9s infinite alternate ease-in-out; }

.visual-dashboard-window {
    animation: float-anim-1 12s infinite alternate ease-in-out;
}

@keyframes float-anim-1 {
    0% { transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(0px); }
    100% { transform: perspective(1200px) rotateY(-8deg) rotateX(6deg) translateY(-12px); }
}

@keyframes float-anim-2 {
    0% { transform: perspective(1200px) rotateY(-8deg) translateY(0px); }
    100% { transform: perspective(1200px) rotateY(-5deg) translateY(12px); }
}

@keyframes float-anim-3 {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-10px) scale(1.02); }
}

@keyframes float-anim-4 {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(10px) rotate(5deg); }
}

/* ==========================================
   BRAND TICKER SECTION
   ========================================== */
.ticker-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ticker-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.ticker-wrap {
    display: flex;
    width: 100%;
}

.ticker-list {
    display: flex;
    gap: 80px;
    animation: ticker-slide 20s linear infinite;
    padding-right: 80px;
    flex-shrink: 0;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.ticker-item:hover {
    opacity: 0.95;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes ticker-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-white) 50%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-gray);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.card-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon-wrap {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    transform: rotate(5deg) scale(1.05);
}

.icon-gradient {
    font-size: 24px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card:hover .icon-gradient {
    background: var(--grad-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.card-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-bullets li {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-bullets li i {
    color: var(--clr-pink);
    font-size: 10px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.text-left {
    text-align: left;
    margin-left: 0;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-pink);
    margin-bottom: 12px;
}

.about-desc {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-bullet {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-purple);
    font-size: 18px;
    flex-shrink: 0;
}

.about-bullet h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-bullet p {
    color: var(--text-gray);
    font-size: 13px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-art {
    width: 320px;
    height: 320px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.inner-glowing-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    animation: rotate-ring 15s linear infinite;
}

/* Animated 3D Glass Rotating Cube */
.scene-3d {
    width: 120px;
    height: 120px;
    perspective: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.cube-3d {
    width: 70px;
    height: 70px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 14s infinite linear;
}

.face-3d {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(147, 39, 238, 0.12), rgba(0, 212, 255, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(147, 39, 238, 0.15);
    backdrop-filter: blur(4px);
}

.face-3d.front  { transform: rotateY(0deg) translateZ(35px); background: linear-gradient(135deg, rgba(217, 20, 228, 0.18), rgba(0, 212, 255, 0.2)); }
.face-3d.back   { transform: rotateY(180deg) translateZ(35px); }
.face-3d.right  { transform: rotateY(90deg) translateZ(35px); border-color: rgba(147, 39, 238, 0.4); }
.face-3d.left   { transform: rotateY(-90deg) translateZ(35px); }
.face-3d.top    { transform: rotateX(90deg) translateZ(35px); }
.face-3d.bottom { transform: rotateX(-90deg) translateZ(35px); }

@keyframes rotate-cube {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes rotate-ring {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce-icon {
    from {
        transform: translateY(-8px);
    }
    to {
        transform: translateY(8px);
    }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
}

.contact-subtext {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-item i {
    font-size: 18px;
    color: var(--clr-purple);
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-item span {
    font-size: 15px;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text-white);
    background: var(--clr-purple);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Glassmorphic Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-purple);
    box-shadow: 0 0 10px rgba(149, 87, 219, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
/* ==========================================
   FOOTER AREA (AWWWARDS REDESIGN)
   ========================================== */
.footer-area {
    background-color: #03060A; /* Darker than background */
    padding: 100px 0 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.footer-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-primary) 20%, var(--clr-secondary) 80%, transparent);
    box-shadow: 0 0 15px var(--clr-primary);
    opacity: 0.7;
}

.footer-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    pointer-events: none;
    z-index: -2;
}

.footer-noise {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%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.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.3fr;
    gap: 48px;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .brand-col, .newsletter-col {
        grid-column: span 2;
    }
}
@media (max-width: 767px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .brand-col, .newsletter-col {
        grid-column: span 1;
    }
}

.footer-logo-wrap {
    position: relative;
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-logo-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    left: -20px;
    top: -30px;
    z-index: -1;
    pointer-events: none;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-white);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--clr-text-sec);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--clr-primary);
    transform: translateX(4px);
}

.newsletter-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--clr-text-sec);
    margin-bottom: 20px;
}

.footer-newsletter-form .newsletter-input-group {
    display: flex;
	position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
}

.footer-newsletter-form .newsletter-input-group:focus-within {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.footer-newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 55px 8px 20px;
    color: var(--clr-white);
    font-size: 14px;
    width: 100%;
}

.newsletter-btn {
	 position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--grad-primary);
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
	transform: translateY(-50%) scale(1.08) rotate(-15deg);
/*     transform: scale(1.08) rotate(-15deg); */
}

/* Social brand hover highlights */
.footer-socials {
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-sec);
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--clr-white);
    transform: translateY(-5px) rotate(8deg);
}

.footer-socials a.social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}
.footer-socials a.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4);
}
.footer-socials a.social-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Footer bottom copyright section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 0;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--clr-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.back-to-top:hover {
    background: var(--clr-primary);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* ==========================================
   SCROLL REVEAL STYLES (JS ANIMATION CLASSES)
   ========================================== */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.active {
    opacity: 1;
    transform: scale(1);
}

/* Delay modifiers for grids */
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .word-swapper {
        height: 60px;
        min-width: 250px;
    }
    
    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-header {
        padding: 8px 0;
    }
    
    .nav-links, .nav-actions .btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    
    .word-swapper {
        height: 48px;
        min-width: 200px;
        display: block;
        text-align: center;
    }
    
    .word {
        padding-left: 0;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================
   PREMIUM ENHANCEMENTS: PRELOADER
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -1px;
}

.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--grad-mixed);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(220, 61, 241, 0.5);
    transition: width 0.1s linear;
}

.preloader-percent {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-purple);
    letter-spacing: 2px;
}

.preloader-bg-half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #050608;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader-bg-left {
    left: 0;
    transform-origin: left;
    border-right: 1px solid rgba(255, 255, 255, 0.02);
}

.preloader-bg-right {
    right: 0;
    transform-origin: right;
    border-left: 1px solid rgba(255, 255, 255, 0.02);
}

.preloader.loaded .preloader-bg-left {
    transform: translateX(-100%);
}

.preloader.loaded .preloader-bg-right {
    transform: translateX(100%);
}

.preloader.loaded .preloader-content {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.preloader.loaded {
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.8s step-end;
}

/* Custom Cursor styles removed to restore standard browser cursor */

/* ==========================================
   PREMIUM ENHANCEMENTS: SOUND CONTROL
   ========================================== */
.btn-sound {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 8px;
}

.btn-sound:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-sound.active {
    color: var(--clr-pink);
    border-color: var(--clr-pink);
    background: rgba(251, 191, 36, 0.05);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

/* ==========================================
   PREMIUM ENHANCEMENTS: PROCESS TIMELINE
   ========================================== */
.process-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-timeline-container {
    position: relative;
    max-width: 850px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.timeline-line {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 40px;
    width: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
}

.timeline-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--grad-mixed);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
    transition: height 0.1s ease;
}

.process-step {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step-number-wrap {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.step-number-wrap::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    padding: 1.5px;
    background: var(--grad-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.5s ease;
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    flex-grow: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.step-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Timeline Interactive Reveal States */
.process-step.active .step-number-wrap {
    background: rgba(16, 185, 129, 0.08);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.process-step.active .step-number-wrap::before {
    opacity: 1;
}

.process-step.active .step-number {
    color: var(--text-white);
}

.process-step.active .step-content {
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.1);
    transform: translateX(10px);
}

.process-step.active .step-title {
    background: var(--grad-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .process-timeline-container {
        gap: 36px;
    }
    
    .timeline-line {
        left: 24px;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .step-number-wrap {
        width: 52px;
        height: 52px;
    }
    
    .step-number {
        font-size: 16px;
    }
    
    .step-content {
        padding: 24px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-desc {
        font-size: 14px;
    }
    
    .process-step.active .step-content {
        transform: none;
    }
}

/* ==========================================
   PREMIUM ENHANCEMENTS: CURSOR-AWARE CARD GLOW
   ========================================== */
.service-card {
    position: relative;
    z-index: 1;
}

.card-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(350px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.service-card:hover .card-glow-overlay {
    opacity: 1;
}

/* ==========================================
   BUTTON CURSOR GLOW & RIPPLES
   ========================================== */
.btn-primary-glowing {
    position: relative;
    overflow: hidden;
}

.btn-primary-glowing::after {
    content: '';
    position: absolute;
    top: var(--btn-y, 50%);
    left: var(--btn-x, 50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.btn-primary-glowing:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ==========================================
   PREMIUM SCROLL PROGRESS & SPOTLIGHT GLOW
   ========================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-primary));
    z-index: 10001;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.mouse-glow-bg {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.035) 0%, rgba(53, 228, 139, 0.005) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* ==========================================
   CUSTOM INTERACTIVE CURSOR WITH TRAIL
   ========================================== */
.cursor-trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 1000001; /* Higher than modal */
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
    display: none;
}

.cursor-ring {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 1000000; /* Higher than modal */
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.05);
    display: none;
}

/* Cursor Hover States */
.cursor-dot.hover-btn {
    width: 10px;
    height: 10px;
    background: var(--clr-secondary);
}
.cursor-ring.hover-btn {
    width: 48px;
    height: 48px;
    border-color: var(--clr-secondary);
    background: rgba(53, 228, 139, 0.05);
    box-shadow: 0 0 15px rgba(53, 228, 139, 0.15);
}

.cursor-ring.hover-link {
    width: 38px;
    height: 38px;
    border-color: var(--clr-white);
    background: rgba(255, 255, 255, 0.05);
}

/* Hover Cards (magnetic stretch) */
.cursor-ring.hover-card {
    width: 52px;
    height: 52px;
    border-color: var(--clr-primary);
    background: rgba(0, 212, 255, 0.03);
}

/* Hover Images - displays text inside cursor */
.cursor-ring.hover-image {
    width: 68px;
    height: 68px;
    border-color: var(--clr-primary);
    background: rgba(0, 212, 255, 0.1);
}
.cursor-ring.hover-image::after {
    content: 'View';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Minimal cursor on inputs */
.cursor-dot.hover-input {
    width: 2px;
    height: 2px;
}
.cursor-ring.hover-input {
    width: 12px;
    height: 12px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.2);
}

@media (hover: hover) and (pointer: fine) {
    body, a, button, select, input, textarea, .service-card, .logo, .ticker-item, .nav-link, .social-links a, .about-bullet, .stat-card, .back-to-top {
        cursor: none !important;
    }
    .cursor-dot, .cursor-ring {
        display: block;
    }
}

/* Button ripple effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================
   STICKY NAVBAR & ACTIVE Indicator
   ========================================== */
.nav-links {
    position: relative;
}

.nav-active-pill {
    position: absolute;
    background: rgba(0, 212, 255, 0.08) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    pointer-events: none;
}

.nav-link {
    z-index: 1;
}

.nav-link.active {
    color: var(--clr-white) !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    padding-left: 16px !important;
}

.nav-link.active::before {
    display: none !important;
}

/* ==========================================
   3D HERO ILLUSTRATION STYLING
   ========================================== */
.hero-visual {
    perspective: 1500px;
    transform-style: preserve-3d;
}

.scene-3d-hero {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene-layer {
    position: absolute !important;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.layer-back {
    transform: translateZ(-30px);
    z-index: 1;
}

.layer-mid {
    z-index: 3;
}

.seo-panel.layer-mid {
    transform: translateZ(30px) rotateY(-5deg) translateY(-10px);
}

.marketing-panel.layer-mid {
    transform: translateZ(40px) rotateY(-8deg) translateY(10px);
}

.layer-front {
    z-index: 5;
}

.notif-traffic.layer-front {
    transform: translateZ(80px);
}

.notif-roas.layer-front {
    transform: translateZ(70px);
}



.layer-front-shapes {
    z-index: 2;
}

.glass-sphere-1.layer-front-shapes {
    transform: translateZ(110px);
}

.glass-donut-1.layer-front-shapes {
    transform: translateZ(90px) rotateX(45deg);
}

.scene-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.22) 0%, rgba(53, 228, 139, 0.1) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    transform: translateZ(-50px);
}

/* ==========================================
   PORTFOLIO & CASE STUDIES SECTION
   ========================================== */
.portfolio-section {
    padding: 120px 0;
    position: relative;
    z-index: 3;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-tab:hover, .portfolio-tab.active {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.25);
    color: var(--clr-white);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.06);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.portfolio-card {
    flex: 1 1 360px;
    max-width: 380px;
    background: rgba(13, 20, 32, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 767px) {
    .portfolio-grid {
        max-width: 100%;
    }
    .portfolio-card {
        max-width: 100%;
        flex-basis: 100%;
    }
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.05);
}

.portfolio-image-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: rgba(4, 8, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-glow-layer {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-glow-layer {
    opacity: 1;
}

.portfolio-card-mesh {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.project-mesh-icon {
    font-size: 60px;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.web-mesh .project-mesh-icon { color: var(--clr-primary); }
.brand-mesh .project-mesh-icon { color: var(--clr-secondary); }
.seo-mesh .project-mesh-icon { color: var(--clr-accent); }
.web3-mesh .project-mesh-icon { color: #818cf8; }
.ai-mesh .project-mesh-icon { color: #f472b6; }
.app-mesh .project-mesh-icon { color: #fb7185; }

.portfolio-card:hover .project-mesh-icon {
    opacity: 0.8;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px currentColor);
}

.portfolio-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-secondary);
    margin-bottom: 12px;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.portfolio-card-desc {
    font-size: 14px;
    color: var(--clr-text-sec);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ==========================================
   TESTIMONIALS SLIDER SECTION
   ========================================== */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    z-index: 3;
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.testimonials-track {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .testimonials-track {
        height: 420px;
    }
}

.testimonial-card {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(13, 20, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    color: var(--clr-accent);
    font-size: 14px;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    color: var(--clr-white);
    font-weight: 450;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .testimonial-quote {
        font-size: 16px;
    }
}

.testimonial-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-white);
    font-size: 16px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.client-avatar.grad-1 { background: linear-gradient(135deg, #00D4FF 0%, #2979ff 100%); }
.client-avatar.grad-2 { background: linear-gradient(135deg, #35E48B 0%, #00bc70 100%); }
.client-avatar.grad-3 { background: linear-gradient(135deg, #FFD54F 0%, #ff9100 100%); }

.client-info {
    text-align: left;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-white);
}

.client-title {
    font-size: 12px;
    color: var(--clr-text-sec);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-btn:hover {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.25);
    color: var(--clr-white);
    transform: scale(1.05);
}

/* ==========================================
   CASE STUDIES DETAILS LIGHTBOX MODAL
   ========================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 12, 0.85);
    backdrop-filter: blur(12px);
}

.lightbox-content-card {
    position: relative;
    background: rgba(10, 15, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 212, 255, 0.05);
    z-index: 2;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 50px;
}

.lightbox-modal.active .lightbox-content-card {
    transform: scale(1) translateY(0);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-case-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.modal-case-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-secondary);
    display: inline-block;
    margin-bottom: 10px;
}

.modal-case-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.modal-case-subtitle {
    font-size: 16px;
    color: var(--clr-text-sec);
}

.modal-case-meta {
    display: flex;
    gap: 50px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 24px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .modal-case-meta {
        flex-direction: column;
        gap: 20px;
    }
}

.meta-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.meta-val {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 650;
    color: var(--clr-white);
}

.highlight-metric {
    color: var(--clr-primary);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.modal-case-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.content-block h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block h4 i {
    color: var(--clr-primary);
}

.content-block p {
    font-size: 15px;
    color: var(--clr-text-sec);
    line-height: 1.7;
}

/* ==========================================
   GLASS DYNAMIC HOVER GLOW BORDER EFFECT
   ========================================== */
.service-card {
    position: relative;
    overflow: hidden;
    background: rgba(13, 20, 32, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(16px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(190%) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.25) !important;
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.05), 0 0 30px rgba(0, 212, 255, 0.05) !important;
    transform: translateY(-8px) scale(1.01) !important;
}

.card-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(300px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 212, 255, 0.06), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover .card-glow-overlay {
    opacity: 1;
}

/* Premium transition curve adjustments */
.reveal-slide-up, .reveal-fade {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-duration: 0.8s !important;
}

/* ==========================================
   THEME TOGGLE BUTTON STYLES
   ========================================== */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 12px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.08) rotate(15deg);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   LIGHT THEME OVERRIDES
   ========================================== */
body.light-theme {
    --bg-dark: #F8FAFC;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(79, 70, 229, 0.12);
    --logo-border: rgba(15, 23, 42, 0.025);
    
    /* Premium Palette Colors */
    --clr-primary: #4F46E5;     /* Indigo */
    --clr-secondary: #10B981;   /* Emerald Green */
    --clr-accent: #F59E0B;      /* Amber Gold */
    --clr-white: #0F172A;       /* Slate-900 */
    --clr-text-sec: #334155;    /* Slate-700 */
    
    /* Legacy Mappings */
    --clr-purple: #4F46E5;
    --clr-blue: #3B82F6;
    --clr-pink: #F59E0B;
    
    --grad-primary: linear-gradient(135deg, var(--clr-purple) 0%, var(--clr-blue) 100%);
    --grad-accent: linear-gradient(135deg, var(--clr-pink) 0%, var(--clr-purple) 100%);
    --grad-mixed: linear-gradient(135deg, var(--clr-pink) 0%, var(--clr-purple) 50%, var(--clr-blue) 100%);
    
    /* Text colors */
    --text-white: #0F172A;
    --text-gray: #334155;
    --text-muted: #64748B;
}

/* Light Theme Component Specific Adjustments */
body.light-theme {
    color: var(--text-gray);
    background-color: var(--bg-dark);
}

body.light-theme html {
    background-color: var(--bg-dark);
    color: var(--text-gray);
}

/* Theme Toggle Button in Light Mode */
body.light-theme .theme-toggle-btn {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0F172A;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

body.light-theme .theme-toggle-btn:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.15);
}

/* Preloader Light Mode Overrides */
body.light-theme .preloader-bg-half {
    background: #F8FAFC;
}
body.light-theme .preloader-bar {
    background: rgba(15, 23, 42, 0.06);
}
body.light-theme .preloader-bg-left {
    border-right-color: rgba(15, 23, 42, 0.03);
}
body.light-theme .preloader-bg-right {
    border-left-color: rgba(15, 23, 42, 0.03);
}

/* Scrollbar */
body.light-theme::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
body.light-theme::-webkit-scrollbar-thumb {
    background: var(--clr-purple);
}
body.light-theme ::-webkit-scrollbar-thumb:hover {
    background: var(--clr-accent);
}

/* Background grid and blobs */
body.light-theme .bg-base {
    background-color: var(--bg-dark);
}
body.light-theme .bg-grid {
    background-image: 
        linear-gradient(to right, rgba(79, 70, 229, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
}
body.light-theme .bg-grid::after {
    background: radial-gradient(circle at 50% 30%, transparent 20%, var(--bg-dark) 85%);
}
body.light-theme .blob {
    mix-blend-mode: multiply;
    opacity: 0.08;
    filter: blur(120px);
}
body.light-theme .blob-blue {
    background: #93c5fd;
}

/* Header & Navigation */
body.light-theme .navbar-header {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03), 0 0 1px rgba(15, 23, 42, 0.04);
}
body.light-theme .navbar-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}
body.light-theme .nav-link {
    color: var(--clr-text-sec);
}
body.light-theme .nav-link:hover {
    color: var(--text-white);
    background: rgba(15, 23, 42, 0.02);
}
body.light-theme .nav-link.active {
    color: var(--clr-purple);
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.04);
}
body.light-theme .nav-active-pill {
    background: rgba(79, 70, 229, 0.06) !important;
}

/* Menu Toggle for mobile in Light Mode */
body.light-theme .menu-toggle .bar {
    background-color: var(--text-white);
}

/* Buttons */
body.light-theme .btn-secondary {
    background: rgba(15, 23, 42, 0.02);
    color: var(--text-white);
    border: 1px solid rgba(15, 23, 42, 0.1);
}
body.light-theme .btn-secondary:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.2);
}
body.light-theme .logo-icon {
    filter: drop-shadow(0 0 8px rgba(79, 70, 229, 0.2));
}

/* Mobile Drawer */
body.light-theme .mobile-drawer {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
}
body.light-theme .close-drawer {
    color: var(--text-white);
}
body.light-theme .mobile-nav-link {
    color: var(--text-gray);
}
body.light-theme .mobile-nav-link:hover {
    color: var(--text-white);
}

/* Hero Badge */
body.light-theme .hero-badge {
    background: rgba(79, 70, 229, 0.04);
    border: 1px solid rgba(79, 70, 229, 0.1);
    color: var(--clr-primary);
}

/* Cards & Containers */
body.light-theme .stat-card,
body.light-theme .testimonial-card,
body.light-theme .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.light-theme .stat-card:hover,
body.light-theme .testimonial-card:hover,
body.light-theme .contact-form-wrapper:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06);
}
body.light-theme .card-icon-wrap {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
body.light-theme .service-card:hover .card-icon-wrap {
    background: rgba(79, 70, 229, 0.06);
    border-color: rgba(79, 70, 229, 0.2);
}

/* Override the !important variables on service card */
body.light-theme .service-card {
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.03) !important;
    backdrop-filter: blur(16px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(190%) !important;
}

body.light-theme .service-card:hover {
    border-color: rgba(79, 70, 229, 0.2) !important;
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.06), 0 0 30px rgba(79, 70, 229, 0.04) !important;
}


/* 3D Scene Panels on Hero */
body.light-theme .visual-dashboard-window {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95)) padding-box,
        linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0%, rgba(79, 70, 229, 0.15) 45%, rgba(16, 185, 129, 0.08) 100%) border-box !important;
    box-shadow: 
        0 40px 80px rgba(15, 23, 42, 0.08),
        0 0 100px rgba(79, 70, 229, 0.03) !important;
}
body.light-theme .visual-dashboard-window:hover {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 1)) padding-box,
        linear-gradient(135deg, rgba(15, 23, 42, 0.12) 0%, rgba(79, 70, 229, 0.2) 45%, rgba(16, 185, 129, 0.12) 100%) border-box !important;
    box-shadow: 
        0 50px 100px rgba(15, 23, 42, 0.12),
        0 0 120px rgba(79, 70, 229, 0.05) !important;
}
body.light-theme .dashboard-header {
    background: rgba(15, 23, 42, 0.01) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05) !important;
}
body.light-theme .dashboard-search {
    background: rgba(15, 23, 42, 0.02) !important;
    color: rgba(15, 23, 42, 0.45) !important;
    border: 1px solid rgba(15, 23, 42, 0.03) !important;
}
body.light-theme .dashboard-sidebar {
    border-right: 1px solid rgba(15, 23, 42, 0.04) !important;
}
body.light-theme .side-nav-item {
    color: rgba(15, 23, 42, 0.25) !important;
}
body.light-theme .side-nav-item:hover {
    color: rgba(15, 23, 42, 0.6) !important;
    background: rgba(15, 23, 42, 0.02) !important;
}
body.light-theme .side-nav-item.active {
    background: rgba(79, 70, 229, 0.06) !important;
    color: var(--clr-primary) !important;
    border: 1px solid rgba(79, 70, 229, 0.15) !important;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.05) !important;
}
body.light-theme .dashboard-footer-stats {
    border-top: 1px solid rgba(15, 23, 42, 0.04) !important;
}
body.light-theme .chart-grid-lines {
    stroke: rgba(15, 23, 42, 0.03) !important;
}

/* Glassmorphic Panels & Cards in visual */
body.light-theme .visual-panel,
body.light-theme .floating-notif-card {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.95)) padding-box,
        linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%) border-box !important;
    box-shadow: 
        0 25px 50px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
body.light-theme .visual-panel:hover,
body.light-theme .floating-notif-card:hover {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 1)) padding-box,
        linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%) border-box !important;
    box-shadow: 
        0 30px 60px rgba(15, 23, 42, 0.08),
        0 0 25px rgba(79, 70, 229, 0.05) !important;
}

/* Ticker & Stats Divider sections */
body.light-theme .ticker-section,
body.light-theme .stats-section {
    background: rgba(15, 23, 42, 0.005);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Process Timeline */
body.light-theme .process-step.active .step-number-wrap {
    border-color: var(--clr-primary);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
}
body.light-theme .step-number {
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-muted);
}
body.light-theme .process-step.active .step-number {
    background: var(--grad-primary);
    color: #FFFFFF;
}
body.light-theme .timeline-line {
    background: rgba(15, 23, 42, 0.06);
}

/* Portfolio elements */
body.light-theme .portfolio-tab {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--clr-text-sec);
}
body.light-theme .portfolio-tab:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-white);
}
body.light-theme .portfolio-tab.active {
    background: var(--clr-primary);
    color: #FFFFFF;
    border-color: var(--clr-primary);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}
body.light-theme .portfolio-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02) !important;
}
body.light-theme .portfolio-card:hover {
    border-color: rgba(79, 70, 229, 0.15) !important;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06) !important;
}
body.light-theme .portfolio-image-wrap {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.04) 0%, rgba(16, 185, 129, 0.04) 100%) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}
body.light-theme .portfolio-card-mesh {
    background: transparent !important;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px) !important;
}
body.light-theme .project-mesh-icon {
    opacity: 0.65 !important;
}
body.light-theme .portfolio-card:hover .project-mesh-icon {
    opacity: 0.95 !important;
    filter: drop-shadow(0 0 25px currentColor) !important;
}

/* Forms & Inputs */
body.light-theme .form-group label {
    color: var(--text-gray);
}
body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-white);
}
body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus {
    border-color: var(--clr-purple);
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.1);
    background: #FFFFFF;
}
body.light-theme .form-group select option {
    background: #FFFFFF;
    color: var(--text-white);
}

/* About visual */
body.light-theme .glass-art {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
body.light-theme .face-3d {
    background: rgba(79, 70, 229, 0.04);
    border: 1px solid rgba(79, 70, 229, 0.25);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.05);
    backdrop-filter: blur(2px);
}
body.light-theme .face-3d.front {
    background: rgba(79, 70, 229, 0.08);
}

/* Testimonials section */
body.light-theme .testimonials-slider-container {
    background: transparent;
}
body.light-theme .slider-btn {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-white);
}
body.light-theme .slider-btn:hover {
    background: rgba(79, 70, 229, 0.06);
    color: var(--clr-primary);
    border-color: rgba(79, 70, 229, 0.15);
}

/* Contact detail item icons */
body.light-theme .detail-item i {
    background: rgba(79, 70, 229, 0.04);
    border: 1px solid rgba(79, 70, 229, 0.1);
}
body.light-theme .social-links a {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-gray);
}
body.light-theme .social-links a:hover {
    color: #FFFFFF;
    background: var(--clr-purple);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Footer Section */
body.light-theme .footer-area {
    background-color: #F1F5F9;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}
body.light-theme .footer-grid {
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
}
body.light-theme .footer-logo-glow {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
}
body.light-theme .footer-newsletter-form .newsletter-input-group {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.7);
}
body.light-theme .footer-newsletter-form .newsletter-input-group:focus-within {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.05);
}
body.light-theme .footer-newsletter-form input {
    color: var(--text-white);
}
body.light-theme .footer-newsletter-form input::placeholder {
    color: var(--text-muted);
}
body.light-theme .footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}
/* ==========================================
   FLOATING ACTIONS (WHATSAPP & REDESIGNED BACK TO TOP)
   ========================================== */
.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    pointer-events: none;
}

/* Enable pointer events on interactive children */
.whatsapp-floating-btn,
#backToTop.back-to-top {
    pointer-events: auto;
}

/* Redesigned Back to Top Button */
#backToTop.back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 56px;
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.04) !important;
    border-radius: 12px !important;
    color: #64748b !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-arrow {
    color: var(--clr-primary); /* Purple color matching light-theme primary */
    font-size: 11px;
    line-height: 1;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.back-to-top-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    text-transform: lowercase;
}

#backToTop.back-to-top:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12) !important;
    background: #ffffff !important;
    color: #475569 !important;
}

#backToTop.back-to-top:hover .back-to-top-arrow {
    transform: translateY(-3px);
}

/* WhatsApp Circular Button */
.whatsapp-floating-btn {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    background: var(--clr-primary) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.45) !important;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 575px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
}

/* ==========================================
   CLIENTS SECTION
   ========================================== */
.clients-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #ffffff 40%,
        #f7f8ff 100%
    );
    border-bottom: 1px solid var(--border-color);
}

body.light-theme .clients-section {
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #ffffff 40%,
        #f7f8ff 100%
    );
}

/* Soft Grid Pattern */
.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(30,41,59,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,41,59,0.03) 1px, transparent 1px);

    background-size: 70px 70px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
    pointer-events: none;
    z-index: 1;
}

/* Noise Overlay */
.clients-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .03;
    pointer-events: none;

    background-image:
        radial-gradient(circle at 20% 20%, #000 1px, transparent 1px),
        radial-gradient(circle at 80% 60%, #000 1px, transparent 1px),
        radial-gradient(circle at 40% 90%, #000 1px, transparent 1px);

    background-size: 120px 120px;
    z-index: 1;
}

/* Blurred Background Circles */
.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s ease-in-out infinite;
    z-index: 1;
}

/* Blue */
.blur-1 {
    width: 450px;
    height: 450px;
    background: rgba(59,130,246,.15);
    top: -120px;
    left: -120px;
}

/* Purple */
.blur-2 {
    width: 400px;
    height: 400px;
    background: rgba(139,92,246,.12);
    right: -100px;
    top: 180px;
    animation-delay: 2s;
}

/* Orange */
.blur-3 {
    width: 350px;
    height: 350px;
    background: rgba(249,115,22,.10);
    bottom: -120px;
    left: 45%;
    animation-delay: 4s;
}

@keyframes float {
    0%,100%{
        transform:translateY(0) translateX(0);
    }
    50%{
        transform:translateY(-20px) translateX(15px);
    }
}

/* Ensure content stays above background */
.clients-section .container {
    position: relative;
    z-index: 2;
}

.clients-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.clients-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.clients-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.clients-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.clients-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(13, 20, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    height: 200px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

body.light-theme .client-logo-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.client-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(53, 228, 139, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.light-theme .client-logo-card::before {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3) 0%, rgba(16, 185, 129, 0.15) 100%);
}

.client-logo-card:hover {
    transform: translateY(-8px);
    background: rgba(13, 20, 32, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(0, 212, 255, 0.08);
}

body.light-theme .client-logo-card:hover {
    background: #ffffff;
    box-shadow: 
        0 20px 40px rgba(79, 70, 229, 0.08),
        0 0 25px rgba(79, 70, 229, 0.04);
}

.client-logo-card:hover::before {
    opacity: 1;
}

.client-logo-card img {
    max-width: 80%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    padding: 4px 8px;
    filter: none; /* Vibrant natural colors by default! */
    opacity: 0.92;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-theme .client-logo-card img {
    opacity: 0.95;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.client-logo-card:hover img {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.18);
}

body.light-theme .client-logo-card:hover img {
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.15);
}


@media (max-width: 991px) {
    .clients-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .clients-content {
        align-items: center;
    }
}

@media (max-width: 991px) {
    .client-logo-card {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 767px) {
    .client-logo-card {
        flex: 0 0 33.333%;
        padding: 16px 12px;
        height: 100px;
    }
}

/* Lightbox case studies modal */
body.light-theme .lightbox-content-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}
body.light-theme .lightbox-close {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-white);
}
body.light-theme .lightbox-close:hover {
    background: rgba(15, 23, 42, 0.06);
}
body.light-theme .meta-box {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.05);
}
body.light-theme .content-block h4 {
    color: var(--clr-primary);
}
body.light-theme .content-block {
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

/* ==========================================
   PREMIUM JPEG LOGO & PORTFOLIO STYLING
   ========================================== */
.portfolio-img {
    max-width: 65%;
    max-height: 130px;
    object-fit: contain;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
    box-shadow: 0 20px 35px rgba(0, 212, 255, 0.15);
}

/* Client logo styling overrides consolidated in main styles above */

/* ==========================================
   MULTI-DEVICE MOCKUP SHOWCASE STYLES (IMAGE 2 DESIGN)
   ========================================== */
/* ==========================================
   MULTI-DEVICE MOCKUP SHOWCASE STYLES (IMAGE 2 DESIGN)
   ========================================== */
.multi-device-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 991px) {
    .multi-device-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.device-mockup-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.device-mockup-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1), 0 6px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 212, 255, 0.3);
}

.mockup-stage {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f3f6fa 0%, #e6ebf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 767px) {
    .mockup-stage {
        height: 220px;
    }
}

.mockup-bg-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0px, rgba(255, 255, 255, 0.5) 24px, transparent 24px, transparent 48px);
    pointer-events: none;
    opacity: 0.8;
}

.mockup-img {
    max-width: 96% !important;
    max-height: 96% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12)) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    z-index: 2;
}

.device-mockup-card:hover .mockup-img {
    transform: scale(1.03) translateY(-3px) !important;
}

.mockup-tag-floating {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio-card-content {
    padding: 14px 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #FFFFFF;
}

.tag-pink {
    background: #e91e63;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
}

.tag-green {
    background: #00c853;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.portfolio-card-headline {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.portfolio-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.portfolio-card .btn-view-details {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card .btn-view-details:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.portfolio-card .btn-view-details i {
    transition: transform 0.3s ease;
}

.portfolio-card .btn-view-details:hover i {
    transform: translateX(4px);
}

/* ==========================================
   HERO BANNER FREE CONSULTATION FORM CARD
   ========================================== */
.consultation-form-card {
    background: rgba(13, 20, 32, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

body.light-theme .consultation-form-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05);
}

.consultation-form-card .form-group input,
.consultation-form-card .form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-white);
    transition: border-color 0.3s, background-color 0.3s;
}

body.light-theme .consultation-form-card .form-group input,
body.light-theme .consultation-form-card .form-group select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-white);
}

.consultation-form-card .form-group input:focus,
.consultation-form-card .form-group select:focus {
    border-color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.06);
}

body.light-theme .consultation-form-card .form-group input:focus,
body.light-theme .consultation-form-card .form-group select:focus {
    border-color: var(--clr-primary);
    background: #ffffff;
}

.consultation-form-card select option {
    background: #040814;
    color: #ffffff;
}

body.light-theme .consultation-form-card select option {
    background: #ffffff;
    color: #0f172a;
}

/* ==========================================
   FIX FOR FIXED HEADER OVERLAP ON STANDALONE PAGES
   ========================================== */
main > section:first-of-type {
    padding-top: 180px !important;
}

main > section.hero-section:first-of-type {
    padding-top: 200px !important;
}

/* ==========================================
   SERVICE DETAIL PAGES (PRICING & FAQ)
   ========================================== */
.service-detail-section {
    padding-bottom: 120px;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.pricing-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

body.light-theme .pricing-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
                linear-gradient(135deg, var(--clr-secondary), var(--clr-primary)) border-box;
    border: 1px solid transparent;
}

body.light-theme .pricing-card.popular {
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, var(--clr-secondary), var(--clr-primary)) border-box;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    color: #040814;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-plan {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 15px;
}

body.light-theme .pricing-plan {
    color: #0f172a;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

body.light-theme .pricing-features li {
    color: #334155;
}

.pricing-features li i {
    color: var(--clr-secondary);
    margin-top: 3px;
    font-size: 12px;
}

.pricing-card .btn {
    width: 100%;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.light-theme .faq-section {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.light-theme .faq-item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
}

.faq-question {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    transition: color 0.3s;
}

body.light-theme .faq-question h3 {
    color: #0f172a;
}

.faq-icon-box {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

body.light-theme .faq-icon-box {
    border-color: rgba(15, 23, 42, 0.2);
}

.faq-icon-box i {
    font-size: 10px;
    color: var(--text-white);
    transition: transform 0.3s;
}

body.light-theme .faq-icon-box i {
    color: #0f172a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 30px 25px 30px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--clr-primary);
    background: rgba(0, 212, 255, 0.02);
}

body.light-theme .faq-item.active {
    background: rgba(0, 212, 255, 0.02);
}

.faq-item.active .faq-question h3 {
    color: var(--clr-primary);
}

.faq-item.active .faq-icon-box {
    border-color: var(--clr-primary);
    background: var(--clr-primary);
}

.faq-item.active .faq-icon-box i {
    color: #040814;
    transform: rotate(180deg);
}

/* ==========================================
   NAVBAR SERVICES DROPDOWN (DESKTOP & MOBILE)
   ========================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 240px;
    background: rgba(4, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

body.light-theme .nav-dropdown .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

body.light-theme .nav-dropdown .dropdown-menu a {
    color: #475569;
}

.nav-dropdown .dropdown-menu a:hover {
    color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.04);
    padding-left: 28px;
}

body.light-theme .nav-dropdown .dropdown-menu a:hover {
    color: var(--clr-primary);
    background: rgba(0, 0, 0, 0.02);
}

/* Mobile Dropdown styles */
.mobile-nav-dropdown {
    width: 100%;
    margin-bottom: 20px;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 0 !important;
}

body.light-theme .mobile-dropdown-toggle {
    color: #0f172a;
}

.mobile-nav-dropdown.active .mobile-dropdown-toggle {
    transform: rotate(180deg);
    color: var(--clr-primary);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 5px;
}

body.light-theme .mobile-dropdown-menu {
    border-left-color: rgba(15, 23, 42, 0.08);
}

.mobile-dropdown-link {
    display: block;
    padding: 8px 0;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: color 0.3s;
}

body.light-theme .mobile-dropdown-link {
    color: #475569 !important;
}

.mobile-dropdown-link:hover {
    color: var(--clr-primary) !important;
}

/* ==========================================
   BLOG DETAILS SECTION
   ========================================== */
.blog-detail-section {
    padding: 120px 0 80px 0;
}

.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-header {
    text-align: left;
    margin-bottom: 40px;
}

.blog-detail-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--clr-primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

body.light-theme .blog-detail-tag {
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    border-color: rgba(79, 70, 229, 0.15);
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

body.light-theme .blog-detail-title {
    color: #0f172a;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--clr-secondary);
}

.blog-detail-image-wrap {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

body.light-theme .blog-detail-image-wrap {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.blog-detail-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #d6d3d8;
}

body.light-theme .blog-detail-content {
    color: #334155;
}

.blog-detail-content p {
    margin-bottom: 28px;
}

.blog-detail-content a {
    color: var(--clr-primary);
    text-decoration: underline;
    font-weight: 600;
}

body.light-theme .blog-detail-content a {
    color: #4f46e5;
}

.blog-detail-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 750;
    color: var(--text-white);
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

body.light-theme .blog-detail-content h2 {
    color: #0f172a;
}

.blog-detail-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 16px;
}

body.light-theme .blog-detail-content h3 {
    color: #0f172a;
}

.blog-detail-content ul, .blog-detail-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
}

.blog-detail-content li {
    margin-bottom: 12px;
}

/* Callout Box */
.blog-callout-box {
    margin: 40px 0;
    padding: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border-left: 4px solid var(--clr-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

body.light-theme .blog-callout-box {
    background: #f8fafc;
    border-left-color: #4f46e5;
    border-top-color: rgba(15, 23, 42, 0.04);
    border-right-color: rgba(15, 23, 42, 0.04);
    border-bottom-color: rgba(15, 23, 42, 0.04);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.02);
}

.blog-callout-box p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-white);
}

body.light-theme .blog-callout-box p {
    color: #0f172a;
}

/* Table of Contents */
.blog-toc-box {
    margin: 40px 0;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

body.light-theme .blog-toc-box {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.blog-toc-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 18px;
}

body.light-theme .blog-toc-title {
    color: #0f172a;
}

.blog-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-toc-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.blog-toc-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--clr-primary);
}

body.light-theme .blog-toc-list li::before {
    color: #4f46e5;
}

.blog-toc-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-toc-list a:hover {
    color: var(--clr-primary);
}

body.light-theme .blog-toc-list a:hover {
    color: #4f46e5;
}

/* Blog Table Section */
.blog-table-wrap {
    margin: 40px 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.01);
    overflow: hidden;
}

body.light-theme .blog-table-wrap {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
    background: #ffffff;
}

.blog-table-header {
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.light-theme .blog-table-header {
    background: #f8fafc;
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.blog-table-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

body.light-theme .blog-table-header h3 {
    color: #0f172a;
}

.blog-table-container {
    width: 100%;
    overflow-x: auto;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.blog-table th {
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    color: #040814;
    font-size: 15px;
    font-weight: 700;
}

body.light-theme .blog-table th {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #ffffff;
}

.blog-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

body.light-theme .blog-table td {
    border-bottom-color: rgba(15, 23, 42, 0.06);
    color: #475569;
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.01);
}

body.light-theme .blog-table tr:nth-child(even) td {
    background: #f8fafc;
}

/* Call to Action Card */
.blog-cta-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 60px 0;
    padding: 50px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, #09090b 0%, #121016 42%, #1d102b 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    text-align: center;
}

body.light-theme .blog-cta-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.05);
}

.blog-cta-glow-1 {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
}

body.light-theme .blog-cta-glow-1 {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
}

.blog-cta-glow-2 {
    position: absolute;
    z-index: -1;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 228, 139, 0.1) 0%, transparent 70%);
}

body.light-theme .blog-cta-glow-2 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
}

.blog-cta-card .tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--clr-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.light-theme .blog-cta-card .tagline {
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
}

.blog-cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 850;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

body.light-theme .blog-cta-card h2 {
    color: #0f172a;
}

.blog-cta-card p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.blog-cta-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Fix pointer events for card glow overlays to allow clicks on links */
.card-glow-overlay {
    pointer-events: none !important;
}

/* Prevent buttons inside blog detail content from inheriting anchor link styles */
.blog-detail-content .btn {
    color: #ffffff !important;
    text-decoration: none !important;
}
body.light-theme .blog-detail-content .btn {
    color: #ffffff !important;
}


/* ===============================
   Performance Animation Optimizations
   =============================== */

/* Keep animations on GPU-friendly properties only */
.animated,
[class*="animate"],
.hero-visual *,
.blob-cyan,
.blob-green,
.floating-card,
.service-card,
.portfolio-card {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Reduce expensive continuous effects */
.blob-cyan,
.blob-green {
    animation-duration: 30s;
    will-change: transform;
}

@media (min-width: 768px) {
    .floating-card {
        will-change: transform;
    }
}

/* Prefer targeted transitions over costly "all" transitions */
button,
a,
.card,
.service-card,
.portfolio-card {
    transition-property: transform, opacity, box-shadow, color, background-color, border-color;
    transition-duration: .25s;
    transition-timing-function: cubic-bezier(.16,1,.3,1);
}

/* Disable unnecessary animation workload for users who request it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Avoid rendering off-screen animation elements early */
img {
    content-visibility: auto;
}
.footer-newsletter-form .newsletter-input-group {
    position: relative !important;
    display: block !important;
}

.footer-newsletter-form .newsletter-input-group input {
    width: 100% !important;
    padding-right: 55px !important;
    box-sizing: border-box;
}

.footer-newsletter-form .newsletter-btn {
    position: absolute !important;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    z-index: 10;
}


.footer-newsletter-form .newsletter-btn:hover {
    transform: translateY(-50%) scale(1.08) rotate(-15deg);
}

