/* ==========================================================================
   Qaston Global IT Services - Master Enterprise Design System (White Theme)
   ========================================================================== */

:root {
    /* DeviQA Brand Color Tokens: Royal Blue & Radiant Electric Yellow */
    --blue-primary: #2563EB;
    --blue-royal: #1D4ED8;
    --blue-dark: #1E3A8A;
    --blue-deep: #0F172A;
    --blue-electric: #3B82F6;
    --blue-soft: #EFF6FF;
    --blue-border: #BFDBFE;

    /* DeviQA Signature Radiant Yellow Accent Tokens */
    --yellow-primary: #FFD400;
    --yellow-radiant: #FFE01A;
    --yellow-hover: #FFF033;
    --yellow-light: #FEF9C3;
    --yellow-dark: #E6BE00;
    --yellow-glow: rgba(255, 212, 0, 0.45);
    --yellow-text-dark: #0A1128;

    /* Royal Blue Scale (Mapped to cyan variables for enterprise consistency) */
    --cyan-50: #EFF6FF;
    --cyan-100: #DBEAFE;
    --cyan-200: #BFDBFE;
    --cyan-300: #93C5FD;
    --cyan-400: #60A5FA;
    --cyan-500: #3B82F6;
    --cyan-600: #2563EB;
    --cyan-700: #1D4ED8;
    --cyan-primary: #2563EB;
    --cyan-electric: #3B82F6;
    --cyan-accent: #1D4ED8;
    --cyan-glow: rgba(37, 99, 235, 0.25);
    --cyan-glow-subtle: rgba(37, 99, 235, 0.08);

    /* Background Tokens (Clean White Theme) */
    --bg-pure-white: #FFFFFF;
    --bg-light-alt: #F8FAFC;
    --bg-light-subtle: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFFFFF;
    --bg-card-border: #E2E8F0;
    --bg-card-border-hover: #2563EB;

    /* Text & Neutral Tokens */
    --text-heading: #0A1128;
    --text-heading-sub: #1E293B;
    --text-body: #334155;
    --text-muted: #64748B;
    --text-subtle: #94A3B8;
    --border-subtle: #E2E8F0;
    --border-card: #E2E8F0;

    /* Dark Contrasts for Nav & Footer */
    --navy-dark: #070D1E;
    --navy-surface: #0E172F;

    /* Typography - DeviQA Enterprise Poppins System */
    --font-main: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    /* Multi-Layer Physical Shadows (Ambient + Direct + Inset Specular) */
    --shadow-xs: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-sm: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 1px 3px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.02);
    --shadow-md: inset 0 1px 0 rgba(255, 255, 255, 1), 0 0 0 1px rgba(226, 232, 240, 0.8), 0 4px 14px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-lg: inset 0 1px 0 rgba(255, 255, 255, 1), 0 0 0 1px rgba(37, 99, 235, 0.3), 0 12px 32px -4px rgba(37, 99, 235, 0.14), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
    --shadow-xl: inset 0 1px 0 rgba(255, 255, 255, 1), 0 0 0 1px rgba(226, 232, 240, 0.9), 0 24px 60px -12px rgba(15, 23, 42, 0.18), 0 8px 16px -4px rgba(37, 99, 235, 0.08);
    --shadow-cyan: 0 2px 4px rgba(37, 99, 235, 0.2), 0 8px 24px -4px rgba(37, 99, 235, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    --shadow-cyan-strong: 0 4px 12px rgba(37, 99, 235, 0.25), 0 14px 36px -4px rgba(37, 99, 235, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    --shadow-yellow: 0 4px 14px -2px rgba(255, 212, 0, 0.45), 0 10px 24px -4px rgba(255, 212, 0, 0.25);
    --shadow-inner: inset 0 2px 4px rgba(15, 23, 42, 0.06);

    /* Glassmorphism & Surface Tokens */
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-blur: blur(20px) saturate(180%);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-pure-white);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Container & Grid Utilities */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-py {
    padding: 90px 0;
    position: relative;
}

.section-py-sm {
    padding: 56px 0;
    position: relative;
}

.text-center { text-align: center; }
.text-cyan { color: var(--cyan-primary) !important; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Badges & Pills */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-primary);
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 1px 3px rgba(37, 99, 235, 0.08);
}

.badge-pill.pulse-badge i {
    font-size: 0.5rem;
    color: #10B981;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; filter: drop-shadow(0 0 4px #10B981); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.badge-hot {
    background: linear-gradient(135deg, #EF4444, #F97316);
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    margin-left: 6px;
}

/* Button Component Hierarchy */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FFE033 0%, #FFD400 100%);
    color: #0A1128;
    font-weight: 700;
    border: 1px solid #FFD400;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 1px 3px rgba(15, 23, 42, 0.08),
        0 4px 14px -2px rgba(255, 212, 0, 0.5),
        0 10px 24px -4px rgba(255, 212, 0, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFF04D 0%, #FFE01A 100%);
    color: #000000;
    border-color: #FFE01A;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(15, 23, 42, 0.08),
        0 8px 22px -2px rgba(255, 212, 0, 0.65),
        0 16px 36px -6px rgba(255, 212, 0, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(255, 212, 0, 0.4);
}

.btn-outline-cyan,
.btn-outline-blue {
    background: rgba(37, 99, 235, 0.06);
    color: var(--blue-primary);
    border: 1px solid rgba(37, 99, 235, 0.35);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(15, 23, 42, 0.03);
}

.btn-outline-cyan:hover,
.btn-outline-blue:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 6px 20px rgba(37, 99, 235, 0.35),
        0 12px 30px -4px rgba(29, 78, 216, 0.25);
}

.btn-outline-cyan:active,
.btn-outline-blue:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-royal-blue {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border: 1px solid #2563EB;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 4px 14px -2px rgba(37, 99, 235, 0.4);
}

.btn-royal-blue:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -2px rgba(37, 99, 235, 0.55);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: #0A1128;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-outline-white:active {
    transform: translateY(1px);
}

/* Outline Dark Button (for light surfaces & hero) */
.btn-outline-dark,
.hero-cta-group .btn-outline-white {
    background: #FFFFFF;
    color: var(--text-heading);
    border: 1px solid #CBD5E1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 2px 6px rgba(15, 23, 42, 0.02);
}

.btn-outline-dark i,
.hero-cta-group .btn-outline-white i {
    color: #10B981;
    transition: var(--transition);
}

.btn-outline-dark:hover,
.hero-cta-group .btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--cyan-accent);
    border-color: var(--cyan-electric);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 14px rgba(0, 174, 239, 0.18),
        0 8px 24px -4px rgba(0, 136, 204, 0.12);
}

.btn-outline-dark:hover i,
.hero-cta-group .btn-outline-white:hover i {
    color: var(--cyan-electric);
    transform: scale(1.15);
}

.btn-outline-dark:active,
.hero-cta-group .btn-outline-white:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.08);
}

