/* ========================================
   WEBLANCE - Main Stylesheet
   Theme: Soft & Elegant
   Primary:   #F1F5F9
   Secondary: #E2E8F0
   Accent:    #6366F1
   ======================================== */

/* CSS Variables */
:root {
    /* Accent / brand */
    --primary-green:   #6366F1;
    --dark-green:      #4F46E5;
    --light-green:     #818CF8;
    --neon-green:      #A5B4FC;

    /* Backgrounds */
    --bg-black:        #F1F5F9;
    --bg-dark:         #E2E8F0;
    --bg-darker:       #EEF2FF;
    --bg-card:         #FFFFFF;
    --bg-card-hover:   #F8FAFF;

    /* Text */
    --text-white:      #1E293B;
    --text-light:      #334155;
    --text-gray:       #64748B;

    /* Borders */
    --border-color:    #E2E8F0;
    --border-green:    rgba(99,102,241,0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #818CF8 100%);
    --gradient-1:       linear-gradient(135deg, #6366F1 0%, #818CF8 100%);
    --gradient-dark:    linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    --gradient-subtle:  linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(129,140,248,0.03) 100%);

    /* Shadows */
    --shadow-green:    0 0 40px rgba(99,102,241,0.2);
    --shadow-card:     0 4px 24px rgba(99,102,241,0.08);
    --shadow-glow:     0 0 60px rgba(99,102,241,0.12);
}

/* Reset & Base */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-light);
    line-height: 1.75;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.25;
}

p, span, a, li, td, th, label, input, textarea, select, button {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

a { text-decoration: none; transition: all 0.3s ease; }

.container { max-width: 1200px; padding: 0 24px; }

/* ── Text & Utility ── */
.text-green { color: var(--primary-green) !important; }
.text-gray  { color: var(--text-gray) !important; }

/* ── Buttons ── */
.btn-green {
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
    display: inline-block;
}
.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(99,102,241,0.45);
    color: #fff;
}

.navbar .btn-green {
    padding: 7px 20px;
    font-size: 0.82rem;
    box-shadow: 0 2px 12px rgba(99,102,241,0.3);
}

.btn-outline-green {
    background: transparent;
    color: var(--primary-green);
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--primary-green);
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
    display: inline-block;
}
.btn-outline-green:hover {
    background: var(--gradient-primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(99,102,241,0.4);
}

/* ── Custom Navbar (wl-nav) ── */
.wl-nav {
    background: rgba(3,3,3,0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(99,102,241,0.12);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    transition: background 0.4s ease;
}
.wl-nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 30%, var(--neon-green) 50%, var(--primary-green) 70%, transparent 100%);
    opacity: 0.4;
    animation: navGlow 4s ease-in-out infinite;
}
@keyframes navGlow {
    0%,100% { opacity: 0.3; }
    50%      { opacity: 0.7; }
}
.wl-nav.scrolled {
    background: rgba(3,3,3,0.97);
    box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}
.wl-nav-inner {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 12px 24px;
    flex-wrap: nowrap !important;
    width: 100%;
}

/* Brand */
.nav-brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-wrap {
    position: relative;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-logo {
    width: 36px; height: 36px;
    object-fit: contain;
    border-radius: 50%;
    position: relative; z-index: 2;
    transition: transform 0.4s ease;
    animation: logoEntrance 0.8s ease both;
}
.nav-logo-ring {
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, var(--primary-green) 60deg, var(--neon-green) 120deg, transparent 180deg, transparent 360deg);
    animation: ringRotate 3s linear infinite;
    z-index: 1; opacity: 0.85;
}
.nav-logo-ring::after {
    content: ''; position: absolute; inset: 2px;
    background: var(--bg-black); border-radius: 50%;
}
.nav-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; font-weight: 900;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-white);
    animation: textSlideIn 0.7s ease 0.2s both;
    position: relative; white-space: nowrap;
}
.nav-brand-accent {
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 50%, #4F46E5 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(99,102,241,0.5));
}
.nav-brand-wrap:hover .nav-logo { transform: rotate(-8deg) scale(1.1); }
.nav-brand-wrap:hover .nav-logo-ring { animation-duration: 0.8s; opacity: 1; }

@keyframes logoEntrance {
    from { opacity:0; transform: scale(0.5) rotate(-20deg); }
    to   { opacity:1; transform: scale(1) rotate(0deg); }
}
@keyframes textSlideIn {
    from { opacity:0; transform: translateX(-16px); }
    to   { opacity:1; transform: translateX(0); }
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Desktop nav links */
.wl-nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 2px;
    list-style: none !important;
    margin: 0 auto;
    padding: 4px 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    flex-shrink: 1;
}
.wl-nav-links li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.wl-nav-links li::before,
.wl-nav-links li::marker { display: none !important; content: none !important; }
.wl-nav-link {
    display: flex; align-items: center; gap: 6px;
    color: var(--text-gray);
    font-size: 0.875rem; font-weight: 500;
    padding: 7px 14px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
}
.wl-nav-link i { font-size: 0.72rem; opacity: 0; transition: opacity 0.3s; }
.wl-nav-link:hover i, .wl-nav-link.active i { opacity: 1; }
.wl-nav-link:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.06);
}
.wl-nav-link.active {
    color: #000 !important;
    background: var(--gradient-primary);
    box-shadow: 0 4px 16px rgba(99,102,241,0.35);
    font-weight: 600;
}

/* Right actions */
.wl-nav-actions {
    display: flex; align-items: center; gap: 8px;
    flex-shrink: 0;
}

/* Red button styling for specific form button */
#wlNav > div.container.wl-nav-inner > div > div > ul > li:nth-child(3) > form > button {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3) !important;
}

#wlNav > div.container.wl-nav-inner > div > div > ul > li:nth-child(3) > form > button:hover {
    background: linear-gradient(135deg, #ff6b81 0%, #ff4757 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.5) !important;
    transform: translateY(-2px) !important;
}
.nav-icon-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-gray);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; cursor: pointer;
    transition: all 0.3s ease; padding: 0;
}
.nav-icon-btn:hover {
    color: var(--primary-green);
    background: rgba(99,102,241,0.1);
    border-color: var(--border-green);
    box-shadow: 0 0 16px rgba(99,102,241,0.2);
    transform: translateY(-2px);
}
.nav-login-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 50px;
    border: 1px solid rgba(99,102,241,0.2);
    color: var(--text-light); font-size: 0.88rem; font-weight: 500;
    text-decoration: none; white-space: nowrap;
    transition: all 0.25s;
}
.nav-login-link:hover { color: var(--primary-green); border-color: rgba(99,102,241,0.45); background: rgba(99,102,241,0.06); }
.nav-getstarted { padding: 7px 18px; font-size: 0.82rem; white-space: nowrap; }

/* User dropdown */
.wl-user-wrap { position: relative; }
.nav-user-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.88rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-user-btn:hover, .nav-user-btn.open {
    background: rgba(99,102,241,0.15);
    color: var(--primary-green);
    box-shadow: 0 0 16px rgba(99,102,241,0.2);
}
.user-name-text { font-size: 0.88rem; }
.user-avatar {
    width: 28px; height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 800; color: #000; flex-shrink: 0;
}
.user-avatar-lg {
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: #000; flex-shrink: 0;
}
.wl-user-dropdown {
    display: none;
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px; padding: 8px;
    min-width: 220px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.7);
    z-index: 2000;
}
.wl-user-dropdown.open { display: block; }
.wl-user-dropdown .dropdown-header {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 12px 8px;
    color: var(--text-light); font-size: 0.88rem;
}
.wl-user-dropdown .dropdown-header .fw-bold { color: var(--text-white); font-size: 0.92rem; }
.wl-user-dropdown .dropdown-divider { border-color: var(--border-color); margin: 4px 8px; }
.wl-user-dropdown .dropdown-item {
    color: var(--text-light); border-radius: 10px;
    padding: 10px 14px; font-size: 0.88rem;
    transition: all 0.2s ease;
    background: none; border: none;
    width: 100%; text-align: left; cursor: pointer; display: block;
}
.wl-user-dropdown .dropdown-item:hover { background: rgba(255,107,107,0.1); color: #ff6b6b; }

/* Hamburger (mobile only) */
.wl-hamburger {
    display: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    width: 40px; height: 40px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; cursor: pointer; padding: 0;
    transition: all 0.3s ease; flex-shrink: 0;
}
.wl-hamburger:hover { border-color: var(--border-green); background: rgba(99,102,241,0.08); }
.wl-hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--text-light); border-radius: 2px;
    transition: all 0.3s ease;
}
.wl-hamburger span:nth-child(2) { width: 14px; }
.wl-hamburger:hover span { background: var(--primary-green); }

/* Mobile menu drawer */
.wl-mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    backdrop-filter: blur(4px);
}
.wl-mobile-menu.open { display: block; }
.wl-mobile-menu-inner {
    position: absolute; top: 0; right: 0;
    width: 280px; height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    padding: 0;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}
.wl-mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border-color);
}
.wl-mobile-menu-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 1rem;
    color: var(--text-white); letter-spacing: 1px;
}

/* Mobile auth section */
.wl-mobile-auth {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

.wl-mobile-close {
    background: none; border: none; color: var(--text-gray);
    font-size: 1.5rem; cursor: pointer; padding: 4px;
    transition: all 0.3s ease;
}
.wl-mobile-close:hover { color: var(--primary-green); transform: scale(1.1); }

.wl-mobile-links {
    list-style: none !important;
    margin: 0; padding: 12px;
}
.wl-mobile-links li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.wl-mobile-links li::before,
.wl-mobile-links li::marker { display: none !important; content: none !important; }
.wl-mobile-link {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-gray);
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 0.95rem; font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 4px;
}
.wl-mobile-link i { font-size: 0.9rem; width: 18px; text-align: center; }
.wl-mobile-link:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
}
.wl-mobile-link.active {
    background: rgba(99,102,241,0.1);
    color: var(--primary-green);
    border: 1px solid rgba(99,102,241,0.2);
}
.wl-mobile-auth {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
}

/* footer brand kept */
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-text {
    font-size: 1.7rem; font-weight: 900;
    letter-spacing: 3px; text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}


/* ── Auth Pages ── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-black);
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}
.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.auth-page::after {
    content: '';
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 52px 48px;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    animation: authCardIn 0.6s cubic-bezier(0.175,0.885,0.32,1.275) forwards;
}
@keyframes authCardIn {
    from { opacity:0; transform: translateY(30px) scale(0.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 28px 28px 0 0;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--gradient-primary);
    border-radius: 18px;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(99,102,241,0.4);
}
.auth-logo .logo-mark i { font-size: 1.8rem; color: #000; }
.auth-logo h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.auth-logo p { color: var(--text-gray); font-size: 0.9rem; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--text-gray);
    font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}
.social-login { display: flex; gap: 12px; margin-bottom: 24px; }
.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-btn:hover {
    border-color: var(--border-green);
    color: var(--text-white);
    background: rgba(99,102,241,0.04);
    transform: translateY(-2px);
}
.auth-input-group { position: relative; margin-bottom: 18px; }
.auth-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.auth-input-group .input-icon {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: var(--text-gray);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.3s;
}
.auth-input-group input {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 14px 16px 14px 44px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}
.auth-input-group input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.auth-input-group:focus-within .input-icon { color: var(--primary-green); }
.auth-input-group input::placeholder { color: #444; }
.password-toggle {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.3s;
}
.password-toggle:hover { color: var(--primary-green); }
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 0.85rem;
}
.auth-options label { display: flex; align-items: center; gap: 8px; color: var(--text-gray); cursor: pointer; }
.auth-options a { color: var(--primary-green); font-weight: 500; }
.auth-options a:hover { text-decoration: underline; }
.btn-auth {
    width: 100%;
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}
.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.5);
}
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--text-gray);
}
.auth-footer a { color: var(--primary-green); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }
.errorlist { list-style: none; padding: 0; margin: 0 0 4px; }
.errorlist li {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.errorlist li::before { content: '⚠'; }

/* ── Hero Section ── */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 40%, #818CF8 100%) !important;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Animated grid background */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Remove old dark bottom fade */
.hero-section::after {
    display: none;
}

.hero-container { position: relative; z-index: 2; }

/* ── Centered hero text ── */
.hero-gradient-text {
    background: linear-gradient(135deg, #6366F1 0%, #00ffcc 50%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shad       ow(0 0 30px rgba(99,102,241,0.45));
}
/* ── Hero text colors on indigo background ── */
.hero-tagline {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
    font-weight: 400;
    min-height: 1.4em;
}
.typed-highlight { border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 2px; color: #fff; }
.hero-sub {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
    max-width: 520px;
    margin-left: 0;
    margin-right: auto;
    line-height: 1.6;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.7);
}
.hero-trust-item i { color: #4ade80; font-size: 0.68rem; }
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: clamp(16px, 4vw, 40px);
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-item { text-align: center; min-width: 55px; }
.hero-stat-item .stat-num {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hero-stat-item .stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}
.hero-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 0.8s cubic-bezier(0.175,0.885,0.32,1.275) forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

/* Remove duplicate ::before/::after — already defined above */
.hero-container { position: relative; z-index: 2; }

/* ── Glow Orbs — hidden on new hero (blobs are inline) ── */
.hero-orb { display: none; }

/* ── Floating Tech Badges ── */
.hero-float-badge {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(8px);
    display: flex; align-items: center; gap: 6px;
}
.hero-float-badge i { color: #4ade80; }
.hfb-1 { top: 18%; left: 4%;  animation: badgeFloat 6s ease-in-out infinite; }
.hfb-2 { top: 12%; right: 6%; animation: badgeFloat 7s ease-in-out infinite 1s; }
.hfb-3 { bottom: 28%; left: 3%; animation: badgeFloat 8s ease-in-out infinite 0.5s; }
.hfb-4 { bottom: 22%; right: 4%; animation: badgeFloat 6.5s ease-in-out infinite 1.5s; }
.hfb-5 { top: 50%; left: 2%;  animation: badgeFloat 9s ease-in-out infinite 2s; }
@keyframes badgeFloat {
    0%,100% { transform: translateY(0); opacity: 0.5; }
    50%      { transform: translateY(-12px); opacity: 0.9; }
}

/* ── Hero Content ── */
.hero-content {
    z-index: 2;
    position: relative;
    animation: heroFadeIn 0.9s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    color: var(--primary-green);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--primary-green);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-white);
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero-line-1 { display: block; }
.hero-line-2 { display: block; }
.hero-gradient-text {
    background: linear-gradient(135deg, #6366F1 0%, #00ffcc 50%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(99,102,241,0.5));
}

.hero-tagline {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 400;
    min-height: 1.6em;
}
.typed-highlight {
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 2px;
}

.hero-sub {
    font-size: clamp(0.82rem, 1.3vw, 0.92rem);
    color: var(--text-gray);
    margin-bottom: 22px;
    opacity: 0.75;
    max-width: 520px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Trust row */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-gray);
}
.hero-trust-item i { color: var(--primary-green); font-size: 0.7rem; }

/* ── Hero Visual (right side) ── */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 460px;
}

/* Browser Mockup */
.hero-mockup {
    background: #0d0d0d;
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(99,102,241,0.08);
    animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(0.5deg); }
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #161616;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.72rem;
    color: #666;
    margin-left: 8px;
    display: flex; align-items: center;
}

.mockup-screen { padding: 20px; }
.mockup-hero-bar {
    height: 80px;
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(79,70,229,0.04));
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid rgba(99,102,241,0.1);
    position: relative;
    overflow: hidden;
}
.mockup-hero-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.06) 50%, transparent 100%);
    animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mockup-lines { margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.mockup-line {
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
}
.mockup-line.w-75 { width: 75%; }
.mockup-line.w-50 { width: 50%; }
.mockup-line.w-60 { width: 60%; }

.mockup-cards-row {
    display: flex; gap: 10px; margin-bottom: 16px;
}
.mockup-card {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 10px;
    display: flex; align-items: center; justify-content: center;
}
.mockup-card-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}

