/* A2Z CA Premium Corporate Design System CSS */

:root {
    /* Brand Colors - Curated Modern Corporate Palette (Updated from Logo) */
    --primary-blue: #003366;
    /* Logo Deep Navy Blue */
    --primary-blue-rgb: 0, 51, 102;
    --blue-mid: #004080;
    /* Elegant Mid-Tone Blue */
    --blue-light: #0059b3;
    /* Modern Slate Blue */
    --blue-bg: #001a33;
    /* Deep Premium Space Blue */

    --accent-gold: #f4be15;
    /* Logo Bright Gold */
    --accent-gold-dark: #d4a008;
    /* Logo Darker Gold */
    --accent-gold-light: #ffeb99;
    /* Logo Light Gold */
    --accent-gold-bg: #fffbe6;
    /* Logo Warm Cream Gold Background */

    --accent-green: #10B981;
    /* Trustful Emerald Green */
    --accent-green-dark: #047857;
    /* Dark Emerald Green */
    --accent-green-light: #D1FAE5;
    /* Mint Green Accent */
    --accent-green-bg: #F0FDF4;
    /* Soft Fresh Green Background */

    --text-dark: #1E293B;
    /* Slate Dark Charcoal */
    --text-muted: #64748B;
    /* Muted Cool Gray */
    --bg-light: #F8FAFC;
    /* Pristine Ice Background */
    --bg-cream: #FAF9F6;
    /* Elegant Alabaster Cream */
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    /* Soft gray border */

    /* Layout Constants */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.09);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bootstrap Button Overrides for Premium Branding */
.btn-primary {
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--primary-blue) 100%) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%) !important;
    border-color: var(--accent-gold-dark) !important;
    box-shadow: 0 4px 14px rgba(196, 155, 93, 0.25) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
}

.btn-outline-primary {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: var(--white) !important;
}

/* Green Success Button (WhatsApp Call-To-Action) */
.btn-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    border-color: #059669 !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.25) !important;
    transform: translateY(-2px) !important;
}


/* Typography & Base */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.font-sans {
    font-family: 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Georgia', serif;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.25;
}

h1.font-serif,
h2.font-serif,
h3.font-serif {
    font-family: 'Georgia', serif;
    font-weight: 700;
}

/* Links & Accents */
a {
    color: var(--blue-mid);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

.text-accent {
    color: var(--accent-gold) !important;
}

.hover-accent:hover {
    color: var(--accent-gold) !important;
}

/* Offer Strip at the very top of the page */
.offer-bar {
    background-color: #e51a2e;
    /* Custom bright visible red */
    color: #ffffff;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    z-index: 1050;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.offer-bar a {
    color: #f4cc15 !important;
    /* bright yellow link */
    font-weight: 700;
    text-decoration: underline !important;
    transition: var(--transition);
}

.offer-bar a:hover {
    color: #ffffff !important;
}

.offer-bar .badge-offer {
    background-color: #ffffff;
    color: #e51a2e;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Top bar styles */
.top-bar {
    background-color: var(--primary-blue);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--accent-gold);
}

/* Header & Navbar */
.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-gold-dark);
    line-height: 1.2;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }

    .logo-title {
        font-size: 1.4rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 42px;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.52rem;
    }
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

/* Regular links hover underline (excluding dropdown toggles) */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-item.active .nav-link:not(.dropdown-toggle)::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold-dark) !important;
}

/* Custom premium Caret Arrow for Dropdowns */
.navbar-nav .nav-link.dropdown-toggle::after {
    border: none !important;
    content: '\f107' !important;
    /* FontAwesome angle-down arrow */
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    display: inline-block !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
    font-size: 0.8rem !important;
    transition: transform 0.3s ease !important;
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg) !important;
    color: var(--accent-gold-dark) !important;
}

@media (min-width: 1200px) {

    /* Base style for standard dropdown menus */
    .navbar-nav .nav-item.dropdown>.dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    /* Base style for mega menu (bound to container boundaries) */
    .navbar-nav .nav-item.dropdown>.mega-menu-content {
        transform: translateY(10px) !important;
    }

    /* Hover style for standard dropdown menus */
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        margin-top: 0 !important;
        pointer-events: auto !important;
    }

    /* Hover style for mega menu (bound to container boundaries) */
    .navbar-nav .nav-item.dropdown:hover>.mega-menu-content {
        transform: translateY(0) !important;
    }
}