/* Solid Dark Enterprise Button */
.btn-dark {
    background: linear-gradient(135deg, #0A142F 0%, #060B18 100%);
    color: #FFFFFF;
    border: 1px solid rgba(0, 174, 239, 0.35);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 2px 6px rgba(10, 20, 47, 0.25),
        0 8px 20px -4px rgba(10, 20, 47, 0.35);
}

.btn-dark i {
    color: var(--cyan-accent);
    transition: var(--transition);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #0F1D42 0%, #0A142F 100%);
    border-color: var(--cyan-electric);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 20px -2px rgba(0, 174, 239, 0.35);
}

.btn-dark:hover i {
    transform: scale(1.15);
}

.btn-dark:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.02rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   DeviQA-Inspired Consultation Announcement Bar (Royal Blue & Radiant Yellow)
   ========================================================================== */

.deviqa-promo-bar {
    background: linear-gradient(90deg, #1A62E8 0%, #2563EB 35%, #3B82F6 70%, #6366F1 100%);
    color: #FFFFFF;
    position: relative;
    z-index: 1002;
    padding: 9px 0;
    box-shadow: 0 2px 12px rgba(26, 98, 232, 0.28);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promo-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.01em;
}

.promo-title .highlight-yellow {
    color: #FFD800;
    font-weight: 800;
    text-shadow: 0 0 16px rgba(255, 216, 0, 0.45);
}

.promo-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2px 0 0 0;
    line-height: 1.3;
    font-weight: 400;
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.btn-promo-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE033 0%, #FFD400 100%);
    color: #0A1128;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 8px;
    border: 1px solid #FFD400;
    text-decoration: none;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.12),
        0 4px 14px -2px rgba(255, 212, 0, 0.5);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-promo-yellow:hover {
    background: linear-gradient(135deg, #FFF04D 0%, #FFE01A 100%);
    color: #000000;
    border-color: #FFE01A;
    transform: translateY(-1px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.18),
        0 8px 20px -2px rgba(255, 212, 0, 0.65);
}

.btn-promo-yellow:active {
    transform: translateY(1px);
}

.promo-dismiss-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.promo-dismiss-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 991px) {
    .promo-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .promo-text-content {
        text-align: center;
    }
    .promo-subtitle {
        display: none;
    }
    .btn-promo-yellow {
        padding: 6px 16px;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   Header & Navigation: Ultra-Premium Top Utility Bar (DeviQA / Enterprise)
   ========================================================================== */

.top-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.8rem;
    color: #64748B;
    padding: 8px 0;
    z-index: 1001;
    position: relative;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-left, 
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* 1. Certification Badge Pill */
.top-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    padding: 3px 12px 3px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--blue-royal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.25s ease;
    user-select: none;
}

.top-cert-badge:hover {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
    color: var(--blue-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.18);
}

.top-cert-badge i {
    color: var(--blue-primary);
    font-size: 0.82rem;
}

/* Pulsing radar dot for live status */
.live-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: liveDotPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes liveDotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 2. Location Indicator */
.top-location-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-location-item i {
    color: var(--blue-primary);
    font-size: 0.85rem;
}

.top-location-item:hover {
    color: #0F172A;
}

/* 3. Support Badge */
.top-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: #475569;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-full);
    padding: 3px 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.top-support-badge i {
    color: var(--blue-primary);
}

.top-support-badge:hover {
    color: #0F172A;
    border-color: #CBD5E1;
    background: #F1F5F9;
}

/* 4. Interactive Contact Pills */
.top-contact-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 11px 3px 6px;
    border-radius: var(--radius-full);
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #1E293B;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-pill-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-primary);
    font-size: 0.7rem;
    transition: all 0.25s ease;
}

.top-contact-pill:hover {
    background: #FFFFFF;
    border-color: var(--blue-primary);
    color: var(--blue-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.top-contact-pill:hover .contact-pill-icon {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* 5. Social Icon Circles */
.top-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 8px;
    border-left: 1px solid #E2E8F0;
}

.social-circle-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #64748B;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-circle-btn:hover {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Main Navbar */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 30px -10px rgba(15, 23, 42, 0.08),
        0 4px 6px -2px rgba(15, 23, 42, 0.03);
    border-bottom-color: rgba(203, 213, 225, 0.7);
}

.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 84px;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.brand-logo .logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--blue-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
}

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

.nav-arrow {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--blue-primary);
}

/* ==========================================================================
   Sub-Category Dropdowns (Direct In-Menu Architecture)
   ========================================================================== */
.subcat-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(12px);
    width: 660px;
    max-width: 95vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(226, 232, 240, 0.7),
        0 12px 32px -4px rgba(37, 99, 235, 0.12),
        0 24px 60px -12px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    padding: 24px 26px;
}

.has-dropdown:hover .subcat-dropdown,
.has-dropdown:focus-within .subcat-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.subcat-dropdown-wide {
    width: 860px;
    left: -120px;
}

.subcat-dropdown-right {
    left: auto;
    right: -100px;
}

.subcat-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 16px;
}

.subcat-dropdown-title-wrap h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 6px 0 0;
}

.subcat-count-pill {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    padding: 4px 12px;
}

.subcat-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 230px;
    gap: 20px;
}

.subcat-grid-wide {
    grid-template-columns: 1fr 250px;
}

.subcat-dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 290px;
    overflow-y: auto;
    padding-right: 4px;
}

.subcat-links-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}

.subcat-service-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    background: #F8FAFC;
    border: 1px solid transparent;
}

.subcat-service-item:hover {
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.08);
}

.subcat-service-icon {
    color: var(--blue-primary);
    font-size: 0.78rem;
    margin-top: 3px;
    transition: transform 0.2s ease;
}

.subcat-service-item:hover .subcat-service-icon {
    transform: translateX(2px);
}

.subcat-service-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.subcat-service-item:hover .subcat-service-info strong {
    color: var(--blue-primary);
}

.subcat-service-info span {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subcat-dropdown-feature {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.subcat-feature-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}

.subcat-feature-content {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.subcat-feature-content h6 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 4px;
}

.subcat-feature-content p {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0 0 10px;
}

.subcat-feature-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.subcat-feature-link:hover {
    gap: 9px;
    color: var(--blue-electric);
}

.mobile-nav-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-with-icon img {
    object-fit: contain;
}

/* ==========================================================================
   Mega-Menu Component (White Luxury Theme)
   ========================================================================== */

.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 1240px;
    max-width: 96vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-xl);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(226, 232, 240, 0.7),
        0 8px 16px -4px rgba(37, 99, 235, 0.08),
        0 24px 60px -12px rgba(15, 23, 42, 0.18),
        0 48px 100px -20px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    padding: 28px 32px;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 18px;
}

.mega-menu-intro .mega-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.mega-menu-intro h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-heading);
    font-weight: 700;
}

.mega-menu-intro p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   Sub-Category Layout (DeviQA / Stripe Style)
   ========================================================================== */
.mega-category-layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 24px;
    min-height: 420px;
}

/* Left Sub-Categories Navigation Sidebar */
.mega-categories-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #F8FAFC;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 10px;
}

.mega-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
}

.mega-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.mega-cat-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.mega-cat-text {
    flex: 1;
    min-width: 0;
}

.mega-cat-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.25;
    transition: color 0.2s ease;
}