.mockup-btn-row { display: flex; gap: 10px; }
.mockup-btn-green {
    flex: 1;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}
.mockup-btn-outline {
    flex: 1;
    border: 1px solid rgba(99,102,241,0.3);
    color: #6366F1;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

/* Floating stat cards */
.hero-stat-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(17,17,17,0.9);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 14px;
    padding: 10px 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    white-space: nowrap;
    z-index: 5;
}
.hstat-icon {
    width: 36px; height: 36px;
    background: rgba(99,102,241,0.12);
    color: var(--primary-green);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.hstat-num { font-size: 1rem; font-weight: 800; color: #fff; font-family: 'Poppins',sans-serif; line-height: 1; }
.hstat-lbl { font-size: 0.68rem; color: #666; margin-top: 2px; }

.hstat-1 { top: -20px; left: -30px; animation: statFloat 5s ease-in-out infinite; }
.hstat-2 { bottom: 60px; left: -40px; animation: statFloat 6s ease-in-out infinite 1s; }
.hstat-3 { bottom: -10px; right: -20px; animation: statFloat 7s ease-in-out infinite 0.5s; }
@keyframes statFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ── Hero Dashboard (new right panel) ── */
.hero-dashboard {
    background: #0d0d0d;
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 60px rgba(99,102,241,0.06);
    animation: mockupFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.hd-header {
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 10px;
}
.hd-dots { display: flex; gap: 4px; }
.hd-dots span { width: 8px; height: 8px; border-radius: 50%; }
.hd-title { flex: 1; font-size: 0.68rem; color: #555; text-align: center; }
.hd-live { display: flex; align-items: center; gap: 4px; font-size: 0.65rem; color: #6366F1; font-weight: 700; }
.hd-live-dot { width: 5px; height: 5px; background: #6366F1; border-radius: 50%; animation: pulse 1.5s infinite; }

/* Stats row */
.hd-stats-row { display: flex; gap: 6px; margin-bottom: 10px; }
.hd-stat {
    flex: 1; text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 7px 4px;
}
.hd-stat-num { font-family: 'Poppins',sans-serif; font-size: 0.9rem; font-weight: 800; color: #6366F1; line-height: 1; }
.hd-stat-lbl { font-size: 0.55rem; color: #555; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Section label */
.hd-section-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #444; margin-bottom: 6px; }

/* Project cards */
.hd-project-card {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; padding: 7px 10px;
    margin-bottom: 5px;
    transition: border-color 0.2s;
}
.hd-project-card:hover { border-color: rgba(99,102,241,0.15); }
.hd-proj-icon {
    width: 26px; height: 26px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; flex-shrink: 0;
}
.hd-proj-info { flex: 1; }
.hd-proj-name { font-size: 0.7rem; color: #ccc; font-weight: 600; margin-bottom: 4px; }
.hd-proj-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.hd-proj-fill { height: 100%; border-radius: 2px; transition: width 1.5s ease; }
.hd-proj-pct { font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }

/* Services row */
.hd-services-row { display: flex; gap: 5px; margin-bottom: 10px; }
.hd-svc {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 6px 3px;
    font-size: 0.55rem; color: #666;
    transition: all 0.2s;
}
.hd-svc i { color: #6366F1; font-size: 0.75rem; }
.hd-svc:hover { border-color: rgba(99,102,241,0.2); color: #6366F1; background: rgba(99,102,241,0.04); }

/* CTA row */
.hd-cta-row { display: flex; gap: 6px; }
.hd-btn-primary {
    flex: 1; background: linear-gradient(135deg,#6366F1,#4F46E5); color: #000;
    font-size: 0.72rem; font-weight: 700; border-radius: 8px;
    padding: 8px; text-align: center; text-decoration: none;
    transition: all 0.2s;
}
.hd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79,70,229,0.35); color: #000; }
.hd-btn-outline {
    flex: 1; border: 1px solid rgba(99,102,241,0.25); color: #6366F1;
    font-size: 0.72rem; font-weight: 600; border-radius: 8px;
    padding: 8px; text-align: center; text-decoration: none;
    transition: all 0.2s;
}
.hd-btn-outline:hover { background: rgba(99,102,241,0.08); color: #6366F1; }

/* ── Floating notification cards ── */
.hero-notif {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: rgba(13,13,13,0.95);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 14px; padding: 10px 14px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    white-space: nowrap; z-index: 5;
    min-width: 200px;
}
.hnotif-icon {
    width: 34px; height: 34px;
    background: rgba(99,102,241,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.hnotif-title { font-size: 0.78rem; font-weight: 700; color: #fff; }
.hnotif-sub   { font-size: 0.68rem; color: #666; margin-top: 1px; }

.hnotif-1 { top: -18px; left: -20px; animation: notifFloat 5s ease-in-out infinite; }
.hnotif-2 { bottom: 80px; left: -30px; animation: notifFloat 6.5s ease-in-out infinite 1s; }
.hnotif-3 { bottom: -14px; right: -10px; animation: notifFloat 7s ease-in-out infinite 0.5s; }

@keyframes notifFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ── Client avatars row ── */
.hero-clients { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.hero-avatars { display: flex; }
.hero-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: #fff;
    border: 2px solid #030303;
    margin-left: -8px; font-family: 'Poppins',sans-serif;
}
.hero-avatars .hero-avatar:first-child { margin-left: 0; }
.hero-avatar-more {
    background: rgba(99,102,241,0.12) !important;
    color: #6366F1 !important;
    font-size: 0.62rem !important;
    border-color: rgba(99,102,241,0.2) !important;
}
.hero-clients-stars { color: #ffa500; font-size: 0.75rem; letter-spacing: 1px; }
.hero-clients-label { font-size: 0.78rem; color: #888; margin-top: 1px; }

/* Light mode overrides */
body.light-mode .hero-dashboard {
    background: #fff !important;
    border-color: rgba(0,170,85,0.2) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
}
body.light-mode .hd-stat,
body.light-mode .hd-project-card,
body.light-mode .hd-svc { background: #f8f9fa !important; border-color: rgba(0,0,0,0.06) !important; }
body.light-mode .hd-stat-num { color: #4F46E5 !important; }
body.light-mode .hd-stat-lbl,
body.light-mode .hd-section-label { color: #999 !important; }
body.light-mode .hd-proj-name { color: #333 !important; }
body.light-mode .hd-proj-bar { background: rgba(0,0,0,0.08) !important; }
body.light-mode .hero-notif { background: rgba(255,255,255,0.98) !important; border-color: rgba(0,170,85,0.15) !important; }
body.light-mode .hnotif-title { color: #0a0a0a !important; }
body.light-mode .hero-avatar { border-color: #f0f2f5 !important; }
body.light-mode .hero-avatar-more { background: rgba(0,170,85,0.1) !important; color: #4F46E5 !important; }

/* ── Hero Stats (mobile) ── */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    margin-top: 32px;
}
.hero-stat-item { text-align: center; min-width: 60px; }
.hero-stat-item .stat-num {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hero-stat-item .stat-label {
    font-size: 0.78rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── Hero Reveal Animation ── */
.hero-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s ease forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

/* Light mode overrides for new hero */
body.light-mode .hero-section {
    background: linear-gradient(135deg, #eaf7f0 0%, #f0f2f5 60%, #e8f0fe 100%) !important;
}
body.light-mode .hero-gradient-text {
    background: linear-gradient(135deg, #4F46E5 0%, #4F46E5 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 20px rgba(0,170,85,0.3)) !important;
}
body.light-mode .hero-section::after {
    background: linear-gradient(to bottom, transparent, #f0f2f5) !important;
}
body.light-mode .hero-float-badge {
    background: rgba(255,255,255,0.7) !important;
    border-color: rgba(0,170,85,0.2) !important;
    color: #555 !important;
}
body.light-mode .hero-mockup {
    background: #fff !important;
    border-color: rgba(0,170,85,0.2) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 40px rgba(0,170,85,0.06) !important;
}
body.light-mode .mockup-bar { background: #f5f5f5 !important; border-color: rgba(0,0,0,0.06) !important; }
body.light-mode .mockup-url { background: rgba(0,0,0,0.05) !important; color: #999 !important; }
body.light-mode .mockup-line { background: rgba(0,0,0,0.08) !important; }
body.light-mode .mockup-card { background: rgba(0,0,0,0.03) !important; border-color: rgba(0,0,0,0.06) !important; }
body.light-mode .hero-stat-float {
    background: rgba(255,255,255,0.95) !important;
    border-color: rgba(0,170,85,0.15) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}
body.light-mode .hstat-num { color: #0a0a0a !important; }
body.light-mode .hstat-lbl { color: #888 !important; }
body.light-mode .hero-orb-1 { background: radial-gradient(circle, rgba(0,170,85,0.1) 0%, transparent 70%) !important; }
body.light-mode .hero-orb-2 { background: radial-gradient(circle, rgba(0,170,85,0.07) 0%, transparent 70%) !important; }

/* ── Sections ── */
.section { padding: 100px 0; position: relative; }

.section-title {
    text-align: center;
    margin-bottom: 64px;
}
.section-title .label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.section-title p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 28px auto 0;
    line-height: 1.8;
}

/* ── Cards ── */
.card-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.card-custom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.card-custom:hover::before { transform: scaleX(1); }
.card-custom:hover {
    transform: translateY(-10px);
    border-color: var(--border-green);
    box-shadow: 0 20px 60px rgba(99,102,241,0.12), var(--shadow-card);
    background: var(--bg-card-hover);
}

.card-icon {
    width: 72px; height: 72px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.card-custom:hover .card-icon {
    background: rgba(99,102,241,0.15);
    box-shadow: 0 0 30px rgba(99,102,241,0.3);
    transform: scale(1.1);
}

.card-custom h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card-custom h4, .card-custom h5 { margin-bottom: 10px; }
.card-custom p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.75; flex-grow: 1; }

/* Glass card */
.glass-card {
    background: rgba(17,17,17,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-green);
    border-radius: 20px;
    padding: 32px;
}

/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%) !important;
    padding: 90px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(99,102,241,0.15);
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(99,102,241,.09) 1px, transparent 1px),
        radial-gradient(rgba(139,92,246,.06) 1px, transparent 1px);
    background-size: 40px 40px, 65px 65px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
    animation: phGrid 20s linear infinite;
}
@keyframes phGrid {
    0%   { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 85px 85px; }
}
.page-header::after {
    content: '';
    position: absolute;
    top: -180px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 700px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.18) 0%, rgba(139,92,246,0.08) 40%, transparent 70%);
    pointer-events: none;
    animation: phGlow 8s ease-in-out infinite;
}
@keyframes phGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}
.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #1e1b4b !important;
    text-shadow: none;
}
.page-header p {
    color: #475569 !important;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb {
    justify-content: center;
    background: rgba(255,255,255,0.65);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(99,102,241,0.2);
    display: inline-flex;
    margin: 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
}
.page-header .breadcrumb-item a { color: #6366F1 !important; }
.page-header .breadcrumb-item.active { color: #64748b !important; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: #94a3b8 !important; }
.page-header .label, .page-header .ab-chip, .page-header .srv-label {
    position: relative; z-index: 1;
}
/* text-green inside page-header stays gradient */
.page-header h1 .text-green {
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 40%, #4F46E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Portfolio ── */
.portfolio-filters { text-align: center; margin-bottom: 48px; }
.filter-btn {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    margin: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-primary);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}
.portfolio-item:hover { border-color: var(--border-green); }
.portfolio-img {
    width: 100%; height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: var(--primary-green); margin-bottom: 6px; font-size: 1.1rem; }
.portfolio-overlay p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 14px; opacity: 0.9; }

/* ── Pricing ── */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-green);
    box-shadow: 0 20px 60px rgba(99,102,241,0.1);
}
.pricing-card.popular {
    border-color: var(--primary-green);
    background: linear-gradient(180deg, rgba(99,102,241,0.05) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 60px rgba(99,102,241,0.1);
    padding-top: 60px;
    overflow: visible !important;
}
.pricing-card { position: relative; }
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #000;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(99,102,241,0.5);
    animation: badgePulse 2s ease-in-out infinite;
    white-space: nowrap;
    z-index: 10;
}
.popular-badge i { font-size: 0.75rem; }
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(99,102,241,0.4); }
    50%       { box-shadow: 0 4px 32px rgba(99,102,241,0.75); }
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 16px 0 6px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.price span { font-size: 0.95rem; color: var(--text-gray); font-weight: 400; }
.pricing-features { list-style: none; margin: 28px 0; text-align: left; }
.pricing-features li {
    padding: 9px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i.fa-check-circle { color: var(--primary-green); }
.pricing-features li i.fa-times-circle { color: #444; }

/* ── Forms ── */
.form-label { color: var(--text-light); font-size: 0.9rem; font-weight: 500; margin-bottom: 6px; }
.form-control {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.form-control:focus {
    background: var(--bg-dark);
    border-color: var(--primary-green);
    color: var(--text-light);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
    outline: none;
}
.form-control::placeholder { color: #555; }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control option { background: var(--bg-dark); }

.form-check-input:checked { background-color: var(--primary-green); border-color: var(--primary-green); }
.form-check-label { color: var(--text-gray); font-size: 0.9rem; }

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #001a0d 0%, #003320 50%, #001a0d 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-green);
    border-bottom: 1px solid var(--border-green);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 { color: var(--text-white); font-size: 2.4rem; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-section .btn-dark {
    background: var(--text-white);
    color: #000;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    position: relative; z-index: 1;
}
.cta-section .btn-dark:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.4);
}

/* ── Footer ── */
.footer-section {
    background: var(--bg-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}
.footer-section h3, .footer-section h4 { margin-bottom: 20px; }
.footer-about h3 { font-size: 1.8rem; }
.footer-section p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.8; }

.social-icons { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.social-icons a {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    transform: translateY(-4px);
    border-color: transparent;
    color: #fff;
}
/* Brand-specific hover colors */
.social-icons a[aria-label="Twitter"]:hover   { background: #1da1f2; box-shadow: 0 6px 20px rgba(29,161,242,0.4); }
.social-icons a[aria-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow: 0 6px 20px rgba(220,39,67,0.4); }
.social-icons a[aria-label="LinkedIn"]:hover  { background: #0077b5; box-shadow: 0 6px 20px rgba(0,119,181,0.4); }
.social-icons a[aria-label="GitHub"]:hover    { background: #333; box-shadow: 0 6px 20px rgba(255,255,255,0.15); }

.footer-links ul, .footer-services ul { list-style: none; }
.footer-links ul li, .footer-services ul li { margin-bottom: 10px; }
.footer-links ul li a, .footer-services ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links ul li a::before, .footer-services ul li a::before {
    content: '→';
    color: var(--primary-green);
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}
.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}
.footer-links ul li a:hover::before, .footer-services ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info { list-style: none; }
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-gray);
    font-size: 0.9rem;
}
.contact-info li i { color: var(--primary-green); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    background: var(--bg-black);
    padding: 24px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}
.footer-bottom p { margin: 0; color: var(--text-gray); font-size: 0.85rem; opacity: 0.8; }

/* ── Contact Info List ── */
.contact-info-list { list-style: none; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}
.contact-info-list li i {
    width: 42px; height: 42px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
    font-size: 1rem;
}

/* ── Map ── */
.map-container { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }

/* ── Alerts ── */
.alert-success {
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.4);
    color: var(--primary-green);
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.alert-error {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.4);
    color: #ff6b6b;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* ── Accordion ── */
.accordion-item { border-radius: 12px !important; overflow: hidden; }
.accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
}
.accordion-button:not(.collapsed) { color: var(--primary-green) !important; box-shadow: none; }
.accordion-button::after { filter: invert(1); }

/* ── Table ── */
.table-dark { --bs-table-bg: var(--bg-card); --bs-table-border-color: var(--border-color); }
.table-dark th { color: var(--primary-green); font-weight: 600; font-size: 0.9rem; }
.table-dark td { color: var(--text-light); font-size: 0.9rem; vertical-align: middle; }

/* ── Scroll Animations ── */
.scroll-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.8s ease; }

/* ── Spinner ── */
.spinner-border { color: var(--primary-green); }

/* ════════════════════════════════════════
   ADVANCED FEATURES
   ════════════════════════════════════════ */

/* ── Preloader ── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    animation: preloaderFadeIn 0.5s ease both;
}
@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* SVG ring */
.preloader-ring {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.preloader-ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: ringRotatePre 2s linear infinite;
}
@keyframes ringRotatePre {
    from { transform: rotate(-90deg); }
    to   { transform: rotate(270deg); }
}
#preloader-ring-circle {
    transition: stroke-dashoffset 0.3s ease;
}

.preloader-pct {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 12px rgba(99,102,241,0.6);
}

.preloader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--text-white);
    text-transform: uppercase;
}
.preloader-logo span {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(99,102,241,0.5));
}

.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(99,102,241,0.6);
}

.preloader-status {
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}


/* ── Scroll Progress Bar ── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(99,102,241,0.5);
}

/* ── Back to Top ── */
#back-to-top {
    position: fixed;
    bottom: 168px;   /* above AI float (100px) + 54px height + 14px gap */
    right: 28px;
    width: 48px; height: 48px;
    background: #fff;
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99,102,241,0.2);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.4);
}
/* SVG progress ring */
#back-to-top svg {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    transform: rotate(-90deg);
}
#back-to-top circle {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 2;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.1s linear;
    stroke-linecap: round;
}

/* ── WhatsApp Float ── */
#whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all 0.3s ease;
    animation: waPulse 3s infinite;
    text-decoration: none;
}
#whatsapp-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.7);
    color: #fff;
}
#whatsapp-btn::before {
    content: 'Chat with us';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#whatsapp-btn::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
#whatsapp-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
#whatsapp-btn:hover::after {
    opacity: 1;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── AI Chat Float (above WhatsApp) ── */
#ai-chat-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 54px; height: 54px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    z-index: 10001;
    box-shadow: 0 4px 24px rgba(99,102,241,0.6), 0 0 0 0 rgba(99,102,241,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: aiPulse 3s infinite;
    visibility: visible !important;
    opacity: 1 !important;
}
#ai-chat-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.7);
}
#ai-chat-float::before {
    content: 'Ask AI';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #1a1a1a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#ai-chat-float::after {
    content: '';
    position: absolute;
    right: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
#ai-chat-float:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
#ai-chat-float:hover::after { opacity: 1; }
.ai-float-dot {
    position: absolute;
    top: 2px; right: 2px;
    width: 10px; height: 10px;
    background: #4ADE80;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: aiDotPulse 2s infinite;
}
@keyframes aiPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(99,102,241,0.5); }
    50%       { box-shadow: 0 4px 40px rgba(99,102,241,0.8), 0 0 0 10px rgba(99,102,241,0.1); }
}
@keyframes aiDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ── Cookie Banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-green);
    padding: 20px 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; color: var(--text-gray); font-size: 0.88rem; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--primary-green); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(99,102,241,0.4); }
.cookie-decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-decline:hover { border-color: var(--text-gray); color: var(--text-light); }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg-dark); }
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.3s ease;
}
.testimonial-card.active { border-color: var(--border-green); }
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 28px;
    font-size: 5rem;
    color: rgba(99,102,241,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: #ffd700; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text-gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text-white); font-size: 0.95rem; }
.testimonial-role { color: var(--text-gray); font-size: 0.8rem; margin-top: 2px; }

.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}
.t-dot.active { background: var(--primary-green); width: 24px; border-radius: 4px; }

/* ── Typing cursor ── */
.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary-green);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Tech Stack Badges ── */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 4px;
}
.tech-badge:hover {
    border-color: var(--border-green);
    color: var(--primary-green);
    background: rgba(99,102,241,0.05);
    transform: translateY(-2px);
}
.tech-badge i { color: var(--primary-green); }

/* ── Notification Toast ── */
.toast-stack {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.wl-toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-green);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 280px;
    max-width: 340px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: all;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wl-toast.show { transform: translateX(0); }
.wl-toast.error { border-left-color: #ff6b6b; }
.wl-toast.warning { border-left-color: #ffd700; }
.wl-toast-icon { font-size: 1.1rem; color: var(--primary-green); flex-shrink: 0; margin-top: 1px; }
.wl-toast.error .wl-toast-icon { color: #ff6b6b; }
.wl-toast.warning .wl-toast-icon { color: #ffd700; }
.wl-toast-body { flex: 1; }
.wl-toast-title { font-weight: 700; font-size: 0.88rem; color: var(--text-white); margin-bottom: 2px; }
.wl-toast-msg { font-size: 0.82rem; color: var(--text-gray); line-height: 1.5; }
.wl-toast-close { background: none; border: none; color: var(--text-gray); cursor: pointer; font-size: 0.9rem; padding: 0; flex-shrink: 0; transition: color 0.2s; }
.wl-toast-close:hover { color: var(--text-white); }


/* ── Skill bars ── */
.skill-bar-wrap { margin-bottom: 20px; }
.skill-bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.88rem; color: var(--text-light); font-weight: 500; }
.skill-bar-track { height: 6px; background: var(--border-color); border-radius: 6px; overflow: hidden; }
.skill-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    width: 0%;
    transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(99,102,241,0.4);
}

/* ── Live chat widget ── */
#chat-widget {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-green);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 1001;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#chat-widget.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
    background: var(--gradient-primary);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
}
.chat-header h6 { margin: 0; font-size: 0.9rem; font-weight: 700; color: #000; }
.chat-header small { font-size: 0.72rem; color: rgba(0,0,0,0.6); }
.chat-close-btn { background: none; border: none; color: rgba(0,0,0,0.6); cursor: pointer; font-size: 1rem; transition: color 0.2s; }
.chat-close-btn:hover { color: #000; }
.chat-messages { padding: 20px; min-height: 160px; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 14px 14px 14px 4px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 85%;
    animation: bubbleIn 0.3s ease;
}
@keyframes bubbleIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.chat-input-row {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
}
.chat-input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 16px;
    color: var(--text-light);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
}
.chat-input:focus { border-color: var(--primary-green); }
.chat-send-btn {
    width: 38px; height: 38px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.chat-send-btn:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(99,102,241,0.4); }

/* ════════════════════════════════════════
   SERVICE ROWS — What We Offer
   ════════════════════════════════════════ */

.service-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: background 0.3s ease;
}
.service-row:hover {
    background: rgba(99,102,241,0.015);
    border-radius: 20px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: -24px;
    margin-right: -24px;
}

/* Left column — icon + number */
.service-row-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}
.service-big-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border-green);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(99,102,241,0.08);
}
.service-row:hover .service-big-icon {
    background: rgba(99,102,241,0.12);
    box-shadow: 0 0 40px rgba(99,102,241,0.25);
    transform: scale(1.08) rotate(-3deg);
}
.service-number {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--border-color);
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}
.service-row:hover .service-number { color: var(--border-green); }

