/* =============================================
  VARIABLES & BASE
============================================= */
:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #0d9488;
    --secondary-light: #14b8a6;
    --accent: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --border: #e2e8f0;
    --bg-body: #f8fafc;
    --card-bg: #ffffff;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --blue: #4f46e5;
    --light: #f8fafc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    color: #1f2937;
    overflow-x: hidden;
    background: var(--bg-body);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
}

p {
    font-size: 16px;
    line-height: 1.75;
}

li {
    font-size: 16px;
}

/* =============================================
  TOP BAR
============================================= */
.topbar {
    background: var(--dark);
    padding: 9px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar a {
    color: var(--gray-light);
    transition: color .2s;
}

.topbar a:hover {
    color: var(--secondary-light);
}

.topbar i {
    color: var(--secondary-light);
    margin-right: 5px;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* =============================================
  NAVBAR
============================================= */
.site-navbar {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0;
    overflow: visible;
}

.navbar-inner {
    display: flex;
    align-items: center;
    min-height: 68px;
    position: relative;
    gap: 0;
}

.brand {
    display: flex;
    align-items: center;
    padding: 0 20px 0 0;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-menu>li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #334155;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all .2s;
    gap: 4px;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary);
}

.nav-menu>li>a .caret {
    font-size: 15px;
    opacity: 0.6;
}

.nav-quote {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-quote a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background .2s;
    gap: 6px;
    border-radius: 40px;
}

.nav-quote a:hover {
    background: var(--primary-dark);
    color: #fff;
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #334155;
    font-size: 18px;
    flex-shrink: 0;
    padding: 0;
}

/* =============================================
  MEGA MENU
============================================= */
.has-mega {
    position: static !important;
}

.mega-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2));
    background: #fff;
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .08);
    z-index: 1000;
}

.nav-menu>li.open>.mega-panel {
    display: block;
}

.mega-inner {
    display: flex;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    min-height: 320px;
}

.mega-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: #f8fafc;
    border-right: 1px solid var(--border);
    padding: 20px 0;
}

.mega-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    cursor: pointer;
    transition: background .15s;
    border-left: 3px solid transparent;
}

.mega-tab:hover {
    background: #fff;
}

.mega-tab.active {
    background: #fff;
    border-left-color: var(--primary);
}

.mega-tab-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mega-tab-label {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.mega-tab-sub {
    font-size: 14px;
    color: var(--gray);
}

.mega-tab.active .mega-tab-label {
    color: var(--primary);
}

.mega-content {
    flex: 1;
    padding: 24px 32px;
    display: none;
    flex-direction: column;
}

.mega-content.active {
    display: flex;
}

.mega-content-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 16px;
}

.mega-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex: 1;
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .12s;
    text-decoration: none;
    color: inherit;
}

.mega-link:hover {
    background: #eef2ff;
}

.mega-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mega-link h6 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 3px;
}

.mega-link p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

.mega-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-footer-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-footer-feat-icon {
    width: 38px;
    height: 38px;
    background: #eef2ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.mega-footer-feat h6 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px;
}

.mega-footer-feat p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.mega-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