.mega-cat-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-cat-arrow {
    font-size: 0.72rem;
    color: #94A3B8;
    transition: all 0.2s ease;
}

.mega-cat-item:hover {
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateX(3px);
}

.mega-cat-item:hover .mega-cat-title {
    color: var(--blue-primary);
}

.mega-cat-item:hover .mega-cat-arrow {
    color: var(--blue-primary);
    transform: translateX(3px);
}

.mega-cat-item.active {
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 14px -2px rgba(37, 99, 235, 0.15);
}

.mega-cat-item.active .mega-cat-icon {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.35);
    transform: scale(1.05);
}

.mega-cat-item.active .mega-cat-title {
    color: var(--blue-primary);
}

.mega-cat-item.active .mega-cat-arrow {
    color: var(--blue-primary);
    transform: translateX(3px);
}

/* Right Content Area: Sub-Category Panels */
.mega-categories-content {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 2px 8px rgba(15, 23, 42, 0.02);
}

.mega-cat-panel {
    display: none;
    animation: megaPanelFade 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-cat-panel.active {
    display: block;
}

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

.mega-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 16px;
}

.mega-panel-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 8px 0 3px;
}

.mega-panel-info p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 550px;
    line-height: 1.45;
}

.mega-panel-view-all {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
}

.mega-panel-view-all:hover {
    background: var(--blue-primary);
    color: #FFFFFF;
    transform: translateX(2px);
}

.mega-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 6px;
}

.mega-services-list::-webkit-scrollbar {
    width: 5px;
}

.mega-services-list::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.mega-service-link-card {
    display: block;
    background: #FAFCFE;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-service-link-card:hover {
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.mega-service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.mega-service-card-header h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
    transition: color 0.2s ease;
}

.mega-service-link-card:hover .mega-service-card-header h5 {
    color: var(--blue-primary);
}

.mega-service-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-service-tech-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.mega-service-tech-strip .tech-tag {
    font-size: 0.68rem;
    padding: 2px 7px;
}

.mega-panel-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 212, 0, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
}

.mega-panel-footer-thumb {
    width: 64px;
    height: 42px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.mega-panel-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-panel-footer-text {
    font-size: 0.78rem;
    line-height: 1.35;
}

.mega-panel-footer-text strong {
    display: block;
    color: var(--text-heading);
    font-weight: 700;
}

.mega-panel-footer-text span {
    color: var(--text-muted);
}

/* DeviQA-Inspired Mega-Menu Automation & Tooling Strip */
.mega-tooling-strip {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mega-tooling-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-heading);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mega-tooling-label i {
    color: var(--cyan-accent);
}

.mega-tooling-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.mega-tooling-tag {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-body);
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.95);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.mega-tooling-tag:hover {
    background: rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.35);
    color: var(--cyan-accent);
    transform: translateY(-1px);
}

/* Header Actions & Mobile Toggle */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: 12px;
}

.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    max-width: 88vw;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid #CBD5E1;
    z-index: 1999;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

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