/* Mega Menu Grid Styling */
.mega-dropdown {
    position: static !important;
}

.mega-menu-content {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 15px !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color) !important;
    border-top: 4px solid var(--accent-gold) !important;
    border-bottom: 4px solid #198754 !important;
    /* Trustful Green bottom bar */
    border-radius: 0 0 16px 16px !important;
    box-shadow: var(--shadow-lg) !important;
}

@media (min-width: 1200px) {
    .col-xl-2-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.mega-menu-title {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent-gold-light);
    padding-bottom: 4px;
}

.mega-menu-list li a {
    font-size: 0.88rem;
    color: var(--text-dark);
    display: block;
    padding: 6px 10px;
    transition: var(--transition);
}

/* Subtle primary blue background on hover */
.mega-menu-list li a:hover {
    background-color: rgba(0, 51, 102, 0.04) !important;
    color: var(--primary-blue) !important;
}

.dropdown-menu-columns {
    min-width: 220px;
    border: 1px solid rgba(0, 51, 102, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.08) !important;
    border-radius: 12px !important;
}

.dropdown-menu-columns li a {
    padding: 8px 16px;
    transition: var(--transition);
}

.dropdown-menu-columns li a:hover {
    background-color: rgba(0, 51, 102, 0.04) !important;
    color: var(--primary-blue) !important;
}