.mega-footer-cta:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Notice banners */
.notice-banner {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-removed {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.notice-upgrade {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #b45309;
}

.notice-ai {
    background: #f3e8ff;
    border: 1px solid #ddd6fe;
    color: #7c3aed;
}

.notice-growth {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.notice-india {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

.discontinued-notice {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: #dc2626;
    margin-bottom: 12px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: .5px;
}

/* Badges */
.badge-new {
    display: inline-block;
    background: #10b981;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 4px;
    vertical-align: middle;
}

.badge-hot {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 4px;
    vertical-align: middle;
}

.badge-ai {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 4px;
    vertical-align: middle;
}

.badge-in {
    display: inline-block;
    background: #0ea5e9;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Simple dropdown (Packages) */
.simple-drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-top: 3px solid var(--primary);
    border: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    z-index: 1000;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.nav-menu>li.open>.simple-drop {
    display: block;
}

.simple-drop li a {
    display: block;
    padding: 9px 18px;
    font-size: 15px;
    font-family: var(--font-head);
    font-weight: 600;
    color: #334155;
    transition: all .15s;
    white-space: nowrap;
}

.simple-drop li a:hover {
    background: #eef2ff;
    color: var(--primary);
    padding-left: 22px;
}

/* VTS Logo */
.vts-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.vts-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: -1px;
    line-height: 1;
}

.vts-logo-divider {
    width: 2px;
    height: 30px;
    background: #0d9488;
    border-radius: 2px;
    flex-shrink: 0;
}

.vts-logo-tagline {
    font-size: 9px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* =============================================
  MOBILE DRAWER
============================================= */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1200;
    backdrop-filter: blur(2px);
}

.mob-overlay.open {
    display: block;
}

.mob-drawer {
    position: fixed;
    top: 0;
    left: -110%;
    width: 88%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    z-index: 1300;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 6px 0 40px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
}

.mob-drawer.open {
    left: 0;
}

.mob-header {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.mob-close {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.mob-close:hover {
    background: rgba(255, 255, 255, .15);
}

.mob-quick {
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.mob-quick-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 10px;
}

.mob-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mob-quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .15s;
    text-align: center;
}

.mob-quick-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eef2ff;
}

.mob-quick-btn i {
    font-size: 18px;
}

.mob-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mob-nav>li>a.mob-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all .15s;
    gap: 8px;
}

.mob-nav>li>a.mob-item:hover {
    background: #f8fafc;
    color: var(--primary);
}

.mob-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mob-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.mob-item-caret {
    font-size: 11px;
    color: var(--gray);
    transition: transform .25s;
    flex-shrink: 0;
}

.mob-nav>li.open>a.mob-item .mob-item-caret {
    transform: rotate(180deg);
}

.mob-submenu {
    display: none;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.mob-submenu.open {
    display: block;
}

.mob-submenu * {
    list-style: none;
}

.mob-section-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    padding: 12px 18px 6px;
    display: block;
}

.mob-sub-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    border-bottom: 1px solid #eef2ff;
    transition: all .15s;
}

.mob-sub-item:last-child {
    border-bottom: none;
}

.mob-sub-item:hover {
    background: #eef2ff;
    color: var(--primary);
    padding-left: 22px;
}

.mob-sub-item:hover .sub-icon {
    background: var(--primary);
    color: #fff;
}

.sub-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all .15s;
}

/* =============================================
  HERO
============================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: #0f172a;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
}

.hero-fallback {
    position: absolute;
    inset: 0;
    background: url('assets/hero.webp') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    color: #fff;
    padding: 100px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(79, 70, 229, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(2)
    }
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 1rem;
    color: #fff;
    max-width: 550px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-btn-primary {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid #cbd5e1;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hero-btn-outline:hover {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--card-bg);
    border-radius: 60px;
    padding: 12px 24px;
    width: fit-content;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 4px;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.08);
}

.hero-card-inner {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
}

.hero-card-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-card-inner h4 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.hero-card-inner p {
    color: #475569;
    font-size: 15px;
    margin-bottom: 20px;
}

.hero-card-rating {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 24px;
    background: #fef3c7;
    padding: 8px 12px;
    border-radius: 40px;
    display: inline-block;
}

.hero-card-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s;
}

.hero-card-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: opacity 0.3s;
    cursor: pointer;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator i {
    font-size: 14px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(6px)
    }
}

/* =============================================
  SECTION UTILITIES
============================================= */
.section-label {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.75;
    max-width: 580px;
}

/* =============================================
  SERVICE CARDS
============================================= */
.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity .3s, transform .4s;
}

.service-card:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.service-card-body {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.service-card-body h5 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-card-body p {
    font-size: 15px;
    opacity: .9;
    margin: 0;
    line-height: 1.6;
}

.service-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* =============================================
  WHY CHOOSE US
============================================= */
.why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all .25s;
    background: var(--card-bg);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.why-card h6 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.why-card p {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
  COUNTERS
============================================= */
.counter-strip {
    background: #eef2ff;
    padding: 48px 0;
}

.counter-item {
    text-align: center;
    padding: 16px;
}

.counter-item h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.counter-item p {
    font-size: 15px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 0 0;
}

/* =============================================
  MARQUEE
============================================= */
.marquee-wrap {
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marq 28s linear infinite;
    align-items: center;
    gap: 0;
}

.marquee-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 40px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .3s;
    flex-shrink: 0;
}

.marquee-logo:hover {
    color: var(--primary);
}

.marquee-logo span.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    margin: 0 8px;
    opacity: 0.4;
    vertical-align: middle;
}

@keyframes marq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* =============================================
  TESTIMONIALS
============================================= */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    transition: box-shadow .25s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .05);
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--primary);
    opacity: .15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author h6 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 4px;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2ff;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* =============================================
  FAQ
============================================= */
.accordion-button {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    background: var(--card-bg);
}

.accordion-button:not(.collapsed) {
    background: var(--dark);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.75;
}