.mobile-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-close-btn {
    background: #F1F5F9;
    border: none;
    color: var(--text-heading);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-content {
    padding: 24px;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
}

.mobile-nav-link:hover {
    color: var(--cyan-accent);
}

.mobile-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background: transparent;
    border: none;
    color: var(--text-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.mobile-accordion-btn i {
    transition: transform 0.25s ease;
}

.mobile-accordion-btn.open i {
    transform: rotate(180deg);
}

.mobile-accordion-body {
    display: none;
    padding: 10px 0 16px;
}

.mobile-accordion-body.open {
    display: block;
}

.mobile-subcat-instruction {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 4px 0 10px;
    padding-left: 4px;
}

.mobile-subcat-group {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    background: #F8FAFC;
    transition: all 0.2s ease;
}

.mobile-subcat-group.open {
    border-color: rgba(37, 99, 235, 0.35);
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.mobile-subcat-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    text-align: left;
}

.mobile-subcat-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-subcat-toggle-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-subcat-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue-primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.mobile-subcat-toggle i {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.mobile-subcat-toggle.open i {
    transform: rotate(180deg);
    color: var(--blue-primary);
}

.mobile-subcat-list {
    display: none;
    padding: 6px 14px 12px;
    background: #FFFFFF;
    border-top: 1px solid var(--border-subtle);
}

.mobile-subcat-list.open {
    display: block;
}

.mobile-subcat-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-subcat-list li {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    margin-bottom: 0;
}

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

.mobile-subcat-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-subcat-list a i {
    font-size: 0.68rem;
    color: var(--blue-primary);
    opacity: 0.7;
}

.mobile-subcat-list a:hover {
    color: var(--blue-primary);
    transform: translateX(3px);
}

.mobile-drawer-contact {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
}

.mobile-drawer-contact h5 {
    color: var(--text-heading);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mobile-drawer-contact p {
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mobile-drawer-contact a {
    color: var(--cyan-accent);
}

/* ==========================================================================
   Hero Section (Premium Royal Blue White Theme)
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 110px 0 100px;
    background: 
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(37, 99, 235, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 90% 50%, rgba(29, 78, 216, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 30% 35% at 10% 80%, rgba(59, 130, 246, 0.07) 0%, transparent 60%),
        var(--bg-pure-white);
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* Hero Grid & 2-Column Split Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 52px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
}

.hero-badge-wrap {
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-heading);
    margin-bottom: 22px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 45%, #3B82F6 80%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-body);
    line-height: 1.68;
    max-width: 600px;
    margin: 0 0 32px;
    font-weight: 400;
}

/* ==========================================================================
   Hero Fast-Track Consultation Bar (Moolya & DeviQA Inspired)
   ========================================================================== */
.hero-fast-track-wrap {
    max-width: 580px;
    margin: 0 0 28px;
    width: 100%;
}

.hero-fast-track-form {
    position: relative;
}

.fast-track-input-group {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid rgba(37, 99, 235, 0.35);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 20px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 20px -2px rgba(37, 99, 235, 0.12),
        0 12px 32px -4px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.fast-track-input-group:focus-within {
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 4px rgba(37, 99, 235, 0.16),
        0 8px 24px -2px rgba(37, 99, 235, 0.18);
    transform: translateY(-1px);
}

.fast-track-icon {
    color: var(--blue-primary);
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.fast-track-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-heading);
    min-width: 160px;
}

.fast-track-input::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fast-track-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFE033 0%, #FFD400 100%);
    color: #0A1128;
    border: 1px solid #FFD400;
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 14px -2px rgba(255, 212, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.fast-track-submit-btn:hover {
    background: linear-gradient(135deg, #FFF04D 0%, #FFE01A 100%);
    color: #000000;
    border-color: #FFE01A;
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 22px -2px rgba(255, 212, 0, 0.65);
}

.fast-track-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.fast-track-submit-btn:hover::after {
    left: 140%;
    transition: all 0.6s ease-in-out;
}

.fast-track-microcopy {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.fast-track-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fast-track-microcopy .text-cyan {
    color: var(--cyan-accent);
}

.microcopy-dot {
    color: rgba(148, 163, 184, 0.6);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* ==========================================================================
   Hero Visual Stage (Testing Illustration, Glow Aura, Floating Badges)
   ========================================================================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-stage {
    position: relative;
    width: 100%;
    max-width: 530px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-aura {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(255, 212, 0, 0.14) 45%, rgba(59, 130, 246, 0.05) 70%, transparent 80%);
    filter: blur(48px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: heroAuraPulse 7s ease-in-out infinite alternate;
}

@keyframes heroAuraPulse {
    0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.75; }
    100% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.hero-image-card {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 248, 255, 0.82) 100%);
    padding: 24px 28px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 24px 48px -12px rgba(37, 99, 235, 0.18),
        0 0 0 1px rgba(219, 234, 254, 0.95);
    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 ease;
}

.hero-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 32px 64px -16px rgba(37, 99, 235, 0.25),
        0 0 0 1.5px rgba(37, 99, 235, 0.35);
}

.hero-main-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.08));
    transition: transform 0.35s ease;
}

.hero-image-card:hover .hero-main-img {
    transform: scale(1.02);
}

/* Floating Glass Badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 234, 254, 0.95);
    border-radius: 18px;
    padding: 12px 18px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 14px 30px -6px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(37, 99, 235, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 3;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-float-badge:hover {
    transform: scale(1.04);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 18px 36px -6px rgba(15, 23, 42, 0.18),
        0 6px 16px rgba(37, 99, 235, 0.16);
}

.float-top-right {
    top: -18px;
    right: -24px;
    animation: floatSlow 5s ease-in-out infinite alternate;
}

.float-bottom-left {
    bottom: -22px;
    left: -26px;
    animation: floatSlow 6.2s ease-in-out 0.8s infinite alternate-reverse;
}

.hero-float-pill {
    position: absolute;
    top: 48%;
    left: -28px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 9999px;
    padding: 9px 18px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-heading);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 12px 28px -4px rgba(37, 99, 235, 0.16);
    z-index: 3;
    animation: floatSlow 5.6s ease-in-out 1.2s infinite alternate;
    transition: transform 0.3s ease;
}

.hero-float-pill:hover {
    transform: translateY(-50%) scale(1.05);
}

.hero-float-pill .pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: pulse 2s infinite;
}

.badge-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-icon-box.bg-blue {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.badge-icon-box.bg-yellow {
    background: linear-gradient(135deg, #FFE033 0%, #FFD400 100%);
    color: #0A1128;
    box-shadow: 0 6px 16px rgba(255, 212, 0, 0.45);
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-stat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-heading);
    line-height: 1.25;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes floatSlow {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* ==========================================================================
   Font Awesome Free Support / Polyfill for fa-shield-check (Pro Icon)
   ========================================================================== */
.fa-shield-check,
i.fa-shield-check {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm115.3 207.4c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L224 309.4l-58.7-58.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l70 70c6.2 6.2 16.4 6.2 22.6 0l136-136z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm115.3 207.4c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L224 309.4l-58.7-58.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l70 70c6.2 6.2 16.4 6.2 22.6 0l136-136z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.fa-shield-check::before,
i.fa-shield-check::before {
    content: "" !important;
    display: none !important;
}

/* Trust Badges Strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--border-subtle);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 600;
}

.trust-item i {
    color: var(--cyan-accent);
    font-size: 1.1rem;
}

/* ==========================================================================
   Infinite Logo Marquee Section (DeviQA / Moolya Style)
   ========================================================================== */
.logo-marquee-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    width: 100%;
    overflow: hidden;
}

.marquee-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.marquee-label::before,
.marquee-label::after {
    content: '';
    height: 1px;
    width: 44px;
    background: rgba(226, 232, 240, 0.9);
}

.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    animation: marqueeScroll 34s linear infinite;
    will-change: transform;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-heading);
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 2px 6px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.marquee-pill i {
    color: var(--blue-primary);
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.marquee-pill:hover {
    background: #FFFFFF;
    border-color: rgba(37, 99, 235, 0.4);
    color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.14);
}

.marquee-pill:hover i {
    transform: scale(1.18);
    color: var(--blue-electric);
}

/* ==========================================================================
   Metrics Section (Premium Dark Navy)
   ========================================================================== */

.metrics-section {
    position: relative;
    background: linear-gradient(135deg, #060D1F 0%, #0A1328 50%, #0E1A38 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    padding: 60px 0;
    overflow: hidden;
}

.metrics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow-primary) 0%, var(--yellow-radiant) 100%);
    opacity: 0;
    transform: scaleX(0.4);
    transition: var(--transition);
}

.metric-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.metric-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 1px rgba(37, 99, 235, 0.25),
        0 8px 32px rgba(37, 99, 235, 0.2),
        0 20px 60px rgba(10, 20, 60, 0.4);
}

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

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

.metric-number {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.metric-suffix {
    color: var(--yellow-primary);
    font-size: 2.6rem;
    font-weight: 800;
}

.metric-label {
    font-size: 0.92rem;
    color: rgba(203, 213, 225, 0.8);
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

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

.section-tag {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-primary);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--yellow-primary);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.12rem;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Interactive Service Hub (White Theme)
   ========================================================================== */

.services-hub-section {
    background: var(--bg-pure-white);
}

.pillar-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pillar-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(15, 23, 42, 0.04);
}

.pillar-tab-btn img,
.pillar-tab-btn svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.pillar-tab-btn:hover {
    border-color: var(--blue-electric);
    color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 12px rgba(37, 99, 235, 0.14);
}

.pillar-tab-btn.active {
    background: #FFFFFF;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        0 6px 18px rgba(37, 99, 235, 0.18);
    transform: translateY(-1px);
}

.pillar-tab-btn.active img,
.pillar-tab-btn.active svg {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.2));
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

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

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 4px 12px -2px rgba(15, 23, 42, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--yellow-primary) 100%);
    opacity: 0;
    transform: scaleX(0.2);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        0 8px 16px -4px rgba(37, 99, 235, 0.12),
        0 20px 40px -8px rgba(15, 23, 42, 0.1);
}

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

.service-card-top {
    margin-bottom: 20px;
}

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

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.85) 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 12px -2px rgba(37, 99, 235, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    flex-shrink: 0;
}

.service-card:hover .service-card-icon {
    background: #FFFFFF;
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        0 8px 20px -4px rgba(37, 99, 235, 0.28);
    transform: translateY(-2px) scale(1.06);
}

.service-card-icon img,
.service-card-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-icon img,
.service-card:hover .service-card-icon svg {
    transform: scale(1.12);
    filter: drop-shadow(0 3px 6px rgba(0, 119, 182, 0.2));
}

/* ==========================================================================
   DeviQA Frosted Squircle Icon Badge Container (Universal Component)
   ========================================================================== */
.icon-squircle-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.85) 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 14px -2px rgba(37, 99, 235, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-squircle-badge img,
.icon-squircle-badge svg {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-squircle-badge:hover,
.spotlight-feature-box:hover .icon-squircle-badge,
.platform-pill-card:hover .icon-squircle-badge {
    background: #FFFFFF;
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        0 8px 24px -4px rgba(37, 99, 235, 0.28);
    transform: translateY(-2px) scale(1.06);
}

.icon-squircle-badge:hover img,
.icon-squircle-badge:hover svg,
.spotlight-feature-box:hover .icon-squircle-badge img,
.spotlight-feature-box:hover .icon-squircle-badge svg,
.platform-pill-card:hover .icon-squircle-badge img,
.platform-pill-card:hover .icon-squircle-badge svg {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.2));
}

