/* ==========================================================================
   SA INFOTECHS - COMMON.CSS
   ========================================================================== */

/* ==========================================================================
   SA INFOTECHS - ENTERPRISE IT & SOFTWARE SOLUTIONS
   Modern, Clean & Professional Executive Palette (Harmonized with Logo)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Color System
   -------------------------------------------------------------------------- */
:root {
    /* Exact Logo Monogram Gradient Accents */
    --logo-blue: #0072ff;
    --logo-purple: #7928ca;
    --logo-navy: #051347;
    --logo-cyan: #00c6ff;
    
    /* Primary Gradient Schemes */
    --gradient-brand: linear-gradient(135deg, #0072ff 0%, #7928ca 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 114, 255, 0.25) 0%, rgba(121, 40, 202, 0.25) 100%);
    --gradient-text: linear-gradient(135deg, #0072ff 0%, #6366f1 50%, #7928ca 100%);

    /* Professional, Clean Non-Blue Page Background Palette */
    --bg-base: #f8fafc;            /* Crisp Pearl Slate Base */
    --bg-surface: #ffffff;         /* Pure Clean White Surfaces */
    --bg-surface-elevated: #f1f5f9;/* Soft Subdued Light Grey */
    --bg-card: #ffffff;            /* High Contrast Card Background */
    --bg-card-hover: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    
    /* Typography & Contrast */
    --text-primary: #0f172a;       /* Deep High-Contrast Obsidian Slate */
    --text-secondary: #475569;     /* Readable Muted Slate */
    --text-muted: #64748b;         /* Neutral Subtitle Grey */
    --text-inverse: #ffffff;

    /* Borders & Outlines */
    --border-subtle: #e2e8f0;      /* Subtle Neutral Border */
    --border-medium: #cbd5e1;      /* Medium Contrast Border */
    --border-glow: rgba(0, 114, 255, 0.4);

    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.09);
    --shadow-glow: 0 8px 30px rgba(0, 114, 255, 0.16);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout & Sizing */
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== MULTI-PAGE SPA VIEW STYLES ==================== */
.page-view {
    display: none;
    opacity: 0;
    width: 100%;
}

.page-view.active {
    display: block;
    opacity: 1;
    animation: fadeInView 0.4s ease forwards;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header Banner for Sub-pages (Normal Big & Premium) */
.page-banner {
    position: relative;
    padding: 120px 0 110px;
    background: linear-gradient(135deg, #070c1a 0%, #0d152d 35%, #18153c 70%, #0c0f24 100%);
    border-bottom: 1px solid rgba(0, 114, 255, 0.16);
    overflow: hidden;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 880px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.28) 0%, rgba(121, 40, 202, 0.22) 50%, transparent 75%);
    filter: blur(75px);
    pointer-events: none;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.4vw, 4.1rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    line-height: 1.18;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 11px 26px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.98rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.breadcrumb-nav a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: #38bdf8;
    transform: translateY(-1px);
}

.breadcrumb-nav .separator {
    color: #64748b;
    font-size: 0.75rem;
}

.breadcrumb-nav .current {
    color: #38bdf8;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 15px);
    overflow-x: hidden;
}

@media (min-width: 1200px) {
    html {
        font-size: 16.5px;
    }
}

@media (min-width: 1440px) {
    html {
        font-size: 17px;
    }
}

@media (min-width: 1680px) {
    html {
        font-size: 17.5px;
    }
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}

@media (min-width: 1200px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* --------------------------------------------------------------------------
   3. Ambient Subtle Light Accents
   -------------------------------------------------------------------------- */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.glow-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, rgba(121, 40, 202, 0.08) 60%, transparent 80%);
}

.glow-2 {
    width: 600px;
    height: 600px;
    top: 45%;
    left: -150px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.12) 0%, rgba(0, 114, 255, 0.06) 60%, transparent 80%);
}

.glow-3 {
    width: 500px;
    height: 500px;
    bottom: 5%;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.12) 0%, transparent 70%);
}