/* =============================================
  CTA
============================================= */
.cta-section {
    background: #1e1b4b;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 250px;
    background: rgba(79, 70, 229, 0.25);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.cta-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-pill {
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-head);
    font-weight: 700;
}

.cta-pill-indigo {
    background: rgba(79, 70, 229, 0.3);
    border: 0.5px solid rgba(79, 70, 229, 0.5);
    color: #a5b4fc;
}

.cta-pill-teal {
    background: rgba(13, 148, 136, 0.2);
    border: 0.5px solid rgba(13, 148, 136, 0.4);
    color: #5eead4;
}

.cta-section h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 14px;
    color: #475569;
    margin: 0 auto 28px;
    max-width: 520px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: #4f46e5;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background .2s, transform .2s;
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    background: #4338ca;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
  FOOTER
============================================= */
.site-footer {
    background: var(--dark);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-top {
    padding: 60px 0 40px;
    border-top: 3px solid #4f46e5;
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.f-soc-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 14px;
    transition: all .2s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.f-soc-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px;
    font-size: 13px;
    color: #64748b;
    transition: color .15s;
}

.footer-links li a::after {
    content: '→';
    font-size: 11px;
    opacity: 0;
    transition: opacity .15s;
}

.footer-links li a:hover {
    color: #4f46e5;
}

.footer-links li a:hover::after {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--secondary-light);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-bottom {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    margin-top: 2rem;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.footer-copyright p,
.footer-powered p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-copyright strong,
.footer-powered strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
}

.footer-bottom-links a:hover {
    color: #60a5fa;
}

/* =============================================
  SERVICES MOBILE CAROUSEL
============================================= */
.svc-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 4px;
}

.svc-carousel::-webkit-scrollbar {
    display: none;
}

.svc-slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 0 8px;
}

.svc-slide:first-child {
    padding-left: 0;
}

.svc-slide:last-child {
    padding-right: 0;
}

.svc-slide .service-card {
    height: 220px;
}

.svc-slide .service-card img {
    height: 220px;
}

.svc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 4px;
}

.svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all .2s;
    display: inline-block;
}

.svc-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* =============================================
  CONVERTED INLINE STYLE CLASSES
  These classes replace old inline style="..." attributes.
============================================= */
/* Theme background + text color helpers */
.vts-theme-red {
    background: #fff0f0;
    color: #dc2626;
}

.vts-theme-green {
    background: #dcfce7;
    color: #16a34a;
}

.vts-theme-blue {
    background: #eff6ff;
    color: #2563eb;
}

.vts-theme-purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.vts-theme-orange {
    background: #fef3c7;
    color: #d97706;
}

.vts-theme-light-green {
    background: #f0fdf4;
    color: #16a34a;
}

.vts-theme-pink {
    background: #fce7f3;
    color: #db2777;
}

.vts-theme-sky {
    background: #eff6ff;
    color: #0369a1;
}

/* Text color helpers */
.vts-text-whatsapp {
    color: #25d366;
}

.vts-text-red {
    color: #dc2626;
}

/* Logo / drawer inline replacements */
.vts-inline-01 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.vts-inline-02 {
    width: 2px;
    height: 22px;
    background: #0d9488;
    border-radius: 2px;
    flex-shrink: 0;
}

.vts-inline-03 {
    font-size: 8px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* More text color helpers */
.vts-text-red-f0a9 {
    color: #dc2626;
}

.vts-text-whatsapp-4e10 {
    color: #25d366;
}

.vts-text-blue {
    color: #2563eb;
}

.vts-inline-04 {
    color: #4f46e5;
}

.vts-text-pink {
    color: #db2777;
}

.vts-inline-05 {
    border-color: #4f46e5;
    background: #eef2ff;
}

/* Background helpers */
.vts-theme-indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.vts-bg-indigo-soft {
    background: #eef2ff;
}

.vts-theme-indigo-solid {
    background: #4f46e5;
    color: #fff;
}

.vts-bg-white {
    background: #fff;
}

.vts-text-brand-blue {
    color: var(--blue);
}

/* Section/card inline replacements */
.vts-inline-06 {
    background: var(--light);
    padding: 80px 0;
}

.vts-inline-07 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .5px;
    background-color: #dc2626;
    border-color: #dc2626;
}

.vts-inline-08 {
    background: #fff;
    padding: 40px 0 24px;
}

.vts-inline-09 {
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray);
}

.vts-inline-10 {
    background: #fff;
    padding: 80px 0;
}