/* ==========================================================================
   Moolya Technical Engineering Crosshairs (+)
   ========================================================================== */
.has-crosshairs {
    position: relative;
}

.has-crosshairs::before,
.has-crosshairs::after {
    content: '+';
    position: absolute;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgba(37, 99, 235, 0.35);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.has-crosshairs::before {
    top: 8px;
    left: 10px;
}

.has-crosshairs::after {
    bottom: 8px;
    right: 10px;
}

.has-crosshairs:hover::before,
.has-crosshairs:hover::after {
    color: var(--blue-primary);
    transform: scale(1.35);
}

.service-card-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--blue-primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.service-card:hover .service-card-title {
    color: var(--blue-primary);
}

.service-card-desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 18px;
}

.service-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tech-tag {
    font-size: 0.75rem;
    background: rgba(241, 245, 249, 0.85);
    color: var(--text-body);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--blue-primary);
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-card-link:hover {
    color: var(--blue-electric);
    gap: 12px;
}

/* ==========================================================================
   Agentic AI Spotlight Section
   ========================================================================== */

.spotlight-section {
    background: var(--bg-light-alt);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.spotlight-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.spotlight-content p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 28px;
}

.spotlight-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.spotlight-feature-box {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 4px 12px -2px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spotlight-feature-box:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-4px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.18),
        0 8px 20px -4px rgba(37, 99, 235, 0.12),
        0 16px 36px -6px rgba(15, 23, 42, 0.08);
}

.spotlight-feature-box i {
    color: var(--cyan-accent);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.spotlight-feature-box img,
.spotlight-feature-box svg {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 12px;
    object-fit: contain;
    transition: var(--transition);
}

.spotlight-feature-box:hover img,
.spotlight-feature-box:hover svg {
    transform: scale(1.1);
}

.spotlight-feature-box h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.spotlight-feature-box p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* Interactive Neural UI Mockup */
.spotlight-visual {
    position: relative;
}

.agent-terminal-card {
    background: #080E21;
    border: 1px solid rgba(37, 99, 235, 0.45);
    border-radius: var(--radius-xl);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(37, 99, 235, 0.15),
        0 24px 70px -10px rgba(10, 20, 47, 0.5),
        0 40px 100px -20px rgba(37, 99, 235, 0.3);
    overflow: hidden;
    position: relative;
}

.terminal-header {
    background: #060B18;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.terminal-title {
    font-size: 0.78rem;
    font-family: monospace;
    color: #38BDF8;
}

.terminal-body {
    padding: 24px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.85rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terminal-prompt {
    color: #38BDF8;
}

.terminal-text {
    color: #E2E8F0;
}

.terminal-success {
    color: #10B981;
}

.terminal-highlight {
    color: #38BDF8;
    font-weight: bold;
}

/* ==========================================================================
   Enterprise Platforms Section
   ========================================================================== */

.enterprise-platforms-section {
    background: var(--bg-pure-white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-pill-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 4px 12px -2px rgba(15, 23, 42, 0.04);
}

.platform-pill-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.18),
        0 8px 18px -2px rgba(37, 99, 235, 0.12),
        0 18px 36px -6px rgba(15, 23, 42, 0.08);
}

.platform-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue-primary);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 14px -2px rgba(37, 99, 235, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-pill-card:hover .platform-icon-wrap {
    transform: translateY(-2px) scale(1.06);
    background: #FFFFFF;
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        0 8px 20px -4px rgba(37, 99, 235, 0.28);
}

.platform-icon-wrap img,
.platform-icon-wrap svg {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.platform-pill-card:hover .platform-icon-wrap img,
.platform-pill-card:hover .platform-icon-wrap svg {
    transform: scale(1.12);
    filter: drop-shadow(0 3px 6px rgba(0, 119, 182, 0.2));
}

.platform-pill-card h4 {
    color: var(--text-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.platform-pill-card p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.45;
    margin-bottom: 12px;
}

.platform-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.platform-pill-card:hover .platform-link {
    color: var(--blue-electric);
    gap: 8px;
}

/* ==========================================================================
   Industry Verticals (White Theme)
   ========================================================================== */

.industries-section {
    background: var(--bg-light-alt);
    border-top: 1px solid var(--border-subtle);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFE 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 6px 16px -4px rgba(15, 23, 42, 0.05);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--yellow-primary) 100%);
    opacity: 0;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.18),
        0 10px 24px -4px rgba(37, 99, 235, 0.12),
        0 24px 48px -10px rgba(15, 23, 42, 0.09);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.85) 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 14px -2px rgba(37, 99, 235, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-icon {
    transform: translateY(-2px) scale(1.06);
    background: #FFFFFF;
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        0 8px 24px -4px rgba(37, 99, 235, 0.28);
}

.industry-icon img,
.industry-icon svg {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon img,
.industry-card:hover .industry-icon svg {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 10px rgba(0, 119, 182, 0.22));
}

.industry-card h3 {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--text-heading);
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 16px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ==========================================================================
   Global CTA Strip
   ========================================================================== */

.global-cta-strip {
    padding: 60px 0;
    background: var(--bg-pure-white);
}

.cta-banner-card {
    background: linear-gradient(135deg, #0F1B3C 0%, #1A2F6A 35%, #1D4ED8 70%, #2563EB 100%);
    border: 1px solid rgba(37, 99, 235, 0.5);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.3),
        0 20px 60px -10px rgba(10, 20, 60, 0.5),
        0 30px 80px -20px rgba(37, 99, 235, 0.3);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.15) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-banner-card .cta-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.cta-banner-card h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.25;
    margin: 14px 0 12px;
}

.cta-banner-card p {
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.55;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 2;
    min-width: 240px;
}

/* ==========================================================================
   Footer Component (Grounded Navy Enterprise Base)
   ========================================================================== */