/* --------------------------------------------------------------------------
   4. Typography & Common UI Components
   -------------------------------------------------------------------------- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 4.2vw, 3rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 740px;
    margin: 0 auto 48px;
}

.section-lead {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.section-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Badges */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--logo-blue);
    margin-bottom: 18px;
}

.badge-pill.light {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--logo-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--logo-blue);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-brand) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(0, 114, 255, 0.35);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.45);
    color: #ffffff !important;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
    z-index: -1;
    filter: blur(8px);
    opacity: 0.3;
    transition: opacity var(--transition-base);
}

.btn-glow:hover::before {
    opacity: 0.65;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--logo-blue);
    color: var(--logo-blue);
    transform: translateY(-2px);
}

.btn-glass {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.btn-glass:hover {
    border-color: var(--logo-blue);
    color: var(--logo-blue);
}

.btn-light {
    background: #ffffff;
    color: var(--logo-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.section {
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   5. Header & Navigation (Crisp Light Background & High Contrast)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
    z-index: 999;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    height: 72px;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.site-header .header-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 48px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Exact Original Logo (No modification) */
.brand-logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
    position: relative;
    left: 40px;
}

.main-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}
.brand-logo:hover {
    transform: scale(1.02);
}


/* Navigation Links (Full Right-Aligned) */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #5d29f2;
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: #5d29f2;
}

.nav-link:hover .nav-arrow,
.nav-link.active .nav-arrow {
    color: #5d29f2;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast), color var(--transition-fast);
}

/* Services Dropdown Menu */
.dropdown-parent {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.dropdown-parent:hover .nav-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}

/* Invisible hover bridge to guarantee mouse movement never loses hover */
.services-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -15px;
    width: calc(100% + 30px);
    height: 25px;
    background: transparent;
    pointer-events: auto;
}

.dropdown-parent:hover .services-dropdown,
.dropdown-parent:focus-within .services-dropdown,
.services-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.services-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1e293b;
    transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.services-dropdown li a i {
    font-size: 0.9rem;
    color: #5d29f2;
    width: 16px;
}

.services-dropdown li a:hover {
    background: #f8fafc;
    color: #5d29f2;
    padding-left: 24px;
}

/* Header Right Area: Social Icons (Full Right Side) */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: 28px;
    padding-left: 24px;
    border-left: 1.5px solid rgba(226, 232, 240, 0.9);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    transition: all var(--transition-base);
    position: relative;
    text-decoration: none;
}

/* Facebook Official Blue */
.social-fb {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.25);
}

.social-fb:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

/* LinkedIn Official Deep Cyan-Blue */
.social-linkedin {
    background: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
    border: 1px solid rgba(10, 102, 194, 0.25);
}

.social-linkedin:hover {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(10, 102, 194, 0.4);
}

/* Instagram Official Sunset/Berry Gradient */
.social-insta {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.25);
}

.social-insta:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(225, 48, 108, 0.45);
}

/* Hamburger Toggle Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
    padding: 9px;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   6. Mobile Sidebar Drawer
   -------------------------------------------------------------------------- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    border-right: 1px solid var(--border-subtle);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-logo {
    height: 32px;
    width: auto;
}

.close-sidebar-btn {
    font-size: 1.3rem;
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
}

.sidebar-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-list li {
    margin-bottom: 6px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    color: #1e293b;
    transition: all var(--transition-fast);
}

.mobile-link:hover, .mobile-link.active {
    background: #f1f5f9;
    color: var(--logo-blue);
}

.mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-header .mobile-link {
    flex-grow: 1;
}

.mobile-dropdown-toggle {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-submenu {
    display: none;
    padding-left: 16px;
    margin-top: 4px;
}

.mobile-dropdown-item.active .mobile-submenu {
    display: block;
}

.mobile-dropdown-item.active .mobile-dropdown-toggle i:last-child {
    transform: rotate(180deg);
}

.sidebar-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.sidebar-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.sidebar-socials a {
    color: #475569;
    font-size: 1.15rem;
}



/* --------------------------------------------------------------------------
   19. Footer (Executive Imperial Midnight Sapphire & Faint Cyber-Matrix)
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    background-color: #060b18;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 114, 255, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 90% 75%, rgba(121, 40, 202, 0.10) 0%, transparent 45%),
        radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px, 56px 56px, 56px 56px;
    background-position: center top, left bottom, right bottom, center center, center center, center center;
    border-top: 1px solid rgba(0, 198, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 -12px 36px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 2;
    color: #f1f5f9;
}

/* Ambient glowing beam along the top edge of footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.85), rgba(121, 40, 202, 0.65), transparent);
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
    pointer-events: none;
    z-index: 1;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding: 42px 0 24px;
}

.footer-grid {
    display: grid;
     grid-template-columns: 1.3fr 0.7fr 1fr 1.3fr;
    gap: 10px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 20px;
    transition: transform var(--transition-fast);
}

.footer-logo:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.03);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 198, 255, 0.6));
}

.footer-desc,
.footer-bio {
    font-size: 0.83rem;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials .social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    transition: all var(--transition-base);
    position: relative;
    text-decoration: none;
}

.footer-socials .social-insta {
    background: rgba(225, 48, 108, 0.15);
    color: #ff6097;
    border: 1px solid rgba(225, 48, 108, 0.35);
}

.footer-socials .social-insta:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.55);
}

.footer-socials .social-fb {
    background: rgba(24, 119, 242, 0.15);
    color: #4da2ff;
    border: 1px solid rgba(24, 119, 242, 0.35);
}

.footer-socials .social-fb:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.55);
}

.footer-socials .social-linkedin {
    background: rgba(10, 102, 194, 0.15);
    color: #38a3ff;
    border: 1px solid rgba(10, 102, 194, 0.35);
}

.footer-socials .social-linkedin:hover {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.55);
}

.footer-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 198, 255, 0.5);
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    font-size: 0.81rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.footer-menu a i {
    font-size: 0.58rem;
    color: #00c6ff;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.footer-menu a:hover {
    color: #38bdf8;
    transform: translateX(3px);
}

.footer-menu a:hover i {
    transform: translateX(2px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.80rem;
    color: #94a3b8;
    line-height: 1.45;
}

.footer-contact-list i {
    font-size: 0.84rem;
    color: #00c6ff;
    margin-top: 2px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list strong {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 0.81rem;
}

.footer-contact-list a {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.80rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #38bdf8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-location-link {
    cursor: pointer;
    line-height: 1.45;
    display: inline-block;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 8, 20, 0.65);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright-text a {
    color: #f1f5f9;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.copyright-text a:hover {
    color: #38bdf8;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #64748b;
    font-size: 0.78rem;
    transition: color var(--transition-fast);
}

.legal-links a:hover {
    color: #38bdf8;
}

.dot-separator {
    color: #334155;
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   20. Floating Widgets
   -------------------------------------------------------------------------- */
.scroll-to-top {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(0, 114, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy, #051347);
    box-shadow: 0 4px 14px rgba(5, 19, 71, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base), color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .scroll-to-top.active:hover {
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 114, 255, 0.22);
        color: var(--logo-blue, #0072ff);
    }
}

.scroll-to-top i {
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: var(--color-navy, #051347);
    pointer-events: none;
    transform: none !important;
    transition: color var(--transition-fast);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    transform-origin: center center;
    -webkit-transform-origin: center center;
    animation: spinProgressRing 3.5s linear infinite;
    -webkit-animation: spinProgressRing 3.5s linear infinite;
    will-change: transform;
}

.progress-ring-bg {
    stroke: rgba(0, 114, 255, 0.12);
}

.progress-ring-circle {
    stroke-dasharray: 119.38;
    stroke-dashoffset: 45;
    stroke-linecap: round;
    transform-origin: center center;
    transition: stroke-dashoffset 0.15s ease-out;
}

@keyframes spinProgressRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinProgressRing {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.ai-chatbot-widget:has(.chatbot-window.active) .scroll-to-top,
.ai-chatbot-widget.chat-open .scroll-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(10px) !important;
}

/* WhatsApp Floating Button (LEFT Side - Enlarged & Highly Visible) */
.floating-whatsapp-wrap {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto !important;
    z-index: 90;
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 2.5px solid #ffffff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.48), 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all var(--transition-base);
}

.whatsapp-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65); }