.vts-inline-11 {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vts-inline-12 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.vts-inline-13 {
    color: #38bdf8;
}

.vts-inline-14 {
    font-family: var(--font-head);
}

.vts-inline-15 {
    color: #cbd5e1;
    font-size: 14px;
}

.vts-inline-16 {
    background: #dc2626;
    color: #fff;
    font-family: var(--font-head);
    border-radius: 30px;
}

.vts-inline-17 {
    background: #25d366;
    color: #fff;
    font-family: var(--font-head);
    border-radius: 30px;
}

/* Border helpers */
.vts-border-top-white-10 {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* Footer/review inline replacements */
.vts-inline-18 {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vts-inline-19 {
    background: rgba(255, 255, 255, 0.05);
    flex: 1;
}

.vts-inline-20 {
    font-size: 12px;
    color: #94a3b8;
}

.vts-fw-bold-inline {
    font-weight: bold;
}

.vts-inline-21 {
    font-size: 12px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
}

.vts-inline-22 {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.vts-inline-23 {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    background: rgba(255, 255, 255, .03);
    border: 0.5px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
}

.vts-inline-24 {
    font-size: 13px;
    color: #f59e0b;
}

.vts-inline-25 {
    font-size: 10px;
    color: #475569;
    margin-top: 2px;
}

.vts-border-top-white-08 {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.vts-inline-26 {
    color: inherit;
}

.vts-inline-27 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vts-inline-28 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.vts-inline-29 {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 8px;
    background: rgba(255, 255, 255, .03);
    border: 0.5px solid rgba(255, 255, 255, .07);
    border-radius: 7px;
}

.vts-inline-30 {
    width: 22px;
    height: 22px;
    background: #4285F4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vts-white-xs {
    color: white;
    font-size: 11px;
}

.vts-inline-31 {
    font-size: 10px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.2;
}

.vts-inline-32 {
    font-size: 9px;
    color: #64748b;
}

.vts-inline-33 {
    width: 22px;
    height: 22px;
    background: #25D366;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vts-inline-34 {
    color: white;
    font-size: 13px;
}

.vts-inline-35 {
    width: 22px;
    height: 22px;
    background: #0A66C2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vts-white-xxs {
    color: white;
    font-size: 10px;
}

.vts-inline-36 {
    width: 22px;
    height: 22px;
    background: #d62b2b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vts-inline-37 {
    width: 22px;
    height: 22px;
    background: #008272;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============================================
  RESPONSIVE
============================================= */
@media (max-width: 991px) {

    .nav-menu,
    .nav-quote {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .topbar {
        display: none;
    }

    .site-navbar .container {
        padding: 0 16px;
    }

    .navbar-inner {
        justify-content: space-between;
        min-height: 60px;
    }

    .brand {
        padding: 0;
    }

    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-content {
        padding: 40px 0 40px;
    }

    .hero-stats {
        gap: 12px;
        padding: 10px 20px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        padding: 10px 20px;
        font-size: 12px;
    }

    .footer-top .row {
        gap: 32px 0;
    }

    .counter-strip {
        padding: 36px 0;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-container .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        border-radius: 30px;
        gap: 12px;
        padding: 14px 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
    }

    .cta-section {
        padding: 56px 0;
    }

    .why-section-pad {
        padding: 56px 0 !important;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-copyright p,
    .footer-powered p {
        font-size: 0.75rem;
    }

    .footer-top {
        padding: 40px 0 24px;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 13px;
        padding: 12px 20px;
    }

    .service-card img {
        height: 160px;
    }

    .service-card-body h5 {
        font-size: 17px;
    }

    .service-card-body p {
        font-size: 13px;
    }

    .why-card {
        flex-direction: column;
        gap: 10px;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .counter-item h2 {
        font-size: 2.2rem;
    }

    .counter-item p {
        font-size: 12px;
        letter-spacing: 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .cta-btn {
        padding: 13px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .cta-pills {
        gap: 6px;
    }

    .cta-pill {
        font-size: 10px;
        padding: 4px 10px;
    }

    .cta-section h2 {
        font-size: 1.7rem;
    }

    .footer-bottom-links {
        gap: 0.75rem 1rem;
    }

    .marquee-logo {
        font-size: 15px;
        padding: 0 24px;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .counter-item h2 {
        font-size: 2rem;
    }

    .counter-item p {
        font-size: 11px;
    }

    .navbar-inner {
        min-height: 54px;
    }

    .hero-stats {
        padding: 12px;
        gap: 10px;
    }

    .stat-label {
        font-size: 10px;
    }
}