/* Right column — content */
.service-row-content { flex: 1; }

.service-row-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.service-tag {
    display: inline-block;
    background: rgba(99,102,241,0.08);
    color: var(--primary-green);
    border: 1px solid var(--border-green);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-row-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.2;
}
.service-lead {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}
.service-desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Price badge */
.service-price-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px 20px;
    text-align: center;
    flex-shrink: 0;
    min-width: 130px;
    transition: all 0.3s ease;
}
.service-row:hover .service-price-badge {
    border-color: var(--border-green);
    background: rgba(99,102,241,0.04);
}
.price-from {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.price-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.price-amount small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
}

/* Features grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 24px;
    margin-top: 20px;
}
.sf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}
.sf-item i {
    color: var(--primary-green);
    font-size: 0.75rem;
    flex-shrink: 0;
    background: rgba(99,102,241,0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Portfolio item inner wrapper & category badge ── */
.portfolio-item-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-card);
}
.portfolio-item-inner:hover {
    border-color: var(--border-green);
    box-shadow: 0 12px 40px rgba(99,102,241,0.12);
}
.portfolio-item-inner:hover .portfolio-img { transform: scale(1.08); }
.portfolio-item-inner:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(99,102,241,0.12);
    color: var(--primary-green);
    border: 1px solid var(--border-green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}


/* ════════════════════════════════════════
   ADVANCED FEATURES
   ════════════════════════════════════════ */