.whatsapp-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.whatsapp-tooltip {
    position: absolute;
    left: 68px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip,
.floating-whatsapp-wrap:hover .whatsapp-tooltip { 
    opacity: 1; 
    visibility: visible; 
}

/* AI Chatbot Widget (RIGHT Side - Centered Stack with Top Arrow) */
.ai-chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto !important;
    width: 52px;
    height: 52px;
    z-index: 95;
}

.chatbot-trigger-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 114, 255, 0.38), 0 2px 6px rgba(5, 19, 71, 0.1);
    font-size: 1.25rem;
    position: relative;
    padding: 0;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.chatbot-trigger-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(0, 114, 255, 0.55), 0 3px 10px rgba(5, 19, 71, 0.14); }
.bot-icon-wrap { position: relative; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; color: #ffffff; }
.status-online { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; border: 2px solid #ffffff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }

.chatbot-tooltip {
    position: absolute;
    right: 66px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    z-index: 101;
}

.ai-chatbot-widget:hover .chatbot-tooltip { opacity: 1; visibility: visible; }

.chatbot-window {
    position: absolute;
    bottom: 66px;
    right: 0;
    left: auto;
    width: 360px;
    max-width: 90vw;
    height: 480px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-smooth);
    z-index: 100;
}

.chatbot-window.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--gradient-brand);
    color: #ffffff;
}