.site-footer {
    background: #FFFFFF;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 30px;
    position: relative;
    color: var(--text-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-brand .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.contact-entry .contact-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.contact-entry .contact-icon img,
.contact-entry .contact-icon svg {
    width: 14px;
    height: 14px;
    display: block;
    object-fit: contain;
}

.contact-entry .contact-text strong {
    display: block;
    color: var(--text-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-entry .contact-text span,
.contact-entry .contact-text a {
    color: var(--text-body);
}

.contact-entry .contact-text a:hover {
    color: var(--cyan-accent);
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-links a:hover {
    background: var(--blue-primary);
    color: #FFFFFF;
    border-color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.footer-heading {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--text-heading);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--yellow-primary);
}

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

.footer-links a {
    font-size: 0.86rem;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--cyan-accent);
    opacity: 0.8;
}

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

.footer-links a:hover i {
    opacity: 1;
}

/* Newsletter in Footer */
.footer-newsletter-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-top: 24px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 6px 16px -2px rgba(15, 23, 42, 0.05);
}

.footer-newsletter-card h5 {
    color: var(--text-heading);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.footer-newsletter-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.newsletter-input-group {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: all 0.2s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 2px rgba(15, 23, 42, 0.02),
        0 0 0 3px rgba(37, 99, 235, 0.15);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: var(--text-heading);
    font-size: 0.85rem;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    background: linear-gradient(135deg, #FFE033 0%, #FFD400 100%);
    border: none;
    color: #0A1128;
    font-weight: 700;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #FFF04D 0%, #FFE01A 100%);
    color: #000000;
}

.newsletter-status {
    font-size: 0.78rem;
    margin-top: 8px;
    display: none;
}

.newsletter-status.success {
    display: block;
    color: #10B981;
}

/* Footer Bottom Strip */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    white-space: nowrap;
}

.footer-bottom-links a:hover {
    color: var(--cyan-accent);
}

.back-to-top {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: var(--text-heading);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--blue-primary);
    color: #FFFFFF;
    border-color: var(--blue-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

/* ==========================================================================
   Internal Pages (White Theme)
   ========================================================================== */

/* Page Banner */
.page-banner {
    position: relative;
    padding: 70px 0 50px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 174, 239, 0.1) 0%, transparent 70%),
                var(--bg-light-alt);
    border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.breadcrumb-nav a:hover {
    color: var(--cyan-accent);
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.page-banner-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 800px;
}

/* Service Detail Layout (White Theme) */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.detail-main-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-xl);
    padding: 44px 48px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 12px 32px -4px rgba(15, 23, 42, 0.06),
        0 24px 60px -12px rgba(0, 136, 204, 0.04);
    position: relative;
    overflow: hidden;
}

.detail-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin: 30px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.detail-section-title:first-child {
    margin-top: 0;
}

.detail-prose {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.benefits-checklist, .deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.benefit-item, .deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-body);
}

.benefit-item i {
    color: #10B981;
    margin-top: 4px;
}

.deliverable-item i {
    color: var(--cyan-accent);
    margin-top: 4px;
}

.tech-stack-matrix {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.tech-badge {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: var(--text-heading);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Sidebar Inquiry Card */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-form-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 2px 6px rgba(15, 23, 42, 0.03),
        0 16px 36px -4px rgba(15, 23, 42, 0.08),
        0 30px 60px -12px rgba(0, 174, 239, 0.08);
    position: relative;
    overflow: hidden;
}

.sidebar-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--yellow-primary));
}

.sidebar-form-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.sidebar-form-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-heading-sub);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-md);
    padding: 13px 16px;
    color: var(--text-heading);
    font-size: 0.92rem;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control:hover {
    border-color: #94A3B8;
    background: #FFFFFF;
}

.form-control:focus {
    background: #FFFFFF;
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 2px rgba(15, 23, 42, 0.02),
        0 0 0 3px rgba(37, 99, 235, 0.18),
        0 2px 8px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-control option {
    background: #FFFFFF;
    color: var(--text-heading);
}

.sidebar-info-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 8px 20px -4px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.sidebar-info-card:hover {
    border-color: rgba(0, 174, 239, 0.35);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 12px -2px rgba(15, 23, 42, 0.05),
        0 16px 32px -4px rgba(0, 136, 204, 0.08);
}

.services-filter-panel {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 40px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 12px 28px -4px rgba(15, 23, 42, 0.06);
}

/* Contact Page Grid */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 4px 12px -2px rgba(15, 23, 42, 0.04);
    position: relative;
}

.contact-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-4px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 8px -2px rgba(15, 23, 42, 0.05),
        0 16px 32px -4px rgba(37, 99, 235, 0.12);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.04) 100%);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 2px 8px rgba(37, 99, 235, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.06);
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 16px rgba(37, 99, 235, 0.25);
}

.contact-card h4 {
    color: var(--text-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-card p, .contact-card a {
    color: var(--text-body);
    font-size: 0.95rem;
}

.contact-card a:hover {
    color: var(--cyan-accent);
}

.location-map-card {
    margin-top: 32px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 12px 32px -4px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.location-map-card:hover {
    border-color: rgba(0, 174, 239, 0.35);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 12px -2px rgba(15, 23, 42, 0.05),
        0 20px 40px -8px rgba(0, 136, 204, 0.12);
}

/* Toast Component */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #0A1128;
    border: 1px solid rgba(0, 174, 239, 0.4);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.2rem;
    color: #10B981;
}

/* ==========================================================================
   Animation Engine (Scroll Reveals, Cursor Spotlights & Micro-Interactions)
   ========================================================================== */

/* 1. Top Reading Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #2563EB 0%, #3B82F6 50%, #FFD400 100%);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
    z-index: 99999;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

/* 2. Scroll Reveal Engine */
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Interactive Cursor Spotlight on Cards */
.service-card,
.metric-card,
.spotlight-feature-box,
.platform-pill-card,
.contact-card,
.sidebar-info-card {
    position: relative;
}

.service-card::after,
.metric-card::after,
.spotlight-feature-box::after,
.platform-pill-card::after,
.contact-card::after,
.sidebar-info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(37, 99, 235, 0.09),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after,
.metric-card:hover::after,
.spotlight-feature-box:hover::after,
.platform-pill-card:hover::after,
.contact-card:hover::after,
.sidebar-info-card:hover::after {
    opacity: 1;
}

/* 4. Ambient Mesh Drift */
.hero-mesh {
    animation: heroMeshDrift 24s linear infinite alternate;
}

@keyframes heroMeshDrift {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 40px 40px;
    }
}

/* 5. Floating Badge Animation */
.badge-pill {
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-4px);
    }
}

/* 6. Primary Button Specular Shimmer Sweep */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(25deg);
    animation: btnShimmer 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes btnShimmer {
    0%, 75% {
        left: -70%;
    }
    100% {
        left: 140%;
    }
}

/* 7. Icon Kinetic Pop on Hover */
.service-card:hover .service-card-icon img,
.service-card:hover .service-card-icon svg,
.spotlight-feature-box:hover img,
.spotlight-feature-box:hover svg,
.platform-pill-card:hover .platform-icon img,
.platform-pill-card:hover .platform-icon svg,
.contact-card:hover .contact-card-icon img,
.contact-card:hover .contact-card-icon svg {
    animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15) rotate(-4deg);
    }
    100% {
        transform: scale(1.08) rotate(0deg);
    }
}