/* ── Search Overlay (right-side chat panel) ── */
#search-overlay {
    position: fixed;
    bottom: 170px;
    right: 24px;
    z-index: 10000;
    width: 360px;
    max-width: calc(100vw - 32px);
    display: none;
    flex-direction: column;
    /* no backdrop */
    background: none;
    backdrop-filter: none;
    inset: unset;
    padding-top: 0;
}
#search-overlay.open { display: flex !important; }
.search-box {
    width: 100%;
    max-width: 680px;
    padding: 0 20px;
}
.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-green);
    border-radius: 16px;
    padding: 0 20px;
    box-shadow: 0 0 40px rgba(99,102,241,0.15);
}
.search-icon { color: var(--primary-green); font-size: 1.1rem; margin-right: 14px; flex-shrink: 0; }
#searchInput {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 0.70rem;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
#searchInput::placeholder { color: #444; }
.search-esc-hint {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.72rem;
    color: var(--text-gray);
    flex-shrink: 0;
}
.search-results {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 360px;
    overflow-y: auto;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.2s ease;
}
.search-result-item:hover, .search-result-item.focused {
    border-color: var(--border-green);
    background: rgba(99,102,241,0.05);
    color: var(--text-white);
    transform: translateX(4px);
}
.search-result-icon {
    width: 38px; height: 38px;
    background: rgba(99,102,241,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.search-result-title { font-weight: 600; font-size: 0.95rem; }
.search-result-desc  { font-size: 0.78rem; color: var(--text-gray); margin-top: 2px; }
.search-no-results   { text-align: center; color: var(--text-gray); padding: 32px; font-size: 0.9rem; }

/* ── Navbar icon buttons ── */
.nav-icon-btn {
    background: none;
    border: none;
    color: var(--text-light);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.nav-icon-btn:hover {
    color: var(--primary-green);
    background: rgba(99,102,241,0.08);
}

/* ── Light Mode ── */
body.light-mode {
    --bg-black:       #f0f2f5;
    --bg-dark:        #ffffff;
    --bg-card:        #ffffff;
    --bg-card-hover:  #f8f9fa;
    --text-white:     #0a0a0a;
    --text-light:     #1a1a2e;
    --text-gray:      #555555;
    --border-color:   rgba(0,0,0,0.1);
    --border-green:   rgba(0,160,70,0.35);
    --primary-green:  #4F46E5;
    --dark-green:     #008844;
    --shadow-card:    0 4px 24px rgba(0,0,0,0.08);
    background-color: #f0f2f5;
    color: #1a1a2e;
}

/* Body & general text */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 { color: #0a0a0a; }
body.light-mode p   { color: #333; }
body.light-mode a   { color: #4F46E5; }

/* Navbar */
body.light-mode .wl-nav {
    background: rgba(255,255,255,0.97) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
body.light-mode .wl-nav.scrolled { background: rgba(255,255,255,0.99) !important; }
body.light-mode .wl-nav-links {
    background: rgba(0,0,0,0.04) !important;
    border-color: rgba(0,0,0,0.08) !important;
}
body.light-mode .wl-nav-link { color: #333 !important; }
body.light-mode .wl-nav-link:hover {
    color: #0a0a0a !important;
    background: rgba(0,0,0,0.06) !important;
}
body.light-mode .wl-nav-link.active { color: #000 !important; }
body.light-mode .nav-brand-text { color: #0a0a0a !important; }
body.light-mode .nav-brand-accent { color: #4F46E5 !important; }
body.light-mode .nav-icon-btn {
    color: #333 !important;
    background: rgba(0,0,0,0.05) !important;
    border-color: rgba(0,0,0,0.1) !important;
}
body.light-mode .nav-icon-btn:hover { color: #4F46E5 !important; }
body.light-mode .nav-login-link { color: #333 !important; }
body.light-mode .nav-user-btn {
    background: rgba(0,170,85,0.08) !important;
    border-color: rgba(0,170,85,0.2) !important;
    color: #1a1a2e !important;
}
body.light-mode .wl-user-dropdown {
    background: #fff !important;
    border-color: rgba(0,0,0,0.1) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}
body.light-mode .wl-mobile-menu-inner {
    background: #fff !important;
    border-left-color: rgba(0,0,0,0.08) !important;
}
body.light-mode .wl-mobile-link { color: #333 !important; }
body.light-mode .wl-mobile-link:hover,
body.light-mode .wl-mobile-link.active { color: #4F46E5 !important; }
body.light-mode .wl-hamburger span { background: #333 !important; }

/* Hero */
body.light-mode .hero-section { background: linear-gradient(135deg, #e8f5ee 0%, #f0f2f5 100%) !important; }
body.light-mode .hero-section::before { opacity: 0.3; }
body.light-mode .hero-section::after { opacity: 0.15; }
body.light-mode .hero-title { color: #0a0a0a !important; }
body.light-mode .hero-subtitle { color: #444 !important; }
body.light-mode .hero-desc { color: #555 !important; }
body.light-mode .typed-text { color: #4F46E5 !important; }

/* Sections */
body.light-mode .section { background: transparent; }
body.light-mode .section-alt { background: #e8edf2 !important; }
body.light-mode .section-title .label { color: #4F46E5 !important; }
body.light-mode .section-title h2 { color: #0a0a0a !important; }
body.light-mode .section-title p { color: #555 !important; }

/* Cards */
body.light-mode .card-custom,
body.light-mode .service-card,
body.light-mode .card-3d,
body.light-mode .pricing-card,
body.light-mode .portfolio-item-inner,
body.light-mode .testimonial-card,
body.light-mode .team-card,
body.light-mode .stat-card,
body.light-mode .process-card,
body.light-mode .faq-item,
body.light-mode .tech-item {
    background: #ffffff !important;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
    color: #1a1a2e !important;
}
body.light-mode .card-custom:hover,
body.light-mode .service-card:hover,
body.light-mode .card-3d:hover,
body.light-mode .pricing-card:hover {
    border-color: rgba(0,170,85,0.3) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}
body.light-mode .card-custom h3,
body.light-mode .card-custom h4,
body.light-mode .service-card h3,
body.light-mode .card-3d h3,
body.light-mode .pricing-card h3,
body.light-mode .testimonial-card h4,
body.light-mode .team-card h4 { color: #0a0a0a !important; }
body.light-mode .card-custom p,
body.light-mode .service-card p,
body.light-mode .card-3d p,
body.light-mode .pricing-card p { color: #555 !important; }

/* Pricing */
body.light-mode .pricing-card.popular {
    background: linear-gradient(180deg, rgba(0,170,85,0.06) 0%, #fff 40%) !important;
    border-color: #4F46E5 !important;
}
body.light-mode .price { color: #0a0a0a !important; }
body.light-mode .price span { color: #4F46E5 !important; }
body.light-mode .pricing-features li { color: #444 !important; }
body.light-mode .pricing-features li.unavailable { color: #aaa !important; }

/* Portfolio */
body.light-mode .portfolio-item-inner { background: #fff !important; }
body.light-mode .portfolio-item { border-color: rgba(0,0,0,0.08) !important; }
body.light-mode .portfolio-info h3 { color: #0a0a0a !important; }
body.light-mode .portfolio-info p { color: #555 !important; }
body.light-mode .filter-btn {
    background: rgba(0,0,0,0.05) !important;
    color: #333 !important;
    border-color: rgba(0,0,0,0.1) !important;
}
body.light-mode .filter-btn.active,
body.light-mode .filter-btn:hover {
    background: #4F46E5 !important;
    color: #fff !important;
}

/* Contact & Forms */
body.light-mode .contact-section,
body.light-mode .request-section { background: #f0f2f5 !important; }
body.light-mode .contact-form-wrap,
body.light-mode .form-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
}
body.light-mode .form-control,
body.light-mode .form-select,
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode input[type="tel"],
body.light-mode textarea,
body.light-mode select {
    background: #f8f9fa !important;
    border-color: rgba(0,0,0,0.15) !important;
    color: #1a1a2e !important;
}
body.light-mode .form-control:focus,
body.light-mode .form-select:focus,
body.light-mode input:focus,
body.light-mode textarea:focus,
body.light-mode select:focus {
    background: #fff !important;
    border-color: #4F46E5 !important;
    box-shadow: 0 0 0 3px rgba(0,170,85,0.12) !important;
    color: #1a1a2e !important;
}
body.light-mode .form-control::placeholder,
body.light-mode input::placeholder,
body.light-mode textarea::placeholder { color: #999 !important; }
body.light-mode label,
body.light-mode .form-label { color: #333 !important; }

/* Contact info items */
body.light-mode .contact-info-item,
body.light-mode .info-card {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
    color: #333 !important;
}
body.light-mode .contact-info-item h4,
body.light-mode .info-card h4 { color: #0a0a0a !important; }
body.light-mode .contact-info-item p,
body.light-mode .info-card p { color: #555 !important; }

/* About */
body.light-mode .about-section { background: #f0f2f5 !important; }
body.light-mode .about-text h2 { color: #0a0a0a !important; }
body.light-mode .about-text p { color: #444 !important; }
body.light-mode .skill-bar { background: rgba(0,0,0,0.08) !important; }
body.light-mode .stat-number { color: #0a0a0a !important; }
body.light-mode .stat-label { color: #555 !important; }

/* Services */
body.light-mode .services-section { background: #f0f2f5 !important; }
body.light-mode .service-icon { background: rgba(0,170,85,0.1) !important; }

/* Testimonials */
body.light-mode .testimonials-section { background: #e8edf2 !important; }
body.light-mode .testimonial-card { background: #fff !important; }
body.light-mode .testimonial-text { color: #444 !important; }
body.light-mode .testimonial-author { color: #0a0a0a !important; }
body.light-mode .testimonial-role { color: #666 !important; }

/* FAQ */
body.light-mode .faq-item { background: #fff !important; border-color: rgba(0,0,0,0.08) !important; }
body.light-mode .faq-q { color: #0a0a0a !important; background: transparent !important; }
body.light-mode .faq-a { color: #555 !important; }
body.light-mode .faq-item.open .faq-q { color: #4F46E5 !important; }

/* Search overlay */
body.light-mode #search-overlay { background: rgba(240,242,245,0.97) !important; }
body.light-mode .search-box { background: #fff !important; border-color: rgba(0,0,0,0.1) !important; }
body.light-mode #searchInput { background: #f8f9fa !important; color: #1a1a2e !important; border-color: rgba(0,0,0,0.1) !important; }
body.light-mode .search-result-item { color: #333 !important; }
body.light-mode .search-result-item:hover { background: rgba(0,170,85,0.06) !important; }
body.light-mode .search-result-title { color: #0a0a0a !important; }
body.light-mode .search-result-desc { color: #666 !important; }

/* Preloader */
body.light-mode #preloader { background: #f0f2f5 !important; }
body.light-mode .preloader-logo { color: #0a0a0a !important; }
body.light-mode .preloader-bar { background: rgba(0,0,0,0.1) !important; }

/* Toast */
body.light-mode .wl-toast {
    background: #fff !important;
    border-color: rgba(0,0,0,0.1) !important;
    color: #1a1a2e !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
}
body.light-mode .wl-toast-title { color: #0a0a0a !important; }
body.light-mode .wl-toast-msg { color: #555 !important; }

/* Back to top & WhatsApp */
body.light-mode #back-to-top { background: #fff !important; color: #0a0a0a !important; border-color: rgba(0,0,0,0.1) !important; }

/* Cookie banner */
body.light-mode #cookie-banner { background: #fff !important; color: #333 !important; border-color: rgba(0,0,0,0.1) !important; box-shadow: 0 -4px 20px rgba(0,0,0,0.08) !important; }
body.light-mode #cookie-banner p { color: #444 !important; }

/* Footer */
body.light-mode .footer-section { background: linear-gradient(135deg, #1a1040 0%, #1e1b4b 50%, #0d1117 100%) !important; }
body.light-mode .footer-section * { color: #ccc !important; }
body.light-mode .footer-section a:hover { color: #6366F1 !important; }
body.light-mode .footer-bottom { background: #141e2b !important; }
body.light-mode .footer-bottom p { color: #aaa !important; }

/* Misc utility */
body.light-mode .card-custom { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
body.light-mode .text-green { color: #4F46E5 !important; }
body.light-mode .text-gray  { color: #666 !important; }
body.light-mode .badge-green { background: rgba(0,170,85,0.12) !important; color: #4F46E5 !important; }
body.light-mode hr { border-color: rgba(0,0,0,0.1) !important; }
body.light-mode .scroll-progress { background: #4F46E5 !important; }

/* ── CTA Section ── */
body.light-mode .cta-section {
    background: linear-gradient(135deg, #e8f5ee 0%, #d4edda 50%, #e8f5ee 100%) !important;
    border-top-color: rgba(0,170,85,0.2) !important;
    border-bottom-color: rgba(0,170,85,0.2) !important;
}
body.light-mode .cta-section h2 { color: #0a0a0a !important; }
body.light-mode .cta-section p  { color: #444 !important; }
body.light-mode .cta-section .btn-dark {
    background: #0a0a0a !important;
    color: #fff !important;
}
body.light-mode .cta-section .btn-dark:hover {
    background: #4F46E5 !important;
}

/* ── Newsletter ── */
body.light-mode .newsletter-section { background: #f0f2f5 !important; }
body.light-mode .newsletter-card {
    background: #fff !important;
    border-color: rgba(0,170,85,0.15) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08) !important;
}
body.light-mode .newsletter-card h2 { color: #0a0a0a !important; }
body.light-mode .newsletter-card p  { color: #555 !important; }
body.light-mode .newsletter-input-wrap {
    background: #f8f9fa !important;
    border-color: rgba(0,0,0,0.1) !important;
}
body.light-mode .newsletter-input-wrap input {
    background: transparent !important;
    color: #1a1a2e !important;
}
body.light-mode .newsletter-input-wrap input::placeholder { color: #999 !important; }
body.light-mode .newsletter-note { color: #888 !important; }

/* ── Tech section ── */
body.light-mode .tech-section { background: #f0f2f5 !important; }
body.light-mode .tech-item {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
    color: #555 !important;
}
body.light-mode .tech-item:hover { border-color: rgba(0,170,85,0.3) !important; color: #4F46E5 !important; }
body.light-mode .tech-item i { color: #4F46E5 !important; }

/* ── FAQ section ── */
body.light-mode .faq-section { background: #f0f2f5 !important; }
body.light-mode .faq-item {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
}
body.light-mode .faq-q { color: #0a0a0a !important; background: transparent !important; }
body.light-mode .faq-a p { color: #555 !important; }
body.light-mode .faq-item.open .faq-q { color: #4F46E5 !important; }
body.light-mode .faq-icon { color: #4F46E5 !important; }

/* ── Services 3D cards ── */
body.light-mode .services-3d-section { background: #fff !important; }
body.light-mode .card-3d {
    background: #fff !important;
    border-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
body.light-mode .card-3d:hover { border-color: rgba(0,170,85,0.25) !important; }
body.light-mode .card-3d h3 { color: #0a0a0a !important; }
body.light-mode .card-3d p  { color: #555 !important; }
body.light-mode .card-3d-tag { color: #888 !important; background: rgba(0,0,0,0.04) !important; }
body.light-mode .card-3d-more { background: rgba(0,170,85,0.1) !important; color: #4F46E5 !important; border-color: rgba(0,170,85,0.2) !important; }
body.light-mode .card-popup { background: #fff !important; border-color: rgba(0,0,0,0.1) !important; }
body.light-mode .card-popup h3 { color: #0a0a0a !important; }
body.light-mode .card-popup p  { color: #555 !important; }
body.light-mode #card-popup-overlay { background: rgba(0,0,0,0.5) !important; }

/* ── Process section ── */
body.light-mode .section { background: transparent; }
body.light-mode .section[style*="bg-dark"],
body.light-mode section[style*="var(--bg-dark)"] { background: #e8edf2 !important; }

/* ── Page header ── */
body.light-mode .page-header { background: #e8edf2 !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
body.light-mode .page-header h1 { color: #0a0a0a !important; }
body.light-mode .breadcrumb-item.active { color: #666 !important; }
body.light-mode .breadcrumb-item + .breadcrumb-item::before { color: #999 !important; }

/* ── Scroll hint ── */
body.light-mode .hero-scroll-hint { color: #888 !important; }
body.light-mode .scroll-mouse { border-color: rgba(0,0,0,0.2) !important; }
body.light-mode .scroll-wheel { background: #4F46E5 !important; }

/* ── Tech Tabs Section ── */
.tech-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.tech-tab {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.tech-tab:hover { border-color: rgba(99,102,241,0.3); color: #6366F1; }
.tech-tab.active {
    background: linear-gradient(135deg,#6366F1,#4F46E5);
    color: #000;
    border-color: transparent;
}
.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}
.tech-logo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 18px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    cursor: default;
    min-width: 0;
}
.tech-logo-card:hover {
    border-color: rgba(99,102,241,0.25);
    background: rgba(99,102,241,0.04);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.08);
}
.tech-logo-card span {
    font-size: 0.65rem;
    color: #666;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-break: break-word;
}
.tech-logo-card:hover span { color: #6366F1; }

/* Responsive grid */
@media (max-width: 1199px) { .tech-logos-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 991px)  { .tech-logos-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (max-width: 767px)  {
    .tech-logos-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .tech-logo-card { padding: 14px 6px; border-radius: 10px; }
    .tech-tab { padding: 6px 14px; font-size: 0.78rem; }
}
@media (max-width: 480px)  {
    .tech-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .tech-logo-card { padding: 12px 4px; border-radius: 8px; gap: 6px; }
    .tech-logo-card span { font-size: 0.58rem; }
    .tech-tabs { gap: 6px; }
    .tech-tab { padding: 5px 10px; font-size: 0.72rem; }
}
@media (max-width: 360px)  {
    .tech-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .tech-logo-card { padding: 10px 3px; }
}

/* Light mode */
body.light-mode .tech-tab { background: #fff; border-color: rgba(0,0,0,0.1); color: #555; }
body.light-mode .tech-tab.active { background: linear-gradient(135deg,#4F46E5,#4F46E5); color: #fff; }
body.light-mode .tech-logo-card { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
body.light-mode .tech-logo-card:hover { border-color: rgba(0,170,85,0.3); background: rgba(0,170,85,0.04); }
body.light-mode .tech-logo-card span { color: #888; }
body.light-mode .tech-logo-card:hover span { color: #4F46E5; }
#chat-trigger {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 52px; height: 52px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99,102,241,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#chat-trigger:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(99,102,241,0.6); }
.chat-trigger-dot {
    position: absolute;
    top: 4px; right: 4px;
    width: 10px; height: 10px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid var(--bg-black);
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.3); opacity: 0.7; }
}

/* ── Lazy image blur-up ── */
img.lazy {
    filter: blur(8px);
    transition: filter 0.5s ease;
}
img.lazy.loaded { filter: blur(0); }

/* ── Keyboard shortcut hint ── */
.kbd-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--text-gray);
}
.kbd-hint kbd {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.7rem;
}

/* ── FAQ Section ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--border-green); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--primary-green); }
.faq-icon {
    width: 28px; height: 28px;
    background: rgba(99,102,241,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(99,102,241,0.15); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ── Tech Stack ── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
}
.tech-item:hover {
    border-color: var(--border-green);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(99,102,241,0.1);
}
.tech-item i {
    font-size: 2.2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}
.tech-item:hover i { transform: scale(1.2); }
.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

/* ── Newsletter ── */
.newsletter-section { background: var(--bg-black); }
.newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-green);
    border-radius: 24px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
}
.newsletter-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-card h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0; }
.newsletter-form { position: relative; z-index: 1; }
.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
    gap: 10px;
    transition: border-color 0.3s ease;
}
.newsletter-input-wrap:focus-within { border-color: var(--primary-green); }
.newsletter-input-icon { color: var(--text-gray); font-size: 0.9rem; flex-shrink: 0; }
.newsletter-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 8px 0;
}
.newsletter-input-wrap input::placeholder { color: #444; }
.newsletter-note {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── Service Card Popup ── */
#card-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3,3,3,0.85);
    backdrop-filter: blur(12px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
#card-popup-overlay.open { opacity: 1; pointer-events: all; }
.card-popup {
    background: var(--bg-card);
    border: 1px solid var(--border-green);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
    text-align: center;
}
#card-popup-overlay.open .card-popup { transform: scale(1) translateY(0); }
.card-popup-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.card-popup-close:hover { border-color: var(--border-green); color: var(--primary-green); }
.card-popup-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.card-popup h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.card-popup p  { color: var(--text-gray); line-height: 1.7; font-size: 0.95rem; }

/* ── 3D Service Cards ── */
.card-3d {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.card-3d:hover {
    border-color: var(--border-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99,102,241,0.12);
}
.card-3d-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, var(--glow-color, rgba(99,102,241,0.15)) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.card-3d:hover .card-3d-glow { opacity: 1; }
.card-3d-icon {
    width: 56px; height: 56px;
    background: rgba(99,102,241,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.card-3d:hover .card-3d-icon { transform: scale(1.1) rotate(-5deg); }
.card-3d h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card-3d p  { color: var(--text-gray); font-size: 0.88rem; line-height: 1.6; }
.card-3d-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.card-3d-tag { font-size: 0.72rem; color: var(--text-gray); letter-spacing: 0.5px; }
.card-3d-more {
    width: 28px; height: 28px;
    background: rgba(99,102,241,0.1);
    border: 1px solid var(--border-green);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}
.card-3d-more:hover { background: var(--primary-green); color: #000; }

/* ── Hero Canvas & Shapes ── */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hshape {
    position: absolute;
    width: 48px; height: 48px;
    background: rgba(99,102,241,0.06);
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 12px;
    animation: floatShape 8s ease-in-out infinite;
}
.hshape-1 { top: 15%; left: 8%;  animation-delay: 0s;    animation-duration: 7s; }
.hshape-2 { top: 25%; right: 10%; animation-delay: 1s;   animation-duration: 9s; }
.hshape-3 { top: 60%; left: 5%;  animation-delay: 2s;    animation-duration: 8s; }
.hshape-4 { top: 70%; right: 8%; animation-delay: 0.5s;  animation-duration: 10s; }
.hshape-5 { top: 40%; left: 3%;  animation-delay: 1.5s;  animation-duration: 6s; }
.hshape-6 { top: 50%; right: 4%; animation-delay: 3s;    animation-duration: 11s; }
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-18px) rotate(8deg); }
    66%       { transform: translateY(10px) rotate(-5deg); }
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(99,102,241,0.06);
    top: -100px; left: -100px;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: rgba(0,200,100,0.04);
    bottom: -80px; right: -80px;
}
.hero-content { position: relative; z-index: 1; }
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 1;
    animation: fadeInUp 1s ease 2s both;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(99,102,241,0.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease infinite;
}
@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}
.hero-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s ease forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}
.typed-highlight { border-bottom: 2px solid var(--primary-green); padding-bottom: 2px; }

/* ── Team / Showcase / About-image-stack styles moved to ABOUT PAGE section below ── */

/* ── Mobile nav collapse ── */
@media (max-width: 991px) {
    .nav-links-group {
        background: rgba(255,255,255,0.03);
        border-radius: 16px;
        padding: 8px;
        margin: 12px 0;
        gap: 4px !important;
    }
    .nav-link {
        border-radius: 12px !important;
        padding: 12px 16px !important;
    }
    .nav-link.active {
        border-radius: 12px !important;
    }
    .nav-link-icon { opacity: 1 !important; transform: none !important; }
    .nav-actions { display: none !important; }
    #navbarNav {
        background: rgba(3,3,3,0.97);
        border: 1px solid rgba(99,102,241,0.1);
        border-radius: 20px;
        padding: 12px;
        margin-top: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    }
}

/* ── Footer Brand Logo (mirrors nav logo exactly) ── */
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.footer-logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--primary-green) 60deg,
        var(--neon-green) 120deg,
        transparent 180deg,
        transparent 360deg
    );
    animation: ringRotate 3s linear infinite;
    z-index: 1;
    opacity: 0.85;
}
.footer-logo-ring::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-dark);
    border-radius: 50%;
}

.footer-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    position: relative;
}
.footer-brand-accent {
    background: linear-gradient(135deg, #6366F1 0%, #818CF8 50%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(99,102,241,0.5));
}

/* Underline sweep on hover — same as nav */
.footer-brand-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(99,102,241,0.6);
}
.footer-brand:hover .footer-brand-text::after { width: 100%; }
.footer-brand:hover .footer-logo-img { transform: rotate(-8deg) scale(1.12); }
.footer-brand:hover .footer-logo-ring { animation-duration: 0.8s; opacity: 1; }

/* ════════════════════════════════════════
   USER DASHBOARD
   ════════════════════════════════════════ */
.dashboard-section {
    padding: 110px 0 100px;
    min-height: 100vh;
    background: var(--bg-black);
    position: relative;
}
/* Subtle grid bg */
.dashboard-section::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.dashboard-section .container { position: relative; z-index: 1; }

/* ── Header ── */
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 32px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.dash-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
}
.dash-header::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.dash-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
}
.dash-avatar {
    width: 68px; height: 68px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.15), 0 0 30px rgba(99,102,241,0.3);
}
.dash-welcome h1 {
    font-size: 1.7rem;
    margin-bottom: 6px;
    line-height: 1.2;
}
.dash-welcome-text h1 {
    font-size: 1.7rem;
    margin-bottom: 6px;
    line-height: 1.2;
}
.dash-welcome p,
.dash-welcome-text p {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin: 0;
}

/* ── Stat Cards ── */
.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.dash-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.dash-stat-card:hover::before { transform: scaleX(1); }
.dash-stat-card:hover {
    border-color: var(--border-green);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(99,102,241,0.1), var(--shadow-card);
    background: var(--bg-card-hover);
}
.dash-stat-icon {
    width: 56px; height: 56px;
    background: var(--c, rgba(99,102,241,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ic, var(--primary-green));
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.dash-stat-card:hover .dash-stat-icon { transform: scale(1.1) rotate(-5deg); }
.dash-stat-body { display: flex; flex-direction: column; }
.dash-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}
.dash-stat-label {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Main Cards ── */
.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.dash-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.dash-card:hover::before { transform: scaleX(1); }
.dash-card:hover {
    border-color: var(--border-green);
    box-shadow: 0 12px 40px rgba(99,102,241,0.07);
}
.dash-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.dash-card-title i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

/* ── Quick Actions ── */
.dash-actions { display: flex; flex-direction: column; gap: 6px; }
.dash-action-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    position: relative;
}
.dash-action-item:hover {
    background: rgba(99,102,241,0.05);
    border-color: var(--border-green);
    transform: translateX(4px);
}
.dai-icon {
    width: 40px; height: 40px;
    background: var(--ic, rgba(99,102,241,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.dai-text { flex: 1; min-width: 0; }
.dash-action-item:hover .dai-icon {
    filter: brightness(1.3);
    box-shadow: 0 0 14px rgba(255,255,255,0.1);
}
.dai-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.2;
}
.dai-sub {
    font-size: 0.76rem;
    color: var(--text-gray);
    margin-top: 2px;
}
.dai-arrow {
    color: var(--text-gray);
    font-size: 0.65rem;
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.dash-action-item:hover .dai-arrow {
    color: var(--primary-green);
    transform: translateX(3px);
}

/* ── Profile Card ── */
.dash-profile { text-align: center; }
.dash-profile-avatar {
    width: 84px; height: 84px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.15), 0 0 30px rgba(99,102,241,0.25);
}
.dash-profile h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-white);
}
.dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    color: var(--primary-green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.dash-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.dash-profile-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dpi-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 10px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}
.dpi-row:hover { border-color: var(--border-green); }
.dpi-row i {
    color: var(--primary-green);
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Services List ── */
.dash-services-list { display: flex; flex-direction: column; gap: 8px; }
.dsl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
    transition: all 0.25s ease;
}
.dsl-item:hover {
    border-color: var(--border-green);
    background: rgba(99,102,241,0.03);
    transform: translateX(3px);
}
.dsl-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}
.dsl-tag {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-green);
    background: rgba(99,102,241,0.1);
    border: 1px solid var(--border-green);
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── CTA Banner ── */
.dash-cta {
    position: relative;
    margin-top: 48px;
    background: linear-gradient(135deg, #001a0d 0%, #003320 50%, #001a0d 100%);
    border: 1px solid var(--border-green);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    overflow: hidden;
}
.dash-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.dash-cta-content { position: relative; z-index: 1; }
.dash-cta h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-white);
}
.dash-cta p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .dash-header { padding: 24px 20px; }
    .dash-welcome h1 { font-size: 1.3rem; }
    .dash-cta { padding: 36px 24px; }
    .dash-cta h3 { font-size: 1.5rem; }
}


/* ── About page styles moved to static/css/about.css ── */

/* ── Chip label (reusable) ── */
.ab-chip {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    padding: 5px 18px;
    border-radius: 50px;
}

/* ── Stats Bar ── */
.ab-stats-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}
.ab-stat {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}
.ab-stat-last { border-right: none; }
.ab-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-green);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.ab-stat-label {
    font-size: 0.72rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

/* ── About Hero ── */
.ab-hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
    text-align: center;
}
.ab-hero-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.ab-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 16px 0 20px;
    line-height: 1.1;
}
.ab-hero-sub {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 24px;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--primary-green); text-decoration: none; }
.breadcrumb-item.active { color: var(--text-gray); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-gray); }

/* ── Intro text ── */
.ab-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 16px;
}
.ab-body {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 14px;
}
.ab-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(99,102,241,0.07);
    border: 1px solid var(--border-green);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── Image Box ── */
.ab-img-box {
    position: relative;
    padding-bottom: 40px;
}
.ab-img-grid {
    display: flex;
    gap: 14px;
    height: 420px;
}
.ab-img-left {
    flex: 0 0 58%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-green);
    box-shadow: 0 0 50px rgba(99,102,241,0.15);
    position: relative;
}
.ab-img-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(99,102,241,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.ab-img-left img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.ab-img-left:hover img { transform: scale(1.05); }
.ab-img-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ab-img-top,
.ab-img-bot {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ab-img-top:hover,
.ab-img-bot:hover {
    border-color: var(--border-green);
    box-shadow: 0 8px 30px rgba(99,102,241,0.12);
}
.ab-img-top::after,
.ab-img-bot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.ab-img-top img,
.ab-img-bot img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.ab-img-top:hover img,
.ab-img-bot:hover img { transform: scale(1.07); }

/* Floating badge */
.ab-img-badge {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #000;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(99,102,241,0.5);
    z-index: 4;
    animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-7px); }
}

/* ── Mission / Vision cards ── */
.ab-mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.ab-mv-card:hover {
    border-color: var(--border-green);
    box-shadow: 0 20px 60px rgba(99,102,241,0.1);
    transform: translateY(-6px);
}
.ab-mv-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ab-mv-card:hover .ab-mv-bar { transform: scaleX(1); }
.ab-mv-icon {
    width: 64px; height: 64px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}
.ab-mv-card:hover .ab-mv-icon {
    background: rgba(99,102,241,0.15);
    box-shadow: 0 0 30px rgba(99,102,241,0.3);
    transform: scale(1.1);
}
.ab-mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.ab-mv-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.ab-mv-list { list-style: none; padding: 0; margin: 0; }
.ab-mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.88rem;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-color);
}
.ab-mv-list li:last-child { border-bottom: none; }
.ab-mv-list li i { color: var(--primary-green); font-size: 0.75rem; }

/* ── Why cards ── */
.ab-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.ab-why-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ab-why-card:hover .ab-why-bar { transform: scaleX(1); }
.ab-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-green);
    box-shadow: 0 20px 50px rgba(99,102,241,0.1);
    background: var(--bg-card-hover);
}
.ab-why-icon {
    width: 60px; height: 60px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.ab-why-card:hover .ab-why-icon {
    background: rgba(99,102,241,0.15);
    box-shadow: 0 0 25px rgba(99,102,241,0.3);
    transform: scale(1.1);
}
.ab-why-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.ab-why-card p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ── Showcase ── */
.ab-showcase-lg {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 320px;
    transition: all 0.4s ease;
}
.ab-showcase-lg:hover {
    border-color: var(--border-green);
    box-shadow: 0 16px 50px rgba(99,102,241,0.12);
}
.ab-showcase-lg img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.ab-showcase-lg:hover img { transform: scale(1.06); }
.ab-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.ab-showcase-overlay h5 { color: var(--text-white); font-size: 1.1rem; margin: 8px 0 4px; }
.ab-showcase-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.ab-showcase-tag {
    display: inline-block;
    background: rgba(99,102,241,0.15);
    color: var(--primary-green);
    border: 1px solid var(--border-green);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ab-showcase-sm {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.4s ease;
    min-height: 110px;
}
.ab-showcase-sm:hover {
    border-color: var(--border-green);
    box-shadow: 0 10px 30px rgba(99,102,241,0.1);
    transform: translateX(4px);
}
.ab-showcase-sm img {
    width: 140px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.ab-showcase-sm:hover img { transform: scale(1.06); }
.ab-showcase-sm-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.ab-showcase-sm-info h5 { color: var(--text-white); font-size: 0.95rem; margin: 0; }
.ab-showcase-sm-info p { color: var(--text-gray); font-size: 0.82rem; margin: 0; line-height: 1.5; }

/* ── Tech cards ── */
.ab-tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}
.ab-tech-card:hover {
    border-color: var(--border-green);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(99,102,241,0.1);
    background: var(--bg-card-hover);
}
.ab-tech-icon {
    width: 60px; height: 60px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}
.ab-tech-card:hover .ab-tech-icon {
    background: rgba(99,102,241,0.15);
    box-shadow: 0 0 25px rgba(99,102,241,0.3);
    transform: scale(1.1);
}
.ab-tech-card h5 { font-size: 1rem; margin-bottom: 6px; }
.ab-tech-card p { color: var(--text-gray); font-size: 0.82rem; margin: 0; }

/* ── Team cards ── */
.ab-team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.ab-team-card:hover {
    border-color: var(--border-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99,102,241,0.12);
}
.ab-team-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.ab-team-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.ab-team-card:hover .ab-team-img-wrap img { transform: scale(1.08); }
.ab-team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.ab-team-card:hover .ab-team-overlay { opacity: 1; }
.ab-team-overlay a {
    width: 40px; height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}
.ab-team-overlay a:hover { transform: scale(1.15); }
.ab-team-info { padding: 24px; }
.ab-team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.ab-team-role {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.ab-team-info p { color: var(--text-gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.ab-team-skills { display: flex; flex-wrap: wrap; gap: 6px; }
.ab-team-skills span {
    background: rgba(99,102,241,0.07);
    border: 1px solid var(--border-green);
    color: var(--primary-green);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ── About Page Responsive ── */
@media (max-width: 991px) {
    .ab-img-grid { height: 340px; }
    .ab-stat { border-right: none; border-bottom: 1px solid var(--border-color); padding: 20px 12px; }
    .ab-stat-last { border-bottom: none; }
    .ab-stat-num { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .ab-hero { padding: 80px 0 40px; }
    .ab-img-grid { flex-direction: column; height: auto; }
    .ab-img-left { flex: none; height: 220px; }
    .ab-img-right { flex-direction: row; height: 110px; }
    .ab-img-badge { font-size: 0.75rem; padding: 8px 16px; }
    .ab-mv-card { padding: 28px 22px; }
    .ab-showcase-sm img { width: 100px; }
    .ab-stat-num { font-size: 1.6rem; }
}

/* ── Tech Tabs Section ── */
.tech-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.tech-tab {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Poppins', sans-serif;
}
.tech-tab:hover { border-color: rgba(99,102,241,0.3); color: #6366F1; }
.tech-tab.active {
    background: linear-gradient(135deg,#6366F1,#4F46E5);
    color: #000;
    border-color: transparent;
}
.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}
.tech-logo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
}
.tech-logo-card:hover {
    border-color: rgba(99,102,241,0.25);
    background: rgba(99,102,241,0.04);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.08);
}
.tech-logo-card span {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tech-logo-card:hover span { color: #6366F1; }
body.light-mode .tech-tab { background: #fff; border-color: rgba(0,0,0,0.1); color: #555; }
body.light-mode .tech-tab.active { background: linear-gradient(135deg,#4F46E5,#4F46E5); color: #fff; }
body.light-mode .tech-logo-card { background: #fff; border-color: rgba(0,0,0,0.08); }
body.light-mode .tech-logo-card:hover { border-color: rgba(0,170,85,0.3); }
body.light-mode .tech-logo-card span { color: #888; }
@media (max-width: 991px) { .tech-logos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 575px) { .tech-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } .tech-logo-card { padding: 14px 8px; } }


/* ════════════════════════════════════════
   HOME PAGE — SECTION BEAUTY ENHANCEMENTS
   ════════════════════════════════════════ */

/* ── Section divider glow line ── */
.section + .section,
.section + section {
    position: relative;
}

/* ── Enhanced Section Title ── */
.section-title .label {
    position: relative;
    padding-left: 22px;
}
.section-title .label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 10px; height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(99,102,241,0.6);
    animation: pulse 2s infinite;
}

/* ── Why Choose Us — icon cards with number accent ── */
.card-custom .card-num {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(99,102,241,0.04);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.card-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.card-custom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(99,102,241,0.04), transparent);
    transition: height 0.4s ease;
    pointer-events: none;
}
.card-custom:hover::after { height: 100%; }

/* ── Process Section — connected timeline ── */
.process-section { position: relative; }
.process-row {
    position: relative;
    display: flex;
    gap: 0;
}
.process-row::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 36px);
    right: calc(12.5% + 36px);
    height: 2px;
    background: linear-gradient(90deg,
        rgba(99,102,241,0) 0%,
        rgba(99,102,241,0.3) 20%,
        rgba(99,102,241,0.3) 80%,
        rgba(99,102,241,0) 100%
    );
    z-index: 0;
}
.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}
.process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.process-card:hover::before { transform: scaleX(1); }
.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-green);
    box-shadow: 0 24px 60px rgba(99,102,241,0.12);
    background: var(--bg-card-hover);
}
.process-num {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(99,102,241,0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    transition: all 0.4s ease;
}
.process-card:hover .process-num {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(99,102,241,0.4));
}
.process-icon {
    width: 64px; height: 64px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.process-card:hover .process-icon {
    background: rgba(99,102,241,0.15);
    box-shadow: 0 0 30px rgba(99,102,241,0.35);
    transform: scale(1.1) rotate(-5deg);
}
.process-card h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.process-card p { color: var(--text-gray); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ── Portfolio items — enhanced overlay ── */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    background: var(--bg-card);
}
.portfolio-item:hover {
    border-color: var(--border-green);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(99,102,241,0.15);
}
.portfolio-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.portfolio-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    margin-bottom: 14px;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}
.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p { transform: translateY(0); }

/* ── Testimonials — enhanced cards ── */
.testimonials-section {
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(99,102,241,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: calc(33.333% - 16px);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(99,102,241,0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}
.testimonial-card.active,
.testimonial-card:hover {
    border-color: var(--border-green);
    box-shadow: 0 20px 60px rgba(99,102,241,0.1);
    background: var(--bg-card-hover);
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.testimonial-card.active::after,
.testimonial-card:hover::after { transform: scaleX(1); }
.testimonial-stars {
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}
.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.testimonial-avatar {
    width: 48px; height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--text-white); }
.testimonial-role { font-size: 0.78rem; color: var(--text-gray); margin-top: 2px; }

/* ── FAQ — enhanced accordion ── */
.faq-section { position: relative; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover,
.faq-item.open {
    border-color: var(--border-green);
    box-shadow: 0 8px 30px rgba(99,102,241,0.08);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.faq-q:hover { color: var(--primary-green); }
.faq-item.open .faq-q { color: var(--primary-green); }
.faq-icon {
    width: 28px; height: 28px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--border-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}
.faq-item.open .faq-icon {
    background: var(--primary-green);
    color: #000;
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
    padding: 0 24px 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* ── Tech Stack — enhanced logo cards ── */
.tech-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tech-tab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-gray);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.tech-tab:hover { border-color: var(--border-green); color: var(--primary-green); }
.tech-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
}
.tech-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.tech-logo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}
.tech-logo-card:hover {
    border-color: var(--border-green);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(99,102,241,0.1);
    background: var(--bg-card-hover);
}
.tech-logo-card span:last-child {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── Newsletter — enhanced ── */
.newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-green);
    border-radius: 28px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(99,102,241,0.06);
}
.newsletter-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-card::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-card h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0; position: relative; z-index: 1; }
.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    gap: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}
.newsletter-input-wrap:focus-within {
    border-color: var(--border-green);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.newsletter-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}
.newsletter-input-wrap input::placeholder { color: var(--text-gray); }
.newsletter-note {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* ── CTA Section — enhanced ── */
.cta-section {
    background: linear-gradient(135deg, #001a0d 0%, #003320 50%, #001a0d 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(99,102,241,0.15);
    border-bottom: 1px solid rgba(99,102,241,0.15);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Quick Contact cards — enhanced ── */
.contact-quick-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-quick-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}
.contact-quick-card:hover::before { transform: scaleX(1); }
.contact-quick-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-green);
    box-shadow: 0 24px 60px rgba(99,102,241,0.12);
    background: var(--bg-card-hover);
}

/* ── Services 3D section background ── */
.services-3d-section {
    position: relative;
    overflow: hidden;
}
.services-3d-section::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.04) 0%, transparent 65%);
    pointer-events: none;
}


/* ════════════════════════════════════════
   FOOTER — BEAUTIFUL REDESIGN
   ════════════════════════════════════════ */

.footer-section {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1040 25%, #1e1b4b 50%, #1a1040 75%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Radial glow top-left */
.footer-section::after {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.06) 40%, transparent 65%);
    pointer-events: none;
}

/* Green glow line at top */
.footer-glow-bar {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(99,102,241,0.2) 20%,
        rgba(139,92,246,0.7) 50%,
        rgba(99,102,241,0.2) 80%,
        transparent 100%
    );
    position: relative;
}
.footer-glow-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 240px; height: 1px;
    background: linear-gradient(90deg, #6366F1, #8b5cf6, #ec4899);
    box-shadow: 0 0 24px 6px rgba(99,102,241,0.5);
}

/* Main body */
.footer-main {
    padding: 72px 0 56px;
    position: relative;
    z-index: 1;
}

/* Description */
.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.85;
    max-width: 340px;
}

/* ── Social buttons ── */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.fsoc-btn {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.fsoc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c, #6366F1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.fsoc-btn i { position: relative; z-index: 1; transition: color 0.3s ease; }
.fsoc-btn:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.fsoc-btn:hover::before { opacity: 1; }
.fsoc-btn:hover i { color: #fff; }

/* ── Availability badge ── */
.footer-avail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.06);
    border: 1px solid rgba(99,102,241,0.15);
    color: #6366F1;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}
.footer-avail-dot {
    width: 7px; height: 7px;
    background: #6366F1;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(99,102,241,0.8);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* ── Column headings ── */
.footer-col { position: relative; z-index: 1; }
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #6366F1, #4F46E5);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(99,102,241,0.5);
}

/* ── Nav list ── */
.footer-nav-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.25s ease;
    border-bottom: 1px solid transparent;
}
.footer-nav-list li a i {
    font-size: 0.55rem;
    color: #6366F1;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.footer-nav-list li a:hover {
    color: #fff;
    padding-left: 6px;
}
.footer-nav-list li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ── Contact items ── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.fcontact-item:hover {
    background: rgba(99,102,241,0.04);
    border-color: rgba(99,102,241,0.15);
    transform: translateX(4px);
}
.fcontact-icon {
    width: 36px; height: 36px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.fcontact-item:hover .fcontact-icon {
    background: rgba(99,102,241,0.15);
    box-shadow: 0 0 16px rgba(99,102,241,0.2);
}
.fcontact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.fcontact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6366F1;
    opacity: 0.7;
}
.fcontact-val {
    font-size: 0.84rem;
    color: #94a3b8;
    line-height: 1.5;
    word-break: break-word;
}
.fcontact-link {
    color: #6366F1 !important;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}
.fcontact-link:hover { opacity: 0.8; }

/* ── Divider ── */
.footer-divider { position: relative; z-index: 1; }
.footer-divider-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.06) 30%,
        rgba(255,255,255,0.06) 70%,
        transparent 100%
    );
}

/* ── Bottom bar ── */
.footer-bottom {
    background: rgba(0,0,0,0.55);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    margin: 0;
    color: #94a3b8;
    font-size: 0.82rem;
}
.footer-made {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
}
.footer-bottom-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(99,102,241,0.06);
    border: 1px solid rgba(99,102,241,0.12);
    color: #6366F1;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .footer-main { padding: 56px 0 40px; }
    .footer-desc { max-width: 100%; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 767px) {
    .footer-main { padding: 44px 0 32px; }
    .footer-col-title { margin-bottom: 16px; }
    .footer-contact-list { gap: 10px; }
    .fcontact-item { padding: 10px 12px; }
    .footer-bottom-badges { justify-content: center; }
}
@media (max-width: 575px) {
    .footer-social { gap: 8px; }
    .fsoc-btn { width: 36px; height: 36px; font-size: 0.82rem; border-radius: 10px; }
    .footer-nav-list li a { font-size: 0.82rem; }
    .fcontact-val { font-size: 0.8rem; }
}


/* ════════════════════════════════════════
   SOFT & ELEGANT — GLOBAL OVERRIDES
   Applied to entire site
   ════════════════════════════════════════ */

/* ── Base ── */
body { background: #F1F5F9 !important; color: #334155 !important; }
h1,h2,h3,h4,h5,h6 { color: #1E293B !important; }
p { color: #64748B; }

/* ── Navbar ── */
.wl-nav { background: rgba(255,255,255,0.95) !important; border-bottom-color: rgba(99,102,241,0.12) !important; }
.nav-brand-text { color: #1E293B !important; }
.nav-brand-accent { color: #6366F1 !important; -webkit-text-fill-color: #6366F1 !important; }
.nav-icon-btn { background: rgba(99,102,241,0.06) !important; border-color: rgba(99,102,241,0.15) !important; color: #64748B !important; }
.nav-icon-btn:hover { color: #6366F1 !important; border-color: rgba(99,102,241,0.35) !important; }
.nav-login-link { color: #64748B !important; border-color: rgba(99,102,241,0.2) !important; }
.nav-login-link:hover { color: #6366F1 !important; border-color: rgba(99,102,241,0.45) !important; background: rgba(99,102,241,0.06) !important; }
.user-avatar, .user-avatar-lg { background: linear-gradient(135deg,#6366F1,#818CF8) !important; color: #fff !important; }

/* ── Sections ── */
.section { background: #F1F5F9 !important; }
.section-alt, [style*="background: var(--bg-dark)"], [style*="background:var(--bg-dark)"] { background: #E2E8F0 !important; }
.section-title .label { color: #6366F1 !important; background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; }
.section-title h2 { color: #1E293B !important; }
.section-title p { color: #64748B !important; }
.label { color: #6366F1 !important; }
.text-green { color: #6366F1 !important; }

/* ── Cards ── */
.card-custom, .card-3d, .srv-card, .portfolio-item,
.testimonial-card, .pricing-card, .ab-why-card,
.ab-mv-card, .ab-tech-card, .faq-item, .tech-logo-card,
.newsletter-card, .contact-quick-card, .process-card {
    background: #fff !important;
    border-color: #E2E8F0 !important;
    color: #334155 !important;
    box-shadow: 0 2px 12px rgba(99,102,241,0.06) !important;
}
.card-custom:hover, .card-3d:hover, .srv-card:hover,
.portfolio-item:hover, .testimonial-card:hover,
.pricing-card:hover, .ab-why-card:hover, .ab-mv-card:hover,
.ab-tech-card:hover, .faq-item:hover, .tech-logo-card:hover,
.contact-quick-card:hover, .process-card:hover {
    border-color: #6366F1 !important;
    box-shadow: 0 8px 32px rgba(99,102,241,0.15) !important;
}
.card-custom h3, .card-custom h4, .card-custom h5,
.card-3d h3, .srv-card h3, .process-card h4 { color: #1E293B !important; }
.card-custom p, .card-3d p, .srv-card .srv-desc,
.process-card p { color: #64748B !important; }

/* ── Card icons ── */
.card-icon, .card-3d-icon, .srv-icon, .ab-why-icon,
.ab-mv-icon, .ab-tech-icon, .process-icon {
    background: rgba(99,102,241,0.08) !important;
    border-color: rgba(99,102,241,0.2) !important;
    color: #6366F1 !important;
}

/* ── Hero section — Indigo gradient (overrides all previous rules) ── */
.hero-section {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 40%, #818CF8 100%) !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    padding: 80px 0 60px !important;
    position: relative !important;
    overflow: hidden !important;
}
.hero-section::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    pointer-events: none !important;
    z-index: 0 !important;
}
.hero-section::after { display: none !important; }
.hero-overlay { display: none !important; }

/* Hero text — white on indigo */
.hero-title { color: #fff !important; }
.hero-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #E0E7FF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
}
.hero-tagline { color: rgba(255,255,255,0.85) !important; }
.hero-sub { color: rgba(255,255,255,0.75) !important; }
.hero-stat-item .stat-num { color: #fff !important; }
.hero-stat-item .stat-label { color: rgba(255,255,255,0.65) !important; }
.hero-badge {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
}
.hero-badge .dot {
    background: #4ade80 !important;
    box-shadow: 0 0 8px rgba(74,222,128,0.6) !important;
    animation: livePulse 2s infinite !important;
}
.hero-orb { display: none !important; }
.hero-stat-item { border-color: rgba(255,255,255,0.2) !important; }

/* ── Buttons ── */
.btn-green { background: linear-gradient(135deg,#6366F1,#818CF8) !important; color: #fff !important; box-shadow: 0 4px 20px rgba(99,102,241,0.3) !important; }
.btn-green:hover { box-shadow: 0 8px 32px rgba(99,102,241,0.45) !important; color: #fff !important; }
.btn-outline-green {
    border-color: #6366F1 !important;
    color: #6366F1 !important;
    background: transparent !important;
}
.btn-outline-green:hover { background: #6366F1 !important; color: #fff !important; }

/* ── Progress bars ── */
.progress-bar-fill { background: linear-gradient(90deg,#6366F1,#818CF8) !important; }

/* ── Testimonials ── */
.testimonial-avatar { background: linear-gradient(135deg,#6366F1,#818CF8) !important; color: #fff !important; }
.testimonial-stars { color: #F59E0B !important; }
.testimonial-text { color: #334155 !important; }
.testimonial-name { color: #1E293B !important; }
.testimonial-role { color: #94A3B8 !important; }

/* ── FAQ ── */
.faq-q { color: #1E293B !important; }
.faq-q:hover { color: #6366F1 !important; }
.faq-icon { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; color: #6366F1 !important; }
.faq-item.open .faq-icon { background: #6366F1 !important; color: #fff !important; }
.faq-a p { color: #64748B !important; border-top-color: #E2E8F0 !important; }

/* ── Tech tabs ── */
.tech-tab { background: #fff !important; border-color: #E2E8F0 !important; color: #64748B !important; }
.tech-tab:hover { border-color: #6366F1 !important; color: #6366F1 !important; }
.tech-tab.active { background: linear-gradient(135deg,#6366F1,#818CF8) !important; color: #fff !important; border-color: transparent !important; }

/* ── Newsletter ── */
.newsletter-card { background: #fff !important; border-color: rgba(99,102,241,0.2) !important; }
.newsletter-input-wrap { background: #F1F5F9 !important; border-color: #E2E8F0 !important; }
.newsletter-input-wrap input { color: #1E293B !important; }
.newsletter-input-wrap input::placeholder { color: #94A3B8 !important; }
.newsletter-input-wrap:focus-within { border-color: #6366F1 !important; box-shadow: 0 0 0 3px rgba(99,102,241,0.1) !important; }

/* ── CTA section ── */
.cta-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #EEF2FF 100%) !important;
    border-top-color: rgba(99,102,241,0.2) !important;
    border-bottom-color: rgba(99,102,241,0.2) !important;
}
.cta-section h2 { color: #1E293B !important; }
.cta-section p { color: #64748B !important; }
.cta-section::before { background: radial-gradient(ellipse, rgba(99,102,241,0.1) 0%, transparent 70%) !important; }

/* ── Footer ── */
.footer-section { background: linear-gradient(135deg, #0f0c29 0%, #1a1040 25%, #1e1b4b 50%, #1a1040 75%, #0d1117 100%) !important; }
.footer-desc { color: #94A3B8 !important; }
.footer-col-title { color: #fff !important; }
.footer-col-title::after { background: linear-gradient(90deg,#6366F1,#818CF8) !important; }
.footer-nav-list li a { color: #94A3B8 !important; }
.footer-nav-list li a:hover { color: #fff !important; }
.footer-nav-list li a i { color: #6366F1 !important; }
.fcontact-icon { background: rgba(99,102,241,0.1) !important; border-color: rgba(99,102,241,0.2) !important; color: #818CF8 !important; }
.fcontact-label { color: #818CF8 !important; }
.fcontact-val { color: #94A3B8 !important; }
.fcontact-link { color: #818CF8 !important; }
.fcontact-item { background: rgba(255,255,255,0.03) !important; border-color: rgba(255,255,255,0.06) !important; }
.fcontact-item:hover { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; }
.footer-avail { background: rgba(99,102,241,0.1) !important; border-color: rgba(99,102,241,0.2) !important; color: #818CF8 !important; }
.footer-avail-dot { background: #818CF8 !important; box-shadow: 0 0 8px rgba(129,140,248,0.6) !important; }
.footer-copy { color: #64748B !important; }
.footer-made { color: #475569 !important; }
.footer-badge-pill { background: rgba(99,102,241,0.1) !important; border-color: rgba(99,102,241,0.15) !important; color: #818CF8 !important; }
.footer-bottom { background: rgba(0,0,0,0.2) !important; }
.footer-divider-line { background: linear-gradient(90deg,transparent,rgba(255,255,255,0.08),transparent) !important; }
.footer-glow-bar { background: linear-gradient(90deg,transparent,rgba(99,102,241,0.5),transparent) !important; }
.footer-glow-bar::after { background: #818CF8 !important; box-shadow: 0 0 20px 4px rgba(99,102,241,0.4) !important; }

/* ── Social buttons ── */
.fsoc-btn { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.1) !important; color: #94A3B8 !important; }

/* ── Page headers ── */
.page-header { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%) !important; }
.page-header h1 { color: #1e1b4b !important; }
.page-header p { color: #475569 !important; }

/* ── Breadcrumb ── */
.breadcrumb-item a { color: #6366F1 !important; }
.breadcrumb-item.active { color: #94A3B8 !important; }
.breadcrumb-item + .breadcrumb-item::before { color: #CBD5E1 !important; }

/* ── Portfolio ── */
.portfolio-item { background: #fff !important; border-color: #E2E8F0 !important; }
.filter-btn { background: #fff !important; border-color: #E2E8F0 !important; color: #64748B !important; }
.filter-btn.active, .filter-btn:hover { background: #6366F1 !important; color: #fff !important; border-color: #6366F1 !important; }

/* ── Pricing ── */
.pricing-card { background: #fff !important; border-color: #E2E8F0 !important; }
.pricing-card.popular { border-color: #6366F1 !important; background: linear-gradient(145deg,rgba(99,102,241,0.04),#fff) !important; }
.price { color: #6366F1 !important; }
.popular-badge { background: linear-gradient(135deg,#6366F1,#818CF8) !important; color: #fff !important; }
.pricing-features li i { color: #6366F1 !important; }

/* ── Forms ── */
.form-control { background: #F8FAFF !important; border-color: #E2E8F0 !important; color: #1E293B !important; }
.form-control:focus { border-color: #6366F1 !important; box-shadow: 0 0 0 3px rgba(99,102,241,0.1) !important; }
.form-control::placeholder { color: #94A3B8 !important; }

/* ── Auth pages ── */
.auth-page { background: #F1F5F9 !important; }
.auth-card { background: #fff !important; border-color: #E2E8F0 !important; }
.auth-logo h2 { color: #1E293B !important; }

/* ── Scroll progress ── */
#scroll-progress { background: linear-gradient(90deg,#6366F1,#818CF8) !important; }

/* ── Back to top ── */
#back-to-top { background: #6366F1 !important; color: #fff !important; }
#btt-ring { stroke: #6366F1 !important; }

/* ── WhatsApp button ── */
#whatsapp-btn { background: #25D366 !important; }

/* ── About page ── */
.ab-hero { background: linear-gradient(135deg,#EEF2FF,#E0E7FF) !important; }
.ab-hero-title { color: #1E293B !important; }
.ab-hero-sub { color: #64748B !important; }
.ab-stats-bar { background: #fff !important; border-color: #E2E8F0 !important; }
.ab-stat { border-color: #E2E8F0 !important; }
.ab-stat-num { color: #6366F1 !important; }
.ab-stat-label { color: #94A3B8 !important; }
.ab-chip { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; color: #6366F1 !important; }
.ab-badge { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; color: #6366F1 !important; }
.ab-lead { color: #1E293B !important; }
.ab-body { color: #64748B !important; }

/* ── Services page ── */
.srv-hero { background: linear-gradient(135deg,#EEF2FF,#E0E7FF) !important; }
.srv-hero h1 { color: #1E293B !important; }
.srv-hero p { color: #64748B !important; }
.srv-label { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; color: #6366F1 !important; }
.srv-stats { background: #fff !important; border-color: #E2E8F0 !important; }
.srv-stat-item { border-color: #E2E8F0 !important; }
.srv-stat-num { color: #6366F1 !important; }
.srv-stat-lbl { color: #94A3B8 !important; }
.srv-card { background: #fff !important; border-color: #E2E8F0 !important; }
.srv-card h3 { color: #1E293B !important; }
.srv-card .srv-desc { color: #64748B !important; }
.srv-features li { color: #64748B !important; border-color: #F1F5F9 !important; }
.srv-features li i { color: #6366F1 !important; }
.srv-price-amt { color: #6366F1 !important; }
.srv-footer { border-color: #E2E8F0 !important; }
.srv-process-num { background: #fff !important; border-color: #E2E8F0 !important; color: #6366F1 !important; }
.srv-tech-pill { background: #fff !important; border-color: #E2E8F0 !important; color: #64748B !important; }
.srv-tech-pill:hover { border-color: #6366F1 !important; color: #6366F1 !important; }

/* ── Services sidebar ── */
.srv-sidebar-inner { background: #fff !important; border-color: #E2E8F0 !important; }
.srv-sidebar-label { color: #94A3B8 !important; }
.srv-nav-btn { border-color: transparent !important; }
.srv-nav-btn:hover { background: rgba(99,102,241,0.06) !important; border-color: rgba(99,102,241,0.15) !important; }
.srv-nav-btn.active { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.25) !important; }
.srv-nav-name { color: #64748B !important; }
.srv-nav-btn.active .srv-nav-name, .srv-nav-btn:hover .srv-nav-name { color: #1E293B !important; }
.srv-nav-btn.active .srv-nav-arrow, .srv-nav-btn:hover .srv-nav-arrow { color: #6366F1 !important; }
.srv-detail { background: #fff !important; border-color: #E2E8F0 !important; }
.srv-detail-header { background: linear-gradient(135deg,rgba(99,102,241,0.04),transparent) !important; border-color: #E2E8F0 !important; }
.srv-detail-title { color: #1E293B !important; }
.srv-detail-sub { color: #64748B !important; }
.srv-detail-body { border-color: #E2E8F0 !important; }
.srv-detail-desc { border-color: #E2E8F0 !important; }
.srv-detail-desc p { color: #64748B !important; }
.srv-detail-features h5 { color: #6366F1 !important; }
.srv-detail-features .srv-features li { color: #64748B !important; border-color: #F1F5F9 !important; }
.srv-detail-footer { background: rgba(99,102,241,0.02) !important; border-color: #E2E8F0 !important; }
.srv-detail-price .srv-price-amt { color: #6366F1 !important; }
.srv-detail-price .srv-price-note { color: #94A3B8 !important; }

/* ── Quote modal ── */
.srv-modal-box { background: #fff !important; border-color: rgba(99,102,241,0.2) !important; }
.srv-modal-icon { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; color: #6366F1 !important; }
.srv-modal-header h3 { color: #1E293B !important; }
.srv-modal-header p { color: #64748B !important; }
.srv-form-group label { color: #64748B !important; }
.srv-form-input { background: #F8FAFF !important; border-color: #E2E8F0 !important; color: #1E293B !important; }
.srv-form-input:focus { border-color: #6366F1 !important; box-shadow: 0 0 0 3px rgba(99,102,241,0.1) !important; }
.srv-form-input::placeholder { color: #94A3B8 !important; }
.srv-modal-close { background: #F1F5F9 !important; border-color: #E2E8F0 !important; color: #64748B !important; }
.srv-success-icon { color: #6366F1 !important; }
.srv-modal-success h3 { color: #1E293B !important; }
.srv-modal-success p { color: #64748B !important; }

/* ── Contact page ── */
.contact-form-card, .contact-info-card { background: #fff !important; border-color: #E2E8F0 !important; }
.cinfo-icon { background: rgba(99,102,241,0.08) !important; border-color: rgba(99,102,241,0.2) !important; color: #6366F1 !important; }

/* ── Preloader ── */
#preloader { background: #F1F5F9 !important; }
.preloader-logo { color: #1E293B !important; }
.preloader-logo span { color: #6366F1 !important; }

/* ── Scroll progress ── */
#scroll-progress { background: linear-gradient(90deg,#6366F1,#818CF8) !important; height: 3px; }

/* ── Cookie banner ── */
#cookie-banner { background: #fff !important; border-color: #E2E8F0 !important; color: #334155 !important; }
.cookie-accept { background: #6366F1 !important; color: #fff !important; }
.cookie-decline { background: #F1F5F9 !important; color: #64748B !important; border: 1px solid #E2E8F0 !important; }

/* ── Search overlay ── */
#search-overlay { background: none !important; }
.search-box { background: #fff !important; border-color: transparent !important; }
#searchInput { color: #1E293B !important; }
#searchInput::placeholder { color: #94A3B8 !important; }
.search-result-item:hover { background: rgba(99,102,241,0.06) !important; }
.search-result-title { color: #1E293B !important; }
.search-result-desc { color: #64748B !important; }

/* ── Toast ── */
.wl-toast { background: #fff !important; border-color: #E2E8F0 !important; color: #1E293B !important; }


/* ── Indigo button classes (replaces btn-dark + btn-outline-green) ── */
.btn-indigo {
    background: linear-gradient(135deg, #6366F1, #818CF8);
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
    display: inline-block;
    text-decoration: none;
}
.btn-indigo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99,102,241,0.45);
    color: #fff !important;
}

.btn-outline-indigo {
    background: transparent;
    color: #6366F1 !important;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #6366F1;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

/* Smaller button inside pricing cards */
.pricing-card .btn-outline-indigo,
.pricing-card .btn-green {
    padding: 9px 22px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.2px !important;
}
.btn-outline-indigo:hover {
    background: #6366F1;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99,102,241,0.3);
}

/* btn-lg size for both */
.btn-indigo.btn-lg, .btn-outline-indigo.btn-lg {
    padding: 16px 44px;
    font-size: 1rem;
}


/* ════════════════════════════════════════
   FOOTER — SOFT & ELEGANT REDESIGN
   ════════════════════════════════════════ */

.footer-section {
    background: #1E293B !important;
    position: relative;
    overflow: hidden;
}

/* Subtle dot pattern */
.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(99,102,241,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Glow top-left */
.footer-section::after {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.footer-main {
    padding: 72px 0 56px;
    position: relative;
    z-index: 1;
}

/* ── Logo ── */
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.footer-logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366F1, #818CF8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(99,102,241,0.35);
    padding: 6px;
}
.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
.footer-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}
.footer-brand-accent {
    color: #A5B4FC;
}

/* ── Description ── */
.footer-desc {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.85;
    max-width: 340px;
}

/* ── Social buttons ── */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.fsoc-btn {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.fsoc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c, #6366F1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.fsoc-btn i { position: relative; z-index: 1; transition: color 0.3s ease; }
.fsoc-btn:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.fsoc-btn:hover::before { opacity: 1; }
.fsoc-btn:hover i { color: #fff; }

/* ── Availability badge ── */
.footer-avail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    color: #A5B4FC;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
}
.footer-avail-dot {
    width: 7px; height: 7px;
    background: #818CF8;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(129,140,248,0.7);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* ── Column headings ── */
.footer-col { position: relative; z-index: 1; }
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #6366F1, #818CF8);
    border-radius: 2px;
}

/* ── Nav list ── */
.footer-nav-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.25s ease;
}
.footer-nav-list li a i {
    font-size: 0.55rem;
    color: #6366F1;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.footer-nav-list li a:hover { color: #fff; padding-left: 6px; }
.footer-nav-list li a:hover i { opacity: 1; transform: translateX(0); }

/* ── Contact items ── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.fcontact-item:hover {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.2);
    transform: translateX(4px);
}
.fcontact-icon {
    width: 34px; height: 34px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818CF8;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.fcontact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.fcontact-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #818CF8;
    opacity: 0.8;
}
.fcontact-val {
    font-size: 0.83rem;
    color: #94A3B8;
    line-height: 1.5;
    word-break: break-word;
}
.fcontact-link {
    color: #A5B4FC !important;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}
.fcontact-link:hover { opacity: 0.8; }

/* ── Bottom bar ── */
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 20px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy { margin: 0; color: #64748B; font-size: 0.82rem; }
.footer-made { margin: 0; color: #475569; font-size: 0.78rem; }
.footer-bottom-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    color: #818CF8;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .footer-main { padding: 56px 0 40px; }
    .footer-desc { max-width: 100%; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}
@media (max-width: 767px) {
    .footer-main { padding: 44px 0 32px; }
    .footer-col-title { margin-bottom: 16px; }
    .footer-contact-list { gap: 8px; }
    .fcontact-item { padding: 10px 12px; }
    .footer-bottom-badges { justify-content: center; }
}
@media (max-width: 575px) {
    .footer-social { gap: 8px; }
    .fsoc-btn { width: 36px; height: 36px; font-size: 0.82rem; border-radius: 10px; }
    .footer-nav-list li a { font-size: 0.82rem; }
    .fcontact-val { font-size: 0.8rem; }
    .footer-logo-box { width: 42px; height: 42px; border-radius: 12px; }
    .footer-logo-img { width: 30px; height: 30px; }
    .footer-brand-text { font-size: 1.1rem; }
}


/* ── Logo image overrides (navbar + footer) ── */
.nav-logo-img {
    height: 56px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    object-position: left center;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 8px;
}
.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 300px;
    /* display: block; */
    object-fit: cover;
    filter: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}
/* Hide old footer brand text/box */
.footer-logo-box, .footer-brand-text, .footer-brand-accent { display: none !important; }


/* ── Footer logo — final size override ── */
.footer-logo-img {
    height: 48px !important;
    width: auto !important;
    max-width: 180px !important;
    min-width: unset !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
}


/* ── Footer brand column — prevent logo clipping ── */
.footer-brand {
    display: block !important;
    overflow: visible !important;
    width: 100% !important;
}
.footer-logo-img {
    height: 48px !important;
    width: auto !important;
    /* max-width: 220px !important; */
    min-width: unset !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    margin-left: 0 !important;
    overflow: visible !important;
}


/* ── Navbar + Footer logo size increase ── */
.nav-logo-img {
    height: 52px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
}
.footer-logo-img {
    height: 60px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    object-position: left center !important;
    display: block !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    margin-left: 0 !important;
}


/* ── Navbar logo glow effect ── */
.nav-logo-img {
    filter: drop-shadow(0 0 8px rgba(99,102,241,0.5)) drop-shadow(0 0 16px rgba(99,102,241,0.25)) !important;
    transition: filter 0.3s ease !important;
}
.nav-brand-wrap:hover .nav-logo-img {
    filter: drop-shadow(0 0 12px rgba(99,102,241,0.7)) drop-shadow(0 0 24px rgba(99,102,241,0.4)) !important;
}


/* ── Footer background color ── */
.footer-section,
.footer-section * { --footer-bg: #1e1b4b; }
.footer-section { background: linear-gradient(135deg, #0f0c29 0%, #1a1040 25%, #1e1b4b 50%, #1a1040 75%, #0d1117 100%) !important; }
.footer-bottom { background: rgba(0,0,0,0.2) !important; border-top-color: rgba(255,255,255,0.06) !important; }


/* ════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ════════════════════════════════════════ */

/* ── Navbar logo — responsive sizes ── */
@media (max-width: 767px) {
    .nav-logo-img {
        height: 36px !important;
        max-width: 140px !important;
    }
    .nav-brand-wrap { min-width: 100px !important; }
    body { padding-top: 68px !important; }
    .container.wl-nav-inner {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}
@media (max-width: 480px) {
    .nav-logo-img {
        height: 30px !important;
        max-width: 120px !important;
    }
    .nav-brand-wrap { min-width: 80px !important; }
}
@media (max-width: 360px) {
    .nav-logo-img {
        height: 26px !important;
        max-width: 100px !important;
    }
}

/* ── Footer logo — responsive ── */
@media (max-width: 767px) {
    .footer-logo-img { height: 36px !important; max-width: 150px !important; }
    .footer-main { padding: 40px 0 32px !important; }
    .footer-social { gap: 8px !important; }
    .fsoc-btn { width: 34px !important; height: 34px !important; }
    .footer-bottom-inner { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 10px !important; }
    .footer-bottom-badges { justify-content: center !important; }
}
@media (max-width: 480px) {
    .footer-logo-img { height: 30px !important; max-width: 130px !important; }
    .footer-col-title { font-size: 0.68rem !important; margin-bottom: 14px !important; }
    .footer-nav-list li a { font-size: 0.82rem !important; }
    .fcontact-val { font-size: 0.78rem !important; }
}

/* ── Hero section ── */
@media (max-width: 767px) {
    .hero-section { padding: 32px 0 48px !important; min-height: auto !important; }
    .hero-title { font-size: 2.6rem !important; letter-spacing: -1px !important; }
    .hero-gradient-text { font-size: inherit !important; }
    .hero-tagline { font-size: 0.9rem !important; }
    .hero-sub { font-size: 0.82rem !important; }
    .hero-buttons { flex-direction: column !important; align-items: center !important; gap: 10px !important; }
    .hero-buttons .btn, .hero-buttons a { width: 100% !important; max-width: 300px !important; text-align: center !important; }
    .hero-stats { gap: 12px !important; flex-wrap: wrap !important; justify-content: center !important; }
    .hero-stat-item .stat-num { font-size: 1.4rem !important; }
    .hero-visual-bg { display: none !important; }
    .hero-overlay { background: rgba(241,245,249,0.6) !important; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem !important; }
    .hero-badge { font-size: 0.68rem !important; padding: 5px 12px !important; }
}

/* ── Section titles ── */
@media (max-width: 767px) {
    .section-title h2 { font-size: 1.7rem !important; }
    .section-title p { font-size: 0.88rem !important; }
    .section { padding: 48px 0 !important; }
    .label { font-size: 0.68rem !important; }
}
@media (max-width: 480px) {
    .section-title h2 { font-size: 1.5rem !important; }
    .section { padding: 36px 0 !important; }
    .container { padding-left: 14px !important; padding-right: 14px !important; }
}

/* ── Cards ── */
@media (max-width: 767px) {
    .card-custom { padding: 22px 18px !important; }
    .card-icon { width: 52px !important; height: 52px !important; font-size: 1.2rem !important; }
    .card-custom h4 { font-size: 0.95rem !important; }
    .card-custom p { font-size: 0.85rem !important; }
    .process-card { padding: 24px 18px !important; }
    .process-num { font-size: 2.5rem !important; }
    .process-icon { width: 52px !important; height: 52px !important; }
}

/* ── Services page ── */
@media (max-width: 767px) {
    .srv-layout { grid-template-columns: 1fr !important; gap: 16px !important; }
    .srv-sidebar-inner { position: static !important; }
    .srv-nav { flex-direction: row !important; flex-wrap: wrap !important; gap: 6px !important; }
    .srv-nav-btn { flex: 0 0 auto !important; padding: 7px 12px !important; border-radius: 50px !important; }
    .srv-nav-arrow { display: none !important; }
    .srv-detail-body { grid-template-columns: 1fr !important; }
    .srv-detail-desc { border-right: none !important; border-bottom: 1px solid #E2E8F0 !important; padding: 20px !important; }
    .srv-detail-features { padding: 20px !important; }
    .srv-detail-header { padding: 20px !important; gap: 12px !important; flex-wrap: wrap !important; }
    .srv-detail-title { font-size: 1.2rem !important; }
    .srv-detail-footer { padding: 16px 20px !important; flex-direction: column !important; align-items: flex-start !important; }
    .srv-detail-footer .btn { width: 100% !important; text-align: center !important; }
    .srv-stats { flex-direction: column !important; }
    .srv-stat-item { border-right: none !important; border-bottom: 1px solid #E2E8F0 !important; padding: 16px !important; }
    .srv-stat-item:last-child { border-bottom: none !important; }
}

/* ── Portfolio ── */
@media (max-width: 767px) {
    .portfolio-img { height: 200px !important; }
    .portfolio-filters { flex-wrap: wrap !important; justify-content: center !important; gap: 6px !important; }
    .filter-btn { padding: 6px 14px !important; font-size: 0.78rem !important; }
}

/* ── Pricing ── */
@media (max-width: 767px) {
    .pricing-card { padding: 28px 20px !important; margin-bottom: 16px !important; }
    .price { font-size: 1.6rem !important; }
    .pricing-features li { font-size: 0.82rem !important; }
}

/* ── About page ── */
@media (max-width: 767px) {
    .ab-collage { flex-direction: column !important; padding: 10px 10px 60px !important; }
    .ab-collage-main { flex: none !important; width: 100% !important; transform: none !important; }
    .ab-collage-main img { aspect-ratio: 4/3 !important; }
    .ab-collage-stack { flex-direction: row !important; gap: 10px !important; }
    .ab-collage-sm { flex: 1 !important; }
    .ab-collage-sm:first-child, .ab-collage-sm:last-child { transform: none !important; }
    .ab-team-card { max-width: 100% !important; }
    .ab-team-img-wrap { height: 220px !important; }
    .ab-mv-card { padding: 24px 18px !important; }
    .ab-why-card { padding: 22px 16px !important; }
    .ab-stats-bar { flex-direction: column !important; }
    .ab-stat { border-right: none !important; border-bottom: 1px solid #E2E8F0 !important; }
    .ab-stat-last { border-bottom: none !important; }
}

/* ── Contact page ── */
@media (max-width: 767px) {
    .contact-form-card, .contact-info-card { padding: 22px 16px !important; border-radius: 16px !important; }
    .form-control { font-size: 0.85rem !important; padding: 10px 12px !important; }
    textarea.form-control { min-height: 100px !important; }
}

/* ── Dashboard ── */
@media (max-width: 767px) {
    .db-hero { padding: 28px 0 24px !important; }
    .db-stat { padding: 14px !important; }
    .db-stat-num { font-size: 1.6rem !important; }
    .proj-card { padding: 18px !important; }
    .qr-card { flex-direction: column !important; gap: 12px !important; padding: 16px !important; }
    .qr-card-right { align-items: flex-start !important; width: 100% !important; }
    .qr-timeline { overflow-x: auto !important; padding-bottom: 4px !important; }
}

/* ── Auth pages ── */
@media (max-width: 575px) {
    .auth-page { padding: 80px 14px 40px !important; }
    .auth-card { padding: 24px 16px !important; border-radius: 16px !important; }
}

/* ── CTA section ── */
@media (max-width: 767px) {
    .cta-section { padding: 56px 0 !important; }
    .cta-section h2 { font-size: 1.7rem !important; }
    .cta-section p { font-size: 0.88rem !important; }
}

/* ── Buttons ── */
@media (max-width: 480px) {
    .btn-green, .btn-indigo { padding: 11px 24px !important; font-size: 0.88rem !important; }
    .btn-outline-indigo { padding: 10px 22px !important; font-size: 0.88rem !important; }
    .btn-lg { padding: 12px 28px !important; font-size: 0.92rem !important; }
}

/* ── Smart assistant ── */
@media (max-width: 575px) {
    .wl-assistant-box { max-width: calc(100vw - 20px) !important; border-radius: 16px !important; }
    .wl-asst-messages { max-height: 180px !important; }
    .wl-asst-header { padding: 10px 14px !important; }
    .wl-asst-name { font-size: 0.82rem !important; }
    #search-overlay { bottom: 160px !important; right: 12px !important; width: calc(100vw - 24px) !important; }
}

/* ── Notification bell ── */
@media (max-width: 575px) {
    .wl-notif-dropdown { width: calc(100vw - 20px) !important; left: 10px !important; right: 10px !important; }
}

/* ── General image fixes ── */
@media (max-width: 767px) {
    img { max-width: 100% !important; height: auto; }
    .row { --bs-gutter-x: 1rem; }
}

/* ── Page headers ── */
@media (max-width: 767px) {
    .page-header { padding: 40px 0 36px !important; }
    .page-header h1 { font-size: 1.8rem !important; }
    .page-header p { font-size: 0.88rem !important; }
    .ab-hero { padding: 40px 0 32px !important; }
    .ab-hero-title { font-size: 1.8rem !important; }
    .srv-hero { padding: 40px 0 32px !important; }
    .srv-hero h1 { font-size: 1.8rem !important; }
}

/* ── Testimonials ── */
@media (max-width: 767px) {
    .testimonial-card { min-width: 100% !important; padding: 22px 16px !important; }
    .testimonial-text { font-size: 0.85rem !important; }
}

/* ── FAQ ── */
@media (max-width: 767px) {
    .faq-q { font-size: 0.85rem !important; padding: 14px 16px !important; }
    .faq-a p { font-size: 0.83rem !important; }
}

/* ── Tech grid ── */
@media (max-width: 767px) {
    .tech-logos-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
    .tech-logo-card { padding: 16px 10px !important; }
}
@media (max-width: 480px) {
    .tech-logos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Newsletter ── */
@media (max-width: 767px) {
    .newsletter-card { padding: 28px 18px !important; border-radius: 18px !important; }
    .newsletter-input-wrap { flex-direction: column !important; background: none !important; border: none !important; padding: 0 !important; gap: 10px !important; }
    .newsletter-input-wrap input { border: 1.5px solid #E2E8F0 !important; border-radius: 50px !important; padding: 12px 18px !important; background: #F8FAFF !important; width: 100% !important; }
    .newsletter-input-wrap .btn { width: 100% !important; border-radius: 50px !important; }
}

/* ── Floating buttons ── */
@media (max-width: 767px) {
    #whatsapp-btn { bottom: 20px !important; right: 16px !important; width: 50px !important; height: 50px !important; font-size: 1.3rem !important; z-index: 9999 !important; }
    #whatsapp-btn::before, #whatsapp-btn::after { display: none !important; }
    #ai-chat-float { bottom: 84px !important; right: 16px !important; width: 46px !important; height: 46px !important; font-size: 1.15rem !important; }
    #ai-chat-float::before, #ai-chat-float::after { display: none !important; }
    #back-to-top { bottom: 144px !important; right: 16px !important; width: 40px !important; height: 40px !important; z-index: 10000 !important; }
}

/* ── Prevent horizontal scroll ── */
html, body { overflow-x: hidden !important; max-width: 100vw !important; }


/* ── User dropdown — mobile compact ── */
@media (max-width: 767px) {
    .wl-user-dropdown {
        padding: 6px !important;
        border-radius: 14px !important;
    }
    .user-avatar-lg {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
    }
}


/* ── Profile button — remove border on mobile ── */
@media (max-width: 767px) {
    .nav-user-btn {
        border: none !important;
        background: transparent !important;
        padding: 4px 8px 4px 4px !important;
        gap: 5px !important;
    }
    .nav-user-btn:hover {
        background: rgba(99,102,241,0.06) !important;
        border: none !important;
    }
    .user-name-text { display: none !important; }
}


/* ── Footer links — ensure clickable above pseudo-elements ── */
.footer-main,
.footer-col,
.footer-nav-list,
.footer-nav-list li,
.footer-nav-list li a,
.footer-contact-list,
.fcontact-item,
.footer-social,
.fsoc-btn,
.footer-brand,
.footer-avail {
    position: relative !important;
    z-index: 2 !important;
}


/* ════════════════════════════════════════
   TECH STACK — MARQUEE DESIGN
   ════════════════════════════════════════ */

.tech-section { padding: 80px 0 60px !important; }

/* Marquee wrapper — full width with fade edges */
.tech-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.tech-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #E2E8F0, transparent);
}
.tech-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #E2E8F0, transparent);
}

/* Marquee track */
.tech-marquee { overflow: hidden; }
.tech-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    padding: 8px 0;
}

/* Left scroll animation */
.tech-marquee-left .tech-marquee-track {
    animation: marqueeLeft 30s linear infinite;
}
.tech-marquee-left:hover .tech-marquee-track { animation-play-state: paused; }

/* Right scroll animation */
.tech-marquee-right .tech-marquee-track {
    animation: marqueeRight 35s linear infinite;
}
.tech-marquee-right:hover .tech-marquee-track { animation-play-state: paused; }

@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Tech pill cards */
.tech-pill-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 10px 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(99,102,241,0.06);
    transition: all 0.25s ease;
    cursor: default;
    position: relative;
}
.tech-pill-card:hover {
    border-color: #6366F1;
    box-shadow: 0 6px 20px rgba(99,102,241,0.15);
    transform: translateY(-3px);
}
.tech-pill-card i {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.tech-pill-card span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1E293B;
    font-family: 'Poppins', sans-serif;
}
.tech-text-icon {
    font-size: 1.1rem;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
}

/* NEW badge on select cards */
.tech-pill-card.new-badge::after {
    content: 'NEW';
    position: absolute;
    top: -8px; right: -4px;
    background: linear-gradient(135deg, #6366F1, #818CF8);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 20px;
    line-height: 1.4;
}

/* Stats row */
.tech-stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(99,102,241,0.06);
}
.tech-stat-item {
    flex: 1;
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid #E2E8F0;
    transition: background 0.25s ease;
}
.tech-stat-item:last-child { border-right: none; }
.tech-stat-item:hover { background: rgba(99,102,241,0.04); }
.tech-stat-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #6366F1;
    line-height: 1;
    margin-bottom: 6px;
}
.tech-stat-lbl {
    display: block;
    font-size: 0.7rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .tech-marquee-wrap::before,
    .tech-marquee-wrap::after { width: 60px; }
    .tech-pill-card { padding: 8px 14px; gap: 7px; }
    .tech-pill-card i { font-size: 1.1rem; }
    .tech-pill-card span:last-child { font-size: 0.78rem; }
    .tech-stats-row { flex-wrap: wrap; border-radius: 16px; }
    .tech-stat-item { flex: 0 0 50%; border-bottom: 1px solid #E2E8F0; }
    .tech-stat-item:nth-child(2n) { border-right: none; }
    .tech-stat-item:nth-child(3), .tech-stat-item:nth-child(4) { border-bottom: none; }
    .tech-stat-num { font-size: 1.5rem; }
}


/* ══════════════════════════════════════════════════════════════
   HERO — New split layout animations
   ══════════════════════════════════════════════════════════════ */

/* Float animation for hero badge cards */
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* Live pulse dot */
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Hero reveal animation */
.hero-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: heroReveal 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: var(--d, 0ms);
}
@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Typed highlight */
.typed-highlight {
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
}

/* Responsive hero adjustments */
@media (max-width: 991px) {
    .hero-section { padding: 60px 0 48px !important; min-height: auto !important; }
}
@media (max-width: 575px) {
    .hero-section { padding: 48px 0 40px !important; }
}

/* ════════════════════════════════════════
   HOME — CLIENT REVIEW CARDS
   ════════════════════════════════════════ */
.rv-home-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.rv-home-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(99,102,241,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.rv-home-card:hover {
    border-color: rgba(99,102,241,0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(99,102,241,0.1);
}

/* Light mode overrides (already white bg, no change needed) */
body.light-mode .rv-home-card {
    background: #fff !important;
    border-color: #E2E8F0 !important;
}
body.light-mode .rv-home-card:hover {
    border-color: #6366F1 !important;
    box-shadow: 0 16px 40px rgba(99,102,241,0.12) !important;
}