.chatbot-title-info { display: flex; align-items: center; gap: 10px; }
.bot-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.chatbot-title-info h4 { font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.online-status-text { font-size: 0.72rem; color: #e2e8f0; display: flex; align-items: center; gap: 5px; }
.green-dot { width: 6px; height: 6px; background-color: #4ade80; border-radius: 50%; }
.chatbot-close-btn { color: #ffffff; font-size: 1.1rem; padding: 4px; }

.chatbot-messages { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: #f8fafc; }
.chat-msg { display: flex; flex-direction: column; max-width: 82%; }
.chat-msg.bot-msg { align-self: flex-start; }
.chat-msg.user-msg { align-self: flex-end; }
.msg-bubble { padding: 10px 14px; border-radius: var(--radius-md); font-size: 0.88rem; line-height: 1.5; }
.bot-msg .msg-bubble { background: #ffffff; border: 1px solid var(--border-subtle); color: var(--text-primary); border-bottom-left-radius: 2px; box-shadow: var(--shadow-sm); }
.user-msg .msg-bubble { background: var(--gradient-brand); color: #ffffff; border-bottom-right-radius: 2px; }
.msg-time { font-size: 0.68rem; color: var(--text-muted); margin-top: 3px; }
.bot-msg .msg-time { align-self: flex-start; }
.user-msg .msg-time { align-self: flex-end; }

.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 16px; background: #ffffff; border-top: 1px solid var(--border-subtle); }
.chip-btn { padding: 4px 10px; background: #f1f5f9; border: 1px solid var(--border-subtle); border-radius: var(--radius-full); font-size: 0.75rem; color: var(--text-secondary); transition: all var(--transition-fast); }
.chip-btn:hover { border-color: var(--logo-blue); color: var(--logo-blue); }
.chatbot-input-bar { display: flex; align-items: center; padding: 10px 14px; background: #ffffff; border-top: 1px solid var(--border-subtle); }
.chatbot-input-bar input { flex: 1; font-size: 0.88rem; padding: 6px 10px; }
.chatbot-input-bar button { color: var(--logo-blue); font-size: 1.1rem; padding: 6px; }

/* --------------------------------------------------------------------------
   21. Modals & Notifications
   -------------------------------------------------------------------------- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    padding: 20px;
}

.modal-backdrop.active { display: flex; opacity: 1; visibility: visible; }

.modal-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

.modal-backdrop.active .modal-card { transform: scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; font-size: 1.2rem; color: var(--text-secondary); width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; }
.modal-badge-pill { display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--logo-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.modal-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.modal-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.modal-stats-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 16px; background: #f8fafc; border-radius: var(--radius-md); margin-bottom: 28px; }
.m-stat .m-label { display: block; font-size: 0.78rem; color: var(--text-muted); }
.m-stat .m-val { font-size: 0.95rem; color: var(--logo-blue); }

.modal-card.video-card { max-width: 800px; padding: 10px; background: #000; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-md); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Full Display Project Modal */
.project-detail-modal-card {
    max-width: 840px;
    width: min(94vw, 840px);
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 36px;
    border-radius: 22px;
    border: 1px solid rgba(0, 114, 255, 0.2);
    box-shadow: 0 30px 80px -15px rgba(15, 23, 42, 0.35);
}

.modal-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.modal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0072ff;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.25);
    border-radius: 9999px;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-back-btn:hover {
    background: #0072ff;
    color: #ffffff;
    border-color: #0072ff;
    transform: translateX(-3px);
}

.project-detail-modal-card .modal-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #051347;
    margin-bottom: 16px;
    line-height: 1.25;
}

.modal-project-preview-wrap {
    width: 100%;
    min-height: 200px;
    max-height: 360px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.modal-project-preview-img {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease;
}

.modal-project-preview-wrap:hover .modal-project-preview-img {
    transform: scale(1.02);
}

.project-detail-modal-card .modal-desc {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 22px;
}

.project-detail-modal-card .modal-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 26px;
}

.m-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.m-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 114, 255, 0.1);
    color: #0072ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.m-stat-info {
    display: flex;
    flex-direction: column;
}

.m-stat .m-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 2px;
}

.m-stat .m-val {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 700;
}

.project-modal-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.modal-return-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 9999px;
    border: 1.5px solid #0072ff;
    color: #0072ff;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-return-gallery-btn:hover {
    background: rgba(0, 114, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .project-detail-modal-card {
        padding: 24px 18px;
    }
    .project-detail-modal-card .modal-title {
        font-size: 1.35rem;
    }
    .modal-project-preview-wrap {
        min-height: 180px;
        max-height: 250px;
        padding: 10px;
    }
    .modal-project-preview-img {
        max-height: 220px;
    }
    .project-detail-modal-card .modal-stats-box {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }
    .project-modal-actions {
        flex-direction: column;
        width: 100%;
    }
    .project-modal-actions .btn,
    .project-modal-actions .modal-return-gallery-btn {
        width: 100%;
        justify-content: center;
    }
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1050;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.toast-notification.active { transform: translateY(0); opacity: 1; visibility: visible; }
.toast-icon { font-size: 1.4rem; color: #10b981; }
.toast-content strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.toast-content span { font-size: 0.8rem; color: var(--text-secondary); }



/* --------------------------------------------------------------------------
   22. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-track { display: none; }
}

@media (max-width: 991px) {
    .site-header {
        height: 70px !important;
    }
    .site-header.scrolled {
        height: 64px !important;
    }
    .site-header .header-inner { 
        padding: 0 18px !important; 
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        gap: 12px !important;
    }
    .header-left {
        display: flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
    }
    .brand-logo {
        position: static !important;
        left: 0 !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    .brand-logo:hover {
        transform: none !important;
    }
    .main-logo {
        height: 28px !important;
        max-width: 195px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        padding-left: 0 !important;
        border-left: none !important;
        gap: 0 !important;
    }
    .main-nav, .header-socials, .d-none-mobile { display: none !important; }
    .hamburger-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 40px !important;
        height: 40px !important;
        padding: 8px !important;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
        transition: all var(--transition-fast) !important;
        flex-shrink: 0 !important;
    }
    .hamburger-btn:hover,
    .hamburger-btn:active {
        background: #e2e8f0 !important;
        border-color: #94a3b8 !important;
    }
    .hamburger-bar {
        display: block !important;
        width: 22px !important;
        height: 2.5px !important;
        background-color: #0f172a !important;
        border-radius: 4px !important;
        transition: all var(--transition-fast) !important;
    }

    .hero-grid, .about-grid, .why-us-grid, .faq-grid, .faq-layout-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlights-grid, .portfolio-grid, .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .site-header .header-inner {
        padding: 0 14px !important;
    }
    .main-logo {
        height: 24px !important;
        max-width: 170px !important;
    }
    .hamburger-btn {
        width: 38px !important;
        height: 38px !important;
        padding: 7px !important;
    }
    .hamburger-bar {
        width: 20px !important;
        height: 2px !important;
    }
}

@media (max-width: 767px) {
    :root { --header-height: 70px; }
    .section { padding: 70px 0; }
    .hero-slider-section { min-height: 520px; height: 520px; }
    .hero-slide-content { padding: 20px 14px; }
    .hero-slide-title { font-size: 1.85rem; line-height: 1.25; margin-bottom: 22px; }
    .hero-slide-tag { font-size: 0.78rem; margin-bottom: 14px; letter-spacing: 0.1em; }
    .hero-arrow { display: none; }
    .btn-hero { padding: 11px 28px; font-size: 0.85rem; }
    .hero-dots-container { bottom: 16px; }

    .highlights-grid,
    .services-grid,
    .portfolio-grid,
    .career-grid,
    .benefits-accordion,
    .form-row,
    .footer-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .footer-top { padding: 34px 0 18px; }
    .footer-grid { gap: 24px; }
    .footer-bottom { padding: 12px 0; }

    .cta-banner-box { padding: 40px 20px; }
    .contact-form-panel { padding: 24px; }
    .floating-whatsapp-wrap { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); left: 18px; right: auto !important; }
    .ai-chatbot-widget { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); right: 18px; left: auto !important; width: 48px; height: 48px; }
    .scroll-to-top {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        aspect-ratio: 1 / 1;
        bottom: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
    }
    .scroll-to-top.active {
        transform: translateX(-50%) translateY(0) !important;
    }
    .scroll-to-top i {
        font-size: 0.88rem;
        transform: none !important;
    }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.55rem; }
    .chatbot-trigger-btn { width: 48px; height: 48px; font-size: 1.15rem; }
}



/* ==========================================================================
   21. MODERN DOT-TYPE CURSOR FOLLOWER BEHIND ARROW
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor-circle {
        position: fixed;
        top: 0;
        left: 0;
        width: 12px;
        height: 12px;
        background: linear-gradient(135deg, #00c6ff, #0072ff);
        border: none;
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999990;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px rgba(0, 198, 255, 0.8), 0 0 18px rgba(0, 114, 255, 0.4);
        transition: opacity 0.25s ease, width 0.2s ease, height 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        opacity: 0;
    }

    /* Hover state over interactive clickable elements: subtle stable illumination without erratic scaling */
    .custom-cursor-circle.cursor-hover {
        width: 14px;
        height: 14px;
        background: linear-gradient(135deg, #00DFD8, #0072ff);
        box-shadow: 0 0 12px rgba(0, 223, 216, 0.85), 0 0 22px rgba(0, 114, 255, 0.5);
        transform: translate(-50%, -50%);
    }

    /* Active click state: gentle tactile feedback */
    .custom-cursor-circle.cursor-clicking {
        transform: translate(-50%, -50%) scale(0.85);
        box-shadow: 0 0 8px rgba(0, 198, 255, 0.9);
    }
}

@media (hover: none) or (pointer: coarse) {
    .custom-cursor-circle {
        display: none !important;
    }
}

/* ==========================================================================
   22. CONSISTENT TEAM-MEMBERS CYBER BACKGROUND SPECIFICATION
   Applied consistently to all white/light background sections across:
   - Services (all service topics & overview)
   - Career page sections
   - Contact page
   - Home page core features & FAQ
   ========================================================================== */
.core-features-section,
.faq-section,
.services-section,
.db-process-section,
.managed-services-section,
.ms-why-choose-section,
.onsite-offerings-section,
.webdev-main-section,
.webdev-why-section,
.webdev-packages-section,
.webdev-work-section,
.soft-offerings-section,
.soft-portfolio-section,
.mobile-platforms-section,
.app-process-section,
.dm-process-section,
.gd-services-section,
.gd-packages-section,
.gd-portfolio-section,
.sms-services-section,
.sms-packages-section,
.sms-why-choose-section,
.career-training-section,
.why-join-section,
.career-section,
.hiring-process-section,
.contact-section,
.terms-section,
.privacy-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%) !important;
    background-size: 100% 100% !important;
    background-position: center top, right top, center bottom, center center !important;
    border-top: 1px solid rgba(0, 114, 255, 0.14) !important;
    border-bottom: 1px solid rgba(0, 114, 255, 0.14) !important;
}

/* Ambient Glowing Orbs matching Team Members Section */
.core-features-section::before,
.faq-section::before,
.services-section::before,
.db-process-section::before,
.managed-services-section::before,
.ms-why-choose-section::before,
.onsite-offerings-section::before,
.webdev-main-section::before,
.webdev-why-section::before,
.webdev-packages-section::before,
.webdev-work-section::before,
.soft-portfolio-section::before,
.mobile-platforms-section::before,
.app-process-section::before,
.dm-process-section::before,
.gd-services-section::before,
.gd-portfolio-section::before,
.sms-services-section::before,
.sms-packages-section::before,
.sms-why-choose-section::before,
.career-training-section::before,
.why-join-section::before,
.career-section::before,
.hiring-process-section::before,
.contact-section::before,
.terms-section::before,
.privacy-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.core-features-section::after,
.faq-section::after,
.services-section::after,
.db-process-section::after,
.managed-services-section::after,
.ms-why-choose-section::after,
.onsite-offerings-section::after,
.webdev-main-section::after,
.webdev-why-section::after,
.webdev-packages-section::after,
.webdev-work-section::after,
.soft-offerings-section::after,
.soft-portfolio-section::after,
.mobile-platforms-section::after,
.app-process-section::after,
.dm-process-section::after,
.gd-services-section::after,
.gd-packages-section::after,
.gd-portfolio-section::after,
.sms-services-section::after,
.sms-packages-section::after,
.sms-why-choose-section::after,
.career-training-section::after,
.why-join-section::after,
.career-section::after,
.hiring-process-section::after,
.contact-section::after,
.terms-section::after,
.privacy-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

/* Ensure container content sits cleanly above ambient orbs */
.core-features-section > .container,
.faq-section > .container,
.services-section > .container,
.db-process-section > .container,
.managed-services-section > .container,
.ms-why-choose-section > .container,
.onsite-offerings-section > .container,
.webdev-main-section > .container,
.webdev-why-section > .container,
.webdev-packages-section > .container,
.webdev-work-section > .container,
.soft-offerings-section > .container,
.soft-portfolio-section > .container,
.mobile-platforms-section > .container,
.app-process-section > .container,
.dm-process-section > .container,
.gd-services-section > .container,
.gd-packages-section > .container,
.gd-portfolio-section > .container,
.sms-services-section > .container,
.sms-packages-section > .container,
.sms-why-choose-section > .container,
.career-training-section > .container,
.why-join-section > .container,
.career-section > .container,
.hiring-process-section > .container,
.contact-section > .container,
.terms-section > .container,
.privacy-section > .container,
.startup-solution-section > .container {
    position: relative;
    z-index: 2;
}

/* Terms & Conditions and Privacy Policy Headings & Modals - Solid Black */
.terms-section .section-title,
[data-theme="dark"] .terms-section .section-title,
.privacy-section .section-title,
[data-theme="dark"] .privacy-section .section-title,
#termsModal .modal-title,
#privacyModal .modal-title,
.terms-modal-card .modal-title {
    color: #000000 !important;
}

.terms-section .section-title .gradient-text,
.privacy-section .section-title .gradient-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    color: #000000 !important;
}