/* 8. Agent Terminal Laser Scanline & Cursor */
.agent-terminal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.9) 30%, rgba(255, 212, 0, 0.9) 70%, transparent 100%);
    box-shadow: 0 0 14px rgba(37, 99, 235, 0.85);
    opacity: 0;
    animation: terminalScanline 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes terminalScanline {
    0% {
        top: 0%;
        opacity: 0;
    }
    15% {
        opacity: 0.85;
    }
    85% {
        opacity: 0.85;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--cyan-accent);
    margin-left: 6px;
    vertical-align: middle;
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* 9. Back to Top Visibility */
.back-to-top {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 10. Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-mesh,
    .badge-pill,
    .btn-primary::after,
    .agent-terminal-card::after,
    .terminal-cursor {
        animation: none !important;
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1380px) {
    .header-container {
        padding: 0 16px;
        gap: 14px;
    }
    .desktop-nav .nav-list {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.82rem;
        padding: 6px 2px;
    }
    .brand-logo .logo-img {
        height: 38px;
    }
    .header-actions .header-cta {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 1180px) {
    .desktop-nav {
        display: none !important;
    }
    .mobile-toggle-btn {
        display: flex !important;
    }
    .header-container {
        height: 72px;
    }
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-subtitle,
    .hero-fast-track-wrap {
        margin-left: auto;
        margin-right: auto;
    }
    .fast-track-microcopy,
    .hero-cta-group {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
        margin-bottom: 8px;
    }
    .hero-image-stage {
        max-width: 440px;
    }
    .hero-float-badge.float-top-right {
        right: 0;
        top: -12px;
    }
    .hero-float-badge.float-bottom-left {
        left: 0;
        bottom: -16px;
    }
    .hero-float-pill {
        display: none;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .spotlight-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    .cta-actions {
        width: 100%;
    }
    .d-none-sm {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        padding: 4px 0;
    }
    .top-bar-left, 
    .top-bar-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .top-socials {
        border-left: none;
        padding-left: 0;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-image-stage {
        max-width: 100%;
    }
    .hero-image-card {
        padding: 16px 20px;
        border-radius: 20px;
    }
    .hero-float-badge {
        padding: 8px 12px;
        border-radius: 12px;
        gap: 8px;
    }
    .badge-icon-box {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }
    .badge-stat {
        font-size: 0.9rem;
    }
    .badge-label {
        font-size: 0.68rem;
    }
    .services-cards-grid,
    .industries-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .spotlight-features {
        grid-template-columns: 1fr;
    }
    .fast-track-input-group {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 12px;
        gap: 10px;
    }
    .fast-track-input {
        width: 100%;
        text-align: center;
        padding: 6px 0;
    }
    .fast-track-icon {
        display: none;
    }
    .fast-track-submit-btn {
        width: 100%;
        justify-content: center;
    }
    .fast-track-microcopy {
        flex-wrap: wrap;
        gap: 8px;
    }
    .mega-tooling-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   Premium Enhancements — v1.3 Royal Blue Revamp
   ========================================================================== */

.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat1 12s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat2 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.12); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, -30px) scale(1.08); }
}

.trust-item i { color: var(--blue-primary); font-size: 1.1rem; }

.pillar-tabs {
    background: var(--bg-light-alt);
    padding: 16px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 2px 8px rgba(15,23,42,0.04);
    margin-bottom: 40px;
}

.page-banner {
    background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(37,99,235,0.12) 0%, transparent 70%), var(--bg-light-alt);
}

.breadcrumb-nav a:hover { color: var(--blue-primary); }
.contact-entry .contact-text a:hover { color: var(--blue-primary); }
.footer-bottom-links a:hover { color: var(--blue-primary); }
.footer-links a:hover { color: var(--blue-primary); }
.footer-links a i { color: var(--blue-primary); opacity: 0.8; }
.contact-card a:hover { color: var(--blue-primary); }
.spotlight-feature-box i { color: var(--blue-primary); }
.deliverable-item i { color: var(--blue-primary); }
.toast { border-color: rgba(37, 99, 235, 0.4); }

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.3rem; }
    .pillar-tabs { padding: 12px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.95rem; }
    .hero-section::before, .hero-section::after { display: none; }
    .metric-number { font-size: 2.8rem; }
}

/* ==========================================================================
   Pillar Showcase Banner in Enterprise Service Taxonomy (DeviQA / Moolya Style)
   ========================================================================== */
.pillar-showcase-banner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #EFF6FF 100%);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 16px -2px rgba(37, 99, 235, 0.08),
        0 16px 36px -8px rgba(15, 23, 42, 0.05);
}

.pillar-showcase-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue-primary) 0%, var(--yellow-primary) 100%);
    border-radius: 4px 0 0 4px;
}

.pillar-showcase-badge-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pillar-count-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0A1128;
    background: var(--yellow-primary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 6px rgba(255, 212, 0, 0.35);
}

.pillar-showcase-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 12px;
}

.pillar-showcase-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pillar-showcase-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.showcase-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-heading);
}

.showcase-bullet i {
    color: var(--blue-primary);
    font-size: 1rem;
}

.pillar-showcase-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Right Visual Illustration Frame */
.pillar-showcase-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #FFFFFF;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 12px 32px -4px rgba(37, 99, 235, 0.18),
        0 24px 60px -12px rgba(15, 23, 42, 0.12);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-height: 320px;
}

.pillar-showcase-banner:hover .pillar-img-frame {
    transform: translateY(-4px);
    border-color: var(--blue-primary);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 16px 40px -4px rgba(37, 99, 235, 0.28),
        0 30px 70px -12px rgba(15, 23, 42, 0.16);
}

.pillar-showcase-img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pillar-showcase-banner:hover .pillar-showcase-img {
    transform: scale(1.03);
}

.pillar-img-overlay-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Pillar Services Header Divider */
.pillar-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

.pillar-services-title-wrap h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 2px;
}

.pillar-services-title-wrap p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.pillar-services-count {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    padding: 4px 12px;
}

@media (max-width: 992px) {
    .mega-category-layout {
        grid-template-columns: 1fr;
    }
    .pillar-showcase-banner {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }
    .pillar-showcase-visual {
        order: -1;
    }
}

/* ==========================================================================
   About Us Page Styles & Mobile Responsiveness
   ========================================================================== */

/* Utility Button Block */
.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* About Story & Mission/Vision */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-story-text .section-title {
    margin-bottom: 20px;
}

.about-story-text p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 18px;
}

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

.about-vision-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-vision-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.about-vision-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.about-vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 10px;
}

.about-vision-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* About Core Values */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-value-card {
    background: var(--bg-pure-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.about-value-card img {
    margin-bottom: 16px;
}

.about-value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Madurai Delivery Hub */
.about-hub-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-hub-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.about-hub-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-heading);
    line-height: 1.5;
}

.about-hub-bullet-item i {
    color: var(--blue-primary);
    font-size: 1.15rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-hub-card {
    background: var(--bg-pure-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    text-align: center;
}

.about-hub-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 2px solid rgba(37, 99, 235, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--blue-primary);
}

.about-hub-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.about-hub-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.about-hub-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tailored Engagement Models */
.about-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.about-model-featured {
    border-color: var(--blue-primary) !important;
    box-shadow: 0 12px 36px rgba(37, 99, 235, 0.12) !important;
    position: relative;
}

.about-model-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-model-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-body);
}

.about-model-list li i {
    color: #16a34a;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Responsive Media Queries for About & Internal Pages */
@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 44px;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-hub-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-models-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 44px 0 32px;
    }
    .page-banner-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .page-banner-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .breadcrumb-nav {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .section-py {
        padding: 52px 0;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    .section-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
    }
    .about-hub-card {
        padding: 28px 20px;
    }
    .about-hub-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .about-hub-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-vision-card {
        padding: 22px 18px;
    }
    .about-value-card {
        padding: 22px 18px;
    }
    .about-hub-card {
        padding: 24px 16px;
    }
    .about-hub-icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 1.45rem;
        margin-bottom: 16px;
    }
    .about-hub-card h3 {
        font-size: 1.18rem;
    }
    .about-hub-card p {
        font-size: 0.88rem;
    }
    .about-hub-bullet-item {
        font-size: 0.88rem;
    }
}