/* Call-to-Actions (Desktop Header) */
.phone-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cta-phone:hover .phone-icon-wrapper {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

.cta-phone:hover .phone-icon-wrapper i {
    color: var(--white) !important;
}

.phone-label {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.phone-number {
    font-size: 0.95rem;
    line-height: 1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(226, 165, 25, 0.35);
    transition: var(--transition);
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-mid) 100%);
    box-shadow: 0 4px 15px rgba(10, 38, 71, 0.35);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* Hamburger & Mobile Nav */
.hamburger {
    border: none;
    background: none;
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.btn-phone-mobile,
.btn-whatsapp-mobile {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.btn-phone-mobile {
    background-color: var(--primary-blue);
}

.btn-whatsapp-mobile {
    background-color: #25D366;
}

/* Premium Sections */
.section-padding {
    padding: 90px 0;
}

.bg-dark-blue {
    background-color: var(--blue-bg) !important;
}

.section-title-wrapper {
    margin-bottom: 50px;
}

.section-title-wrapper .sub-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.section-title-wrapper .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-title-wrapper h2 {
    font-size: 2.35rem;
    font-weight: 800;
}

/* =============================================
   HERO SECTION — Two-Column Reference Design
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 50%, #f5f7ff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-wrapper {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    min-height: 640px;
}

/* --- LEFT SIDE: Content --- */
.hero-left {
    width: 50%;
    padding: 80px 40px 100px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-badge {
    align-self: flex-start;
    background: #fff;
    border-left: 4px solid var(--accent-gold);
    padding: 6px 16px 6px 14px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.hero-hindi {
    font-size: 1.15rem;
    color: var(--blue-mid);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.25);
}

.btn-hero-primary:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-blue);
    /* Fixed contrast: dark blue text on gold background */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 190, 21, 0.35);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-hero-outline:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #128c7e;
    /* Accessible brand green with proper contrast ratio */
    color: #fff;
    border: 2px solid #128c7e;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.25);
}

.btn-hero-whatsapp:hover {
    background: #0a5047;
    /* Slightly darker green for hover feedback */
    border-color: #0a5047;
    color: #fff;
    transform: translateY(-2px);
}

/* Trust row */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-trust-row {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- RIGHT SIDE: Background Panel & Graphics --- */
.hero-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: stretch;
    /* stretch child wrap container vertically */
    justify-content: center;
    padding-bottom: 0;
    /* remove space reservation since wrap stretches to the absolute bottom */
}

/* Background Curve using Pseudo-element to guarantee shape overlay */
.hero-right::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50vw;
    /* extend to the right edge of viewport */
    left: 0;
    /* align exactly at the center-line dividing left and right columns */
    height: 120%;
    background: linear-gradient(135deg, #0b2647 0%, #153f74 50%, #20599c 100%);
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    /* smooth curve starting at the left boundary */
    z-index: 1;
    box-shadow: -15px 0 35px rgba(0, 51, 102, 0.2);
}

/* Container to wrap right side elements and ensure robust layouts on resize */
.hero-visual-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* Graphics/Man Figure container */
.hero-figure {
    position: absolute;
    bottom: 120px;
    /* sit above the cities card to prevent overlap */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 310px;
    /* stable layout width */
}

.hero-img {
    width: 100%;
    height: auto;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
}

/* Laptop Widget styles */
.hlaptop {
    position: absolute;
    bottom: 199px;
    /* sit clear of the cities card bottom position */
    left: 0px;
    background: #fff;
    border-radius: 12px;
    width: 180px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
    z-index: 4;
    overflow: hidden;
}

.hlaptop-hdr {
    background: #f1f5f9;
    padding: 6px 10px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ldot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.ldot-r {
    background: #ef4444;
}

.ldot-y {
    background: #eab308;
}

.ldot-g {
    background: #22c55e;
}

.ldot-title {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: 700;
    margin-left: 6px;
}

.hlaptop-body {
    padding: 12px 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.hlaptop-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex-grow: 1;
}

.hbar {
    width: 14px;
    border-radius: 2px 2px 0 0;
}

.hlaptop-donut {
    flex-shrink: 0;
}

/* Laptop dashboard bars stylesheet classes (removed inline styles) */
.hbar-1 {
    height: 32px;
    background: #1a56db;
}

.hbar-2 {
    height: 50px;
    background: #f4be15;
}

.hbar-3 {
    height: 38px;
    background: #1a56db;
}

.hbar-4 {
    height: 60px;
    background: #f4be15;
}

.hbar-5 {
    height: 44px;
    background: #1a56db;
}

/* Growth Arrow graphic */
.hero-growth {
    position: absolute;
    right: 20px;
    bottom: 220px;
    /* sit clear of the cities card bottom position */
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.growth-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: -15px;
    margin-right: 15px;
}

.grow-bar {
    width: 12px;
    border-radius: 2px 2px 0 0;
}

/* Growth bars stylesheet classes (removed inline styles) */
.grow-bar-1 {
    height: 14px;
    background: rgba(160, 200, 255, 0.35);
}

.grow-bar-2 {
    height: 24px;
    background: rgba(160, 200, 255, 0.5);
}

.grow-bar-3 {
    height: 36px;
    background: rgba(160, 200, 255, 0.68);
}

.grow-bar-4 {
    height: 52px;
    background: rgba(160, 200, 255, 0.88);
}

/* --- FLOATING WIDGETS --- */
.hero-hw {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 10;
    animation: floatAnim 6s ease-in-out infinite;
    min-width: 145px;
    will-change: transform;
}

.hw-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.hw-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.hw-gold {
    background: #fef9c3;
    color: #ca8a04;
}

.hw-body {
    display: flex;
    flex-direction: column;
}

.hw-tiny {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hw-big {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
}

.hw-small {
    font-size: 0.7rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.2;
}

/* Positions (Tuned left coordinates slightly inside container boundaries) */
.hw-clients {
    top: 50px;
    left: 15px;
    animation-delay: 0s;
}

.hw-trusted {
    top: 230px;
    left: -15px;
    animation-delay: 1.5s;
}

.hw-save {
    top: 40px;
    right: 20px;
    animation-delay: 0.8s;
}

.hw-response {
    bottom: 250px;
    right: -10px;
    animation-delay: 2.2s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* --- CITIES CARD (anchored at bottom of right panel) --- */
.hero-cities-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0b2647 0%, #153f74 100%);
    border-radius: 14px 14px 0 0;
    padding: 16px 20px 18px;
    width: 90%;
    max-width: 480px;
    z-index: 10;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.hcc-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hcc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hcc-pills span {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hcc-pills span i {
    color: var(--accent-gold);
    font-size: 0.65rem;
}

.hcc-pills .hcc-more {
    background: rgba(244, 190, 21, 0.22);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* =============================================
   HERO SERVICES BAR (Row of 4 icons at bottom)
   ============================================= */
.hero-services-bar {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 0;
    position: relative;
    z-index: 10;
}

.hsb-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    border-right: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.hsb-item:last-child {
    border-right: none;
}

.hsb-item:hover {
    background: #f8fafc;
}

.hsb-icon {
    width: 44px;
    height: 44px;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hsb-icon-gold {
    background: #fef9c3;
    color: #ca8a04;
}

.hsb-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.hsb-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* =============================================
   RESPONSIVE MEDIA QUERIES
   ============================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-figure {
        width: 260px;
    }

    /* scale down the human container on smaller desktops */
}

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-left {
        width: 100%;
        padding: 50px 24px 20px 24px;
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-hindi {
        border: none;
        padding: 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .hero-right::before {
        width: 320px;
        height: 320px;
        border-radius: 50%;
        top: 170px;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        background: linear-gradient(135deg, #0b2647 0%, #153f74 50%, #20599c 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .hero-visual-wrap {
        height: auto;
        min-height: auto;
    }

    .hero-figure {
        margin-bottom: 0;
        /* remove bottom margin to allow overlap */
        position: relative;
        z-index: 3;
        width: 100%;
        /* stretch to center-align the image child */
        bottom: auto;
        /* reset absolute positioning */
        left: auto;
        /* reset absolute positioning */
        transform: none;
        /* reset absolute positioning */
        display: block;
        /* prevent flex height collapse on mobile */
        text-align: center;
    }

    .hero-img {
        width: 220px;
        display: inline-block;
    }

    .hero-hw {
        display: none;
        /* Hide floating widgets on mobile tablet */
    }

    .hlaptop {
        display: none;
    }

    .hero-growth {
        display: none;
    }

    .hero-cities-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: calc(100% - 48px);
        max-width: 500px;
        margin: -60px auto 0;
        /* negative top margin overlays the card on the human figure's bottom edge */
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-left {
        padding: 40px 16px 10px 16px;
    }

    .hero-right {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .hsb-item {
        padding: 16px 12px;
    }

    .hsb-title {
        font-size: 0.8rem;
    }

    .hsb-desc {
        display: none;
        /* Hide descriptions to fit columns */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-right {
        padding-top: 20px;
        padding-bottom: 10px;
        min-height: auto;
    }

    .hero-right::before {
        width: 260px;
        height: 260px;
        top: 120px;
    }

    .hero-img {
        width: 180px;
    }

    .hero-cities-card {
        width: calc(100% - 24px);
        margin: -50px auto 0;
        /* negative top margin overlays the card on the human figure's bottom edge */
    }

    .hero-btns {
        justify-content: center;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline,
    .btn-hero-whatsapp {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .hero-services-bar {
        border-top: none;
    }
}



/* Why Choose Us Cards */
.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(226, 165, 25, 0.25);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--accent-gold-bg);
    color: var(--accent-gold);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotate(360deg);
}

/* Service Card Design */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.service-card-body {
    padding: 30px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-card-icon {
    font-size: 2.2rem;
    color: var(--blue-mid);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    color: var(--accent-gold);
    transform: scale(1.1);
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    /* Flex column + growing body so the CTA button pins to the card bottom,
       keeping buttons on the same level across a row of equal-height cards */
    display: flex;
    flex-direction: column;
}

.pricing-card .price-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card .price-body .btn {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--accent-gold);
}

.pricing-card.popular::before {
    content: 'Best Seller';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 4px 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 0.08em;
}

.price-header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 35px 30px;
}

.price-amount {
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-body {
    padding: 35px 30px;
}

.price-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.price-features li i {
    color: #10B981;
}

/* Statistics Block */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-bg) 100%);
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* Accordion FAQs */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(10, 38, 71, 0.15);
}

.faq-accordion .accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 20px 25px;
    background-color: var(--white);
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--accent-gold-bg);
    color: var(--primary-blue);
}

.faq-accordion .accordion-button::after {
    color: var(--blue-mid);
    background-size: 1.1rem;
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    background-color: var(--white);
    color: var(--text-muted);
}

/* Process Timeline */
.process-step {
    position: relative;
    padding: 20px;
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--accent-gold-light);
}

/* Blog Cards */
.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-img-wrapper img {
    transition: var(--transition);
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
}

.blog-tag {
    background-color: var(--accent-gold-bg);
    color: var(--accent-gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Cards & Form */
.contact-info-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.contact-form-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-control,
.form-select {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 4px rgba(10, 38, 71, 0.1);
    border-color: var(--primary-blue);
}

/* Footer Section */
.footer {
    background-color: var(--blue-bg);
}

.footer-heading {
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-circle:hover {
    background-color: var(--accent-gold);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* Floating widgets */
.floating-widget-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-btn,
.scroll-top-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-btn {
    background-color: #25D366;
    position: relative;
}

.whatsapp-btn .tooltip-text {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-family: sans-serif;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.whatsapp-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.scroll-top-btn {
    background-color: var(--primary-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--accent-gold);
    transform: scale(1.1);
}

/* Detail page template styling */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-bg) 100%);
    color: var(--white);
    padding: 60px 0;
}

.sidebar-service-menu {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.sidebar-service-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.sidebar-service-link:last-child {
    border-bottom: none;
}

.sidebar-service-link.active,
.sidebar-service-link:hover {
    background-color: var(--white);
    color: var(--accent-gold-dark);
    padding-left: 25px;
    border-left: 4px solid var(--accent-gold);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hover-shadow-effect {
    transition: var(--transition);
}

.hover-shadow-effect:hover {
    box-shadow: var(--shadow-lg) !important;
}

/* Tab filter styles */
.nav-pills .nav-link {
    color: var(--primary-blue);
    font-weight: 600;
    border: 1px solid var(--border-color);
    margin: 5px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
    color: var(--white);
}

/* Focus Visible */
:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Minimum touch targets (48x48) */
.btn,
.nav-link,
.social-circle,
.whatsapp-btn,
.scroll-top-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .glass-widget {
        animation: none;
    }

    .feature-card:hover,
    .service-card:hover,
    .blog-card:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
    :root {
        --border-color: #000;
        --text-muted: #333;
    }

    .text-muted {
        color: #333 !important;
    }

    .text-white-50 {
        color: rgba(255, 255, 255, 0.85) !important;
    }
}

/* ============================================================
   BREADCRUMB NAVIGATION
   ============================================================ */

.breadcrumb-nav {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--text-muted);
    margin: 0 6px;
    opacity: 0.5;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-gold-dark);
}

.breadcrumb-item.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ============================================================
   SERVICE PAGE TABLE OF CONTENTS (TOC) SIDEBAR
   ============================================================ */

.toc-sidebar {
    border-top: 4px solid var(--accent-gold) !important;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-link {
    display: block;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 3px solid transparent;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
    font-weight: 500;
}

.toc-link:hover {
    color: var(--primary-blue);
    background-color: var(--bg-light);
    border-left-color: var(--accent-gold);
}

.toc-link.active {
    color: var(--primary-blue);
    background-color: var(--accent-gold-bg);
    border-left-color: var(--accent-gold);
    font-weight: 700;
}

/* ============================================================
   SERVICE PAGE — CONTENT SECTIONS
   ============================================================ */

.service-detail-content {
    line-height: 1.8;
}

.service-detail-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold-light);
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-section {
    scroll-margin-top: 120px;
}

.lead-text {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.lead-text p:first-child {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Info Boxes */
.info-box {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid;
    margin: 16px 0;
}

.info-box-primary {
    background-color: #EFF6FF;
    border-left-color: #3B82F6;
}

.info-box-warning {
    background-color: #FFFBEB;
    border-left-color: #F59E0B;
}

.info-box-success {
    background-color: var(--accent-green-bg);
    border-left-color: var(--accent-green);
}

.info-box-danger {
    background-color: #FEF2F2;
    border-left-color: #EF4444;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-green);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.85rem;
}

/* Penalty List */
.penalty-list {
    list-style: none;
    padding-left: 0;
}

.penalty-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #FEE2E2;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.penalty-list li:last-child {
    border-bottom: none;
}

.penalty-list li::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #EF4444;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.75rem;
}

/* Numbered List */
.numbered-list {
    padding-left: 0;
    counter-reset: numbered-counter;
    list-style: none;
}

.numbered-list li {
    padding: 10px 0 10px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
    counter-increment: numbered-counter;
}

.numbered-list li:last-child {
    border-bottom: none;
}

.numbered-list li::before {
    content: counter(numbered-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Comparison Table */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.comparison-table thead th {
    background-color: var(--primary-blue);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 18px;
    border: none;
}

.comparison-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-muted);
    vertical-align: middle;
}

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

.comparison-table tbody tr:hover {
    background-color: var(--accent-gold-bg);
}

/* Benefit Cards */
.benefit-card {
    transition: var(--transition);
    background-color: var(--white);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold) !important;
}

/* ============================================================
   PROCESS TIMELINE (New - Service Template)
   ============================================================ */

.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-green));
    border-radius: 3px;
}

.process-timeline-step {
    position: relative;
    padding: 16px 0 16px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.process-timeline-step:last-child {
    padding-bottom: 0;
}

.process-timeline-step .step-number {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--white), var(--shadow-sm);
    margin-left: -42px;
    flex-shrink: 0;
}

.process-timeline-step .step-content {
    flex: 1;
}

.process-timeline-step .step-content h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.process-timeline-step .step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Document Checklist */
.document-checklist ul li {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   RELATED SERVICES & INTERNAL LINKS
   ============================================================ */

.related-service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.related-service-card:hover {
    background-color: var(--accent-gold-bg);
    border-color: var(--accent-gold);
    padding-left: 20px !important;
}

.related-service-card i {
    transition: var(--transition);
}

.related-service-card:hover i {
    transform: translateX(4px);
}

.internal-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
}

.internal-link-card i {
    font-size: 1.5rem;
    color: var(--accent-gold-dark);
}

.internal-link-card:hover {
    background-color: var(--accent-gold-bg);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--primary-blue);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 204, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-bar .trust-item i {
    display: block;
}

/* ============================================================
   APPROVED BY / GOVERNMENT PARTNERS SECTION
   ============================================================ */

.trust-badge {
    cursor: default;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.trust-badge-logo {
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(85%);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-badge:hover {
    color: var(--primary-blue) !important;
}

.trust-badge:hover .trust-badge-logo {
    filter: grayscale(0%) contrast(100%);
    opacity: 1;
    transform: scale(1.08) translateY(-2px);
}

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-green));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============================================================
   CORE WEB VITALS OPTIMIZATIONS
   ============================================================ */

/* Content-visibility for below-fold sections */
.service-section,
.trust-bar,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Font display swap is handled via Google Fonts URL parameter: &display=swap */

/* Contain for cards (prevent layout thrashing) */
.feature-card,
.service-card,
.pricing-card,
.blog-card {
    contain: layout style;
}

/* Explicit dimensions for known elements */
.logo-img {
    width: 48px;
    height: 48px;
    aspect-ratio: 1;
}

/* Hover state for white links */
.hover-white:hover {
    color: var(--white) !important;
}

/* Light gray background */
.bg-light-gray {
    background-color: var(--bg-light);
}

/* Max width utility */
.max-width-600 {
    max-width: 600px;
}

/* ============================================================
   RESPONSIVE ENHANCEMENTS
   ============================================================ */

@media (max-width: 991px) {
    .toc-sidebar {
        display: none;
        /* Hidden on mobile, TOC becomes inline */
    }

    .service-detail-content h2 {
        font-size: 1.35rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 12px;
    }

    .process-timeline {
        padding-left: 30px;
    }

    .process-timeline::before {
        left: 12px;
    }

    .process-timeline-step .step-number {
        margin-left: -36px;
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .cta-box {
        padding: 24px !important;
    }
}

/* ============================================================
   A2Z Services & Pricing + Tally Training Premium Refinements
   ============================================================ */

/* General Hover & Utility Enhancements */
.hover-shadow-effect {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-shadow-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.06) !important;
}

/* Service & Pricing Cards */
.service-pricing-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.01);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    /* Flex column so the .mt-auto footer (price + button) pins to the card bottom,
       keeping prices and buttons on the same level across a row of equal-height cards */
    display: flex;
    flex-direction: column;
}

.service-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.05);
}

.card-gradient-border {
    display: none !important;
}

.service-pricing-card.popular-card {
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 4px 25px rgba(0, 51, 102, 0.02);
    background: rgba(255, 255, 255, 0.95);
}

/* "Most Popular" ribbon badge — gold accent to match brand theme */
.popular-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--primary-blue) !important;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 3px 8px rgba(244, 190, 21, 0.35);
    z-index: 2;
}

.service-pricing-card.popular-card:hover {
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.06);
}

.service-icon-wrapper {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pricing-card:hover .service-icon-wrapper {
    transform: scale(1.05);
}

.btn-learn-more {
    transition: all 0.3s ease;
}

.service-pricing-card:hover .btn-learn-more {
    background-color: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.premium-custom-card:hover .btn-learn-more {
    background-color: var(--accent-gold) !important;
    color: var(--primary-blue) !important;
    border-color: var(--accent-gold) !important;
}

/* Tally Promotion & Landing Page Glassmorphism */
.tally-glass-card {
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 50px rgba(0, 26, 51, 0.15);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tally-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 25px 60px rgba(0, 26, 51, 0.22);
    transform: translateY(-2px);
}

.tally-icon-badge {
    background: rgba(0, 51, 102, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}