/* ==========================================================================
   Industry Solutions Page Styles & Mobile Responsiveness
   ========================================================================== */

.industries-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.industries-page-grid .industry-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFE 100%);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 6px 16px -4px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
}

.industries-page-grid .industry-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(37, 99, 235, 0.18),
        0 10px 24px -4px rgba(37, 99, 235, 0.12),
        0 24px 48px -10px rgba(15, 23, 42, 0.09);
}

.industry-compliance-wrap {
    margin: 20px 0 22px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.industry-compliance-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.industries-page-grid .service-card-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.industries-page-grid .service-card-link:hover {
    color: var(--blue-electric);
    gap: 12px;
}

/* Responsive Media Queries for Industries Page & CTA Strip */
@media (max-width: 992px) {
    .industries-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .industries-page-grid {
        gap: 20px;
    }
    .industries-page-grid .industry-card {
        padding: 28px 22px;
        border-radius: var(--radius-lg);
    }
    .industries-page-grid .industry-card h3 {
        font-size: 1.22rem;
        line-height: 1.35;
    }
    .industries-page-grid .industry-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .cta-banner-card {
        padding: 36px 20px;
    }
    .cta-banner-card h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    .cta-banner-card p {
        font-size: 0.92rem;
    }
    .cta-actions {
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .industries-page-grid .industry-card {
        padding: 22px 16px;
    }
    .industries-page-grid .industry-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 14px;
    }
    .industries-page-grid .industry-icon img,
    .industries-page-grid .industry-icon svg {
        width: 36px;
        height: 36px;
    }
    .industries-page-grid .industry-card h3 {
        font-size: 1.15rem;
    }
    .industry-compliance-wrap {
        margin: 14px 0 16px;
        padding-top: 12px;
    }
    .industry-compliance-title {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    .industry-tags {
        gap: 6px;
    }
    .industry-tags .tech-tag {
        font-size: 0.72rem;
        padding: 3px 8px;
    }
    .industries-page-grid .service-card-link {
        font-size: 0.88rem;
    }
    .cta-banner-card {
        padding: 28px 16px;
        border-radius: var(--radius-lg);
    }
    .cta-banner-card h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   Comprehensive Site-Wide Mobile Responsiveness (All Pages)
   ========================================================================== */

/* 1. Service Detail Lifecycle Grid */
.delivery-lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

/* 2. Form Two-Column Row Utility */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* 3. Contact Form Card */
.contact-form-card {
    padding: 38px;
}

/* 4. Terminal Body Overflow Fix */
.terminal-body {
    word-break: break-word;
    overflow-x: auto;
}

/* 5. Mobile & Tablet Media Queries */
@media (max-width: 992px) {
    .contact-form-card {
        padding: 30px 22px;
    }
}

@media (max-width: 768px) {
    /* Header Bar & Actions on Mobile */
    .header-container {
        padding: 0 16px;
    }
    .header-actions .header-cta {
        padding: 7px 12px;
        font-size: 0.78rem;
    }

    /* Index: Pillar Tabs & Showcase Banner */
    .pillar-tabs {
        gap: 8px;
        margin-bottom: 26px;
    }
    .pillar-tab-btn {
        padding: 8px 15px;
        font-size: 0.84rem;
    }
    .pillar-showcase-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .pillar-showcase-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .pillar-showcase-title {
        font-size: 1.55rem;
    }
    .pillar-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Service Detail Main Card & Sidebar */
    .detail-main-card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }
    .detail-section-title {
        font-size: 1.35rem;
        margin-top: 28px;
    }
    .detail-sidebar {
        gap: 20px;
    }
    .sidebar-form-card {
        padding: 26px 20px;
        border-radius: var(--radius-lg);
    }

    /* Services Directory Panel */
    .services-filter-panel {
        padding: 22px 18px;
        margin-bottom: 28px;
        border-radius: var(--radius-lg);
    }

    /* Footer Mobile Alignment & Centering */
    .site-footer {
        padding: 48px 0 24px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .footer-grid {
        margin-bottom: 32px;
        gap: 28px;
        width: 100%;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
    }
    .footer-newsletter-card {
        padding: 20px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .newsletter-input-group {
        width: 100%;
        box-sizing: border-box;
    }
    .newsletter-input {
        min-width: 0;
        width: 100%;
    }
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 16px;
        padding-top: 24px;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-bottom-left {
        width: 100%;
        text-align: center;
    }
    .footer-bottom-left p {
        text-align: center;
        margin: 0;
        font-size: 0.82rem;
        line-height: 1.6;
    }
    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 8px 14px;
    }
    .footer-bottom-links span {
        display: none;
    }
    .footer-bottom-links a {
        font-size: 0.82rem;
        white-space: nowrap;
    }
    .footer-bottom-right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }
    .back-to-top {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    /* Form 2-Column Collapse */
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Delivery Lifecycle Collapse */
    .delivery-lifecycle-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Hero CTA Group */
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust-strip {
        gap: 16px;
    }
    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Ultra-Compact Header Protection for 320px–480px */
    .brand-logo .logo-img {
        height: 34px;
    }
    .header-actions .header-cta {
        padding: 6px 10px;
        font-size: 0.74rem;
        gap: 6px;
    }
    .header-actions {
        gap: 10px;
    }

    /* Contact Details & Cards */
    .contact-form-card {
        padding: 22px 16px;
    }
    .contact-card {
        padding: 18px 14px;
        gap: 14px;
    }
    .contact-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .contact-card h4 {
        font-size: 0.98rem;
    }

    /* Terminal on Small Mobile */
    .terminal-body {
        padding: 16px 12px;
        font-size: 0.76rem;
    }
    .terminal-title {
        font-size: 0.68rem;
    }

    /* Service Detail Elements */
    .detail-main-card {
        padding: 20px 15px;
    }
    .tech-badge {
        font-size: 0.78rem;
        padding: 4px 10px;
    }
    .benefit-item, .deliverable-item {
        font-size: 0.88rem;
    }

    /* Pillar Tabs */
    .pillar-tab-btn {
        padding: 7px 12px;
        font-size: 0.78rem;
    }
    .pillar-tab-btn img,
    .pillar-tab-btn svg {
        width: 15px;
        height: 15px;
    }

    /* Footer 480px Adjustments */
    .footer-newsletter-card {
        padding: 16px 12px;
    }
    .footer-bottom-links {
        gap: 6px 10px;
    }
    .footer-bottom-links a {
        font-size: 0.78rem;
    }
    .footer-bottom-left p {
        font-size: 0.76rem;
    }
}

@media (max-width: 380px) {
    /* Ultra-narrow devices (320px–360px): condense header CTA */
    .header-actions .header-cta span {
        display: none;
    }
    .header-actions .header-cta {
        padding: 8px 10px;
    }
}


