/* ==========================================================================
   JFJ Electricity & Engineering — Ultra-Premium Design System v3.0
   Aesthetic: Industrial Luxury · Precision Engineering · Electric Authority
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   1. Master CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    /* Electric Blue — Primary Brand Color */
    --primary:          #1a56db;
    --primary-dark:     #1447c0;
    --primary-deep:     #0f3596;
    --primary-light:    #4f86f7;
    --primary-xlight:   #dbeafe;
    --primary-gradient: linear-gradient(135deg, #1a56db 0%, #1447c0 40%, #0f3596 100%);
    --primary-gradient-r: linear-gradient(225deg, #1a56db 0%, #0f3596 100%);
    --primary-glass:    rgba(26, 86, 219, 0.12);
    --primary-glow:     0 0 30px rgba(26, 86, 219, 0.35);
    --primary-glow-sm:  0 0 15px rgba(26, 86, 219, 0.25);

    /* Amber Accent — Energy & Power */
    --accent:           #f59e0b;
    --accent-dark:      #d97706;
    --accent-light:     #fcd34d;
    --accent-gradient:  linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --accent-glow:      0 0 20px rgba(245, 158, 11, 0.4);

    /* Utility Colors */
    --emerald:          #10b981;
    --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --cyan:             #06b6d4;
    --cyan-gradient:    linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
    --rose:             #f43f5e;

    /* Dark Surfaces */
    --dark:             #060c1c;
    --dark-surface:     #0d1526;
    --dark-card:        #16213a;
    --dark-nav:         rgba(6, 12, 28, 0.97);
    --dark-border:      rgba(255, 255, 255, 0.09);
    --dark-border-glow: rgba(26, 86, 219, 0.3);

    /* Light Canvas */
    --bg-body:          #eef2f9;
    --bg-section:       #f4f7fd;
    --bg-card:          #ffffff;
    --bg-alt:           #f0f4fc;
    --border:           #d0daea;
    --border-card:      rgba(208, 218, 234, 0.8);

    /* Typography */
    --text-heading:     #060c1c;
    --text-dark:        #0d1526;
    --text-body:        #2d3a52;
    --text-muted:       #5b6a85;
    --text-light:       #8fa0bc;

    /* Border Radius Scale */
    --r-xs:   6px;
    --r-sm:   10px;
    --r-md:   16px;
    --r-lg:   22px;
    --r-xl:   32px;
    --r-full: 9999px;

    /* Premium Shadow System */
    --sh-xs:   0 1px 3px rgba(9, 18, 42, 0.04);
    --sh-sm:   0 4px 14px -2px rgba(9, 18, 42, 0.06);
    --sh-md:   0 12px 30px -8px rgba(9, 18, 42, 0.09), 0 4px 12px -4px rgba(9, 18, 42, 0.04);
    --sh-lg:   0 20px 45px -12px rgba(9, 18, 42, 0.13), 0 8px 18px -6px rgba(9, 18, 42, 0.05);
    --sh-xl:   0 32px 64px -16px rgba(9, 18, 42, 0.18);
    --sh-card-hover: 0 22px 48px -10px rgba(26, 86, 219, 0.18), 0 0 0 1px rgba(26, 86, 219, 0.12);
    --sh-btn:  0 8px 28px rgba(26, 86, 219, 0.35);
    --sh-accent: 0 8px 24px rgba(245, 158, 11, 0.35);

    /* Animation */
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:  cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast:   all 0.2s var(--ease);
    --t-base:   all 0.3s var(--ease);
    --t-slow:   all 0.5s var(--ease);
}

/* ==========================================================================
   2. Global Reset & Body Canvas
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background-color: var(--bg-body) !important;
    /* Premium circuit-board dot pattern background */
    background-image:
        radial-gradient(ellipse at 10% 5%, rgba(26,86,219,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 95%, rgba(245,158,11,0.04) 0%, transparent 55%),
        radial-gradient(circle, rgba(100, 130, 180, 0.10) 1px, transparent 1px) !important;
    background-size: 100%, 100%, 28px 28px !important;
    background-attachment: fixed !important;
    color: var(--text-body) !important;
    line-height: 1.75 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    overflow-x: hidden !important;
}

.page-wrapper {
    padding-top: 135px;
    min-height: 85vh;
}
@media (max-width: 991px) {
    .page-wrapper { padding-top: 88px; }
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-heading) !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    letter-spacing: -0.03em !important;
}
p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--text-body) !important;
    line-height: 1.78 !important;
}
a {
    color: var(--primary) !important;
    transition: var(--t-base) !important;
    text-decoration: none !important;
}
a:hover { color: var(--primary-dark) !important; }

/* Gradient text utility */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.gradient-text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   3. Section Headers — Premium Pill Style (NO more cheap underline)
   ========================================================================== */
.section-header {
    margin-bottom: 52px;
    position: relative;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(26,86,219,0.10) 0%, rgba(26,86,219,0.05) 100%);
    border: 1px solid rgba(26, 86, 219, 0.28);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    padding: 6px 16px 6px 14px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(26, 86, 219, 0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}
.eyebrow-badge i { font-size: 12px; }

.eyebrow-badge.accent {
    background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.05) 100%);
    border-color: rgba(245, 158, 11, 0.35);
    color: var(--accent-dark);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}
.eyebrow-badge.emerald {
    background: rgba(16, 185, 129, 0.09);
    border-color: rgba(16, 185, 129, 0.30);
    color: #059669;
}

.section-title h2 {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: var(--text-heading);
    margin-bottom: 0;
    line-height: 1.18 !important;
}
@media (max-width: 767px) {
    .section-title h2 { font-size: 28px !important; }
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 14px auto 0;
    line-height: 1.72;
}

/* ==========================================================================
   4. Subpage Hero Banner (all inner pages)
   ========================================================================== */
.subpage-hero-banner {
    background: linear-gradient(135deg, #060c1c 0%, #0d1a35 45%, #122057 100%);
    padding: 72px 0 60px;
    margin-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.subpage-hero-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(26,86,219,0.36) 0%, rgba(6,182,212,0.10) 55%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite alternate;
}
.subpage-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -45%;
    left: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}
/* Circuit lines decorative */
.subpage-hero-banner .circuit-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,86,219,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 1; }
}

.subpage-title {
    color: #ffffff !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    margin-bottom: 16px;
    letter-spacing: -0.035em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
}
@media (max-width: 767px) {
    .subpage-title { font-size: 28px !important; }
    .subpage-hero-banner { padding: 52px 0 44px; }
}

.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    list-style: none !important;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 8px 22px;
    border-radius: var(--r-full);
    margin: 0;
    font-size: 13.5px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}
.custom-breadcrumb li a {
    color: rgba(255,255,255,0.72) !important;
    font-weight: 500;
    transition: var(--t-base);
}
.custom-breadcrumb li a:hover { color: #fde68a !important; }
.custom-breadcrumb li i { color: rgba(255,255,255,0.38); font-size: 10px; }
.custom-breadcrumb li.active span { color: var(--accent); font-weight: 700; }

/* ==========================================================================
   5. Card System — Glassmorphic Luxury Cards
   ========================================================================== */
.luxury-card,
.modern-card,
.about-card-wrapper {
    background: var(--bg-card);
        padding: 15px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--sh-sm);
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
}
.luxury-card:hover,
.modern-card:hover,
.about-card-wrapper:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

/* ==========================================================================
   6. Premium Button System
   ========================================================================== */
.btn-primary,
.btn-primary-hero,
.btn-shimmer-action {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 13px 30px !important;
    border-radius: var(--r-full) !important;
    box-shadow: var(--sh-btn) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    transition: var(--t-base) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    text-decoration: none !important;
    letter-spacing: 0.01em !important;
}
.btn-primary:hover,
.btn-primary-hero:hover,
.btn-shimmer-action:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 16px 38px rgba(26, 86, 219, 0.48) !important;
    color: #ffffff !important;
}

/* Shimmer sweep animation */
.btn-shimmer-action::before,
.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
    transform: skewX(-22deg);
    animation: shimmer-sweep 3.2s infinite;
}
@keyframes shimmer-sweep {
    0%   { left: -100%; }
    22%  { left: 200%; }
    100% { left: 200%; }
}

.btn-secondary-hero {
    background: rgba(255,255,255,0.10) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1.5px solid rgba(255,255,255,0.38) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 12px 28px !important;
    border-radius: var(--r-full) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    transition: var(--t-base) !important;
}
.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.95) !important;
    color: var(--dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22) !important;
}

.btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 11px 26px !important;
    border-radius: var(--r-full) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    transition: var(--t-base) !important;
}
.btn-outline-primary:hover {
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--sh-btn) !important;
}

.btn-load-more {
    background: #ffffff !important;
    border: 1.5px solid var(--border) !important;
    color: var(--text-dark) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 13px 34px !important;
    border-radius: var(--r-full) !important;
    box-shadow: var(--sh-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: var(--t-base) !important;
    cursor: pointer !important;
}
.btn-load-more:hover {
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--sh-btn) !important;
}

/* ==========================================================================
   7. Site Header — Top Bar + Frosted Glass Navbar
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--t-base);
}

/* Top Info Bar */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 8px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.72);
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.55; }
}

/* ==========================================================================
   7. Site Header & Glassmorphism Navigation Bar
   ========================================================================== */
/* Must stay `fixed`: .page-wrapper (135px/88px padding-top), .hero-slider-section
   and .jfj-hero (-135px margin-top) all compensate for a header that is out of
   flow. Switching this to `sticky` double-counts the header height everywhere. */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top Bar Pill & WhatsApp Styling */
.whatsapp-pill {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: var(--t-base);
}
.whatsapp-pill:hover {
    background: rgba(37, 211, 102, 0.22);
    transform: translateY(-1px);
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 22px;
    color: rgba(255,255,255,0.72);
}
.top-bar-item i { color: var(--accent); font-size: 12px; }
.top-bar-item a { color: rgba(255,255,255,0.82) !important; font-weight: 500; }
.top-bar-item a:hover { color: #fde68a !important; }

.top-social-links {
    display: flex;
    align-items: center;
    gap: 7px;
}
.top-social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--t-base);
    border: 1px solid rgba(255,255,255,0.1);
}
.top-social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--primary-glow-sm);
}

/* Main Frosted Glass Navbar Container */
.main-navbar {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 12px 0;
    transition: all 0.35s ease;
    box-shadow: 0 4px 25px -4px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 1000;
}
.site-header.scrolled .main-navbar {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 12px 32px -6px rgba(15, 23, 42, 0.14);
    border-bottom-color: rgba(226, 232, 240, 1);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
    max-width: 240px;
}
.brand-link:hover {
    transform: scale(1.02);
}

.brand-logo-img {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    transition: height 0.3s ease;
}
.site-header.scrolled .brand-logo-img { 
    height: 40px !important; 
    max-height: 40px !important;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #090f1d;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Desktop Nav Menu Items */
.nav-menu-list {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 6px !important;
}
.nav-menu-item { 
    position: relative !important; 
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu-link {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    color: #1e293b !important;
    padding: 9px 16px !important;
    border-radius: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    text-decoration: none !important;
    background: transparent;
}

.nav-menu-link .caret-icon {
    font-size: 11px !important;
    transition: transform 0.3s ease !important;
    color: #64748b !important;
}

.nav-menu-item:hover .nav-menu-link .caret-icon {
    transform: rotate(180deg) !important;
    color: var(--primary) !important;
}

/* Hot/Popular Badge */
.badge-hot {
    font-size: 9px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #ff416c, #ff4b2b) !important;
    color: #ffffff !important;
    padding: 2px 7px !important;
    border-radius: 10px !important;
    letter-spacing: 0.5px !important;
    margin-left: 2px !important;
    box-shadow: 0 2px 8px rgba(255, 65, 108, 0.3) !important;
}

.nav-menu-link:hover {
    background: rgba(26, 86, 219, 0.08) !important;
    color: var(--primary) !important;
}

.nav-menu-item.active .nav-menu-link {
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.12), rgba(30, 58, 138, 0.08)) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* Dropdown Menu - Card Glassmorphism Styling */
.nav-dropdown {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) !important;
    min-width: 275px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(26, 86, 219, 0.04) !important;
    padding: 10px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1050 !important;
}

/* Invisible hover bridge to avoid menu closing on movement */
.nav-menu-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
}

.nav-menu-item.has-dropdown:hover .nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-header {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    color: #94a3b8 !important;
    padding: 6px 12px 4px 12px !important;
}

.dropdown-link {
    display: flex !important;
    align-items: center !important;
    padding: 10px 12px !important;
    color: #334155 !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    gap: 12px !important;
    text-decoration: none !important;
    background: transparent !important;
}

.dropdown-icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    transition: transform 0.25s ease !important;
}

.bg-primary-soft { background: rgba(26, 86, 219, 0.1) !important; color: #1a56db !important; }
.bg-success-soft { background: rgba(16, 185, 129, 0.1) !important; color: #10b981 !important; }
.bg-warning-soft { background: rgba(245, 158, 11, 0.1) !important; color: #f59e0b !important; }
.bg-info-soft { background: rgba(6, 182, 212, 0.1) !important; color: #06b6d4 !important; }
.bg-danger-soft { background: rgba(239, 68, 68, 0.1) !important; color: #ef4444 !important; }
.bg-purple-soft { background: rgba(139, 92, 246, 0.1) !important; color: #8b5cf6 !important; }

.dropdown-text {
    display: flex !important;
    flex-direction: column !important;
}

.dropdown-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
}

.dropdown-sub {
    font-size: 11.5px !important;
    color: #64748b !important;
    margin-top: 2px !important;
    font-weight: 400 !important;
}

.dropdown-link:hover {
    background: #f8fafc !important;
    transform: translateX(4px) !important;
}
.dropdown-link:hover .dropdown-icon-box {
    transform: scale(1.1) !important;
}
.dropdown-link.active {
    background: rgba(26, 86, 219, 0.08) !important;
}
.dropdown-link.active .dropdown-title {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* Nav Action CTA Button */
.nav-actions-wrapper .btn-shimmer-action {
    font-size: 13.5px !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25) !important;
    transition: all 0.3s ease !important;
}
.nav-actions-wrapper .btn-shimmer-action:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.35) !important;
}

/* Custom Hamburger Icon */
.mobile-nav-toggle {
    display: none;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mobile-nav-toggle:hover {
    background: rgba(26, 86, 219, 0.1);
    border-color: rgba(26, 86, 219, 0.3);
}

.hamburger-box {
    width: 22px;
    height: 16px;
    display: block;
    position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 22px;
    height: 2.5px;
    background-color: #0f172a;
    border-radius: 3px;
    position: absolute;
    transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ''; top: -6px; }
.hamburger-inner::after { content: ''; top: 6px; }

.mobile-nav-toggle.is-active .hamburger-inner {
    transform: rotate(225deg);
}
.mobile-nav-toggle.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}
.mobile-nav-toggle.is-active .hamburger-inner::after {
    top: 0;
    transform: rotate(-90deg);
}

/* ==========================================================================
   Responsive Side Drawer Mobile Navigation
   ========================================================================== */
@media (max-width: 991px) {
    .mobile-nav-toggle { display: flex; align-items: center; justify-content: center; }

    /* Dark Overlay Backdrop */
    .mobile-nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Side Sliding Menu Drawer */
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        padding: 20px;
    }
    .nav-menu-wrapper.active {
        right: 0;
    }

    .mobile-nav-header {
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .mobile-nav-close {
        background: #f1f5f9;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .nav-menu-list {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
    }

    .nav-menu-link {
        font-size: 15px !important;
        padding: 12px 16px !important;
        border-radius: 12px !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .nav-menu-link .caret-icon {
        margin-left: auto !important;
    }

    .nav-icon {
        width: 20px !important;
        color: var(--primary) !important;
        font-size: 14px !important;
    }

    /* Mobile Accordion Dropdown */
    .nav-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        margin-top: 6px !important;
        padding: 6px !important;
        display: none !important;
    }

    .has-dropdown.dropdown-open .nav-dropdown {
        display: block !important;
    }
    .has-dropdown.dropdown-open .caret-icon {
        transform: rotate(180deg) !important;
    }

    .dropdown-link {
        padding: 8px 10px !important;
    }
    .dropdown-icon-box {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
    .dropdown-title {
        font-size: 13.5px !important;
    }

    .mobile-cta-box {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid #f1f5f9;
    }
}

/* ==========================================================================
   8. Hero Slider — Immersive Full-Page
   ========================================================================== */
.hero-slider-section {
    width: 100%;
    position: relative;
    margin-top: -135px;
    padding-top: 135px;
    overflow: hidden;
    background: var(--dark);
}
@media (max-width: 991px) {
    .hero-slider-section {
        margin-top: -88px;
        padding-top: 88px;
    }
}

.hero-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide-item {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Multi-layer cinematic overlay */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6,12,28,0.96) 0%, rgba(6,12,28,0.78) 45%, rgba(6,12,28,0.35) 100%),
        linear-gradient(180deg, rgba(6,12,28,0.2) 0%, transparent 30%, transparent 65%, rgba(6,12,28,0.5) 100%);
}

/* Animated circuit lines overlay on hero */
.hero-slide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,86,219,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 120px;
    max-width: 800px;
    animation: hero-enter 0.9s var(--ease-out) forwards;
}
@keyframes hero-enter {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(245, 158, 11, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fde68a;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 11.5px;
    padding: 7px 18px;
    border-radius: var(--r-full);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.22);
}
.hero-slide-badge i { color: #fbbf24; }

.hero-slide-title {
    color: #ffffff !important;
    font-size: 56px !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    margin-bottom: 20px;
    letter-spacing: -0.035em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.55);
}

.hero-slide-subtitle {
    font-size: 17px !important;
    color: rgba(255,255,255,0.88) !important;
    line-height: 1.72 !important;
    margin-bottom: 30px !important;
    max-width: 680px !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.6) !important;
    font-weight: 400 !important;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

/* OWL Carousel Nav */
.hero-items.owl-carousel .owl-nav button.owl-prev,
.hero-items.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.32) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--t-base);
    z-index: 10;
}
.hero-items.owl-carousel .owl-nav button.owl-prev { left: 32px; }
.hero-items.owl-carousel .owl-nav button.owl-next { right: 32px; }
.hero-items.owl-carousel .owl-nav button:hover {
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 24px rgba(26, 86, 219, 0.5);
}
.hero-items.owl-carousel .owl-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.hero-items.owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.4) !important;
    transition: var(--t-base);
    margin: 0;
}
.hero-items.owl-carousel .owl-dot.active span {
    width: 28px;
    background: #ffffff !important;
}

@media (max-width: 767px) {
    .hero-slide-item { min-height: 520px; }
    .hero-slide-content { padding: 52px 0 90px; }
    .hero-slide-title { font-size: 32px !important; }
    .hero-slide-subtitle { font-size: 14.5px !important; }
}

/* ==========================================================================
   9. Impact Stats Counter Bar (floating overlap below hero)
   ========================================================================== */
.hero-impact-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-card);
    padding: 28px 38px;
    box-shadow: var(--sh-lg);
    position: relative;
    z-index: 20;
    overflow: hidden;
}
.hero-impact-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 2px 2px 0;
}

.impact-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.impact-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(26, 86, 219, 0.09);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--t-base);
}
.impact-stat-item:hover .impact-stat-icon {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--sh-btn);
    transform: scale(1.08);
}
.impact-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.04em;
}
.impact-stat-label {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Dividers between stats */
@media (min-width: 768px) {
    .impact-stat-item + .impact-stat-item {
        border-left: 1px solid var(--border);
        padding-left: 28px;
        margin-left: 4px;
    }
}

/* ==========================================================================
   10. Why Choose Us — Premium Feature Cards
   ========================================================================== */
.why-choose-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-card);
    padding: 36px 28px 32px;
    text-align: center;
    transition: var(--t-base);
    height: 100%;
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Glowing gradient top accent */
.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
/* Subtle inner glow on hover */
.why-choose-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(26,86,219,0.05) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(26, 86, 219, 0.25);
}
.why-choose-card:hover::before { opacity: 1; }
.why-choose-card:hover::after { opacity: 1; }

.why-choose-icon-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(26,86,219,0.08) 0%, rgba(26,86,219,0.04) 100%);
    border: 1px solid rgba(26, 86, 219, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-base);
}
.why-choose-card:hover .why-choose-icon-wrap {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--sh-btn);
}
.why-choose-icon-wrap img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    transition: var(--t-base);
}
.why-choose-card:hover .why-choose-icon-wrap img {
    filter: brightness(0) invert(1);
}

.why-choose-title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-heading);
    transition: var(--t-base);
}
.why-choose-card:hover .why-choose-title { color: var(--primary); }
.why-choose-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.72;
}

/* ==========================================================================
   11. Product Cards — Magazine-Style Premium Grid
   ========================================================================== */
.product-card {
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    transition: var(--t-base);
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(26, 86, 219, 0.30);
}

.product-thumb-box {
    position: relative;
    height: 260px;
    background: linear-gradient(160deg, #f0f5ff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
}
.product-thumb-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(26,86,219,0.04) 100%);
    pointer-events: none;
}
.product-thumb-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
    position: relative;
    z-index: 1;
}
.product-card:hover .product-thumb-box img {
    transform: scale(1.10);
}

.product-badge-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 18, 42, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Quick view overlay on hover */
.product-card .product-quick-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 86, 219, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: 10;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    gap: 8px;
    pointer-events: none;
}
.product-card:hover .product-thumb-box .product-quick-overlay {
    opacity: 1;
    pointer-events: auto;
}

.product-body {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark) !important;
    margin-bottom: 14px;
    line-height: 1.42;
    transition: var(--t-base);
}
.product-card:hover .product-title { color: var(--primary) !important; }

.product-action-btn {
    margin-top: auto;
    background: rgba(26, 86, 219, 0.07);
    color: var(--primary) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 18px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--t-base);
    border: 1px solid rgba(26, 86, 219, 0.12);
}
.product-card:hover .product-action-btn {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: var(--sh-btn);
}
.product-action-btn i { transition: transform 0.3s var(--ease); }
.product-card:hover .product-action-btn i { transform: translateX(4px); }

/* ==========================================================================
   12. Executive Quote & Leadership Card
   ========================================================================== */
.admin-quote-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-card);
    padding: 44px;
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
    transition: var(--t-base);
}
.admin-quote-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: gradient-flow 4s linear infinite;
}
@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.admin-quote-mark {
    position: absolute;
    top: -20px; right: 30px;
    font-family: Georgia, serif;
    font-size: 180px;
    color: rgba(26, 86, 219, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.admin-avatar-box {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: var(--sh-lg), 0 0 0 2px rgba(26, 86, 219, 0.2);
    background: #f0f4ff;
}
.admin-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   13. Gallery & Certificate Cards
   ========================================================================== */
.gallery-card {
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--border-card);
    padding: 10px;
    box-shadow: var(--sh-sm);
    transition: var(--t-base);
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: rgba(26,86,219,0.2);
}

.gallery-image-wrap {
    height: 230px;
    border-radius: var(--r-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #f0f4ff;
}
.gallery-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s var(--ease);
}
.gallery-card:hover .gallery-image-wrap img { transform: scale(1.07); }

.gallery-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(26, 86, 219, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    opacity: 0;
    transition: var(--t-base);
    backdrop-filter: blur(4px);
}
.gallery-card:hover .gallery-overlay-icon { opacity: 1; }

.gallery-caption {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-dark);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 4px;
}

/* ==========================================================================
   14. News & Blog Cards — Editorial Style
   ========================================================================== */
.news-card {
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    transition: var(--t-base);
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(26,86,219,0.20);
}
.news-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.news-card:hover::after { opacity: 1; }

.news-card-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #e8edf8;
}
.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.news-card:hover .news-card-thumb img { transform: scale(1.09); }

.news-card-date {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(6, 12, 28, 0.88);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: var(--r-full);
    letter-spacing: 0.3px;
}
.news-card-date i { color: var(--accent); margin-right: 4px; }

.news-card-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-card-title a {
    color: var(--text-dark) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.42;
    transition: var(--t-base);
}
.news-card:hover .news-card-title a { color: var(--primary) !important; }
.news-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 10px 0 18px;
    line-height: 1.65;
}
.news-readmore-link {
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t-base);
}
.news-readmore-link:hover { gap: 10px; }
.news-readmore-link i { transition: transform 0.3s var(--ease); }
.news-card:hover .news-readmore-link i { transform: translateX(4px); }

/* ==========================================================================
   15. Premium CTA Banner
   ========================================================================== */
.premium-cta-banner {
    background: linear-gradient(135deg, #060c1c 0%, #0d1a35 45%, #122057 100%);
    border-radius: var(--r-xl);
    padding: 58px;
    color: #ffffff;
    box-shadow: var(--sh-xl);
    border: 1px solid rgba(255,255,255,0.10);
    position: relative;
    overflow: hidden;
}
.premium-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -18%;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(245,158,11,0.22) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.premium-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60%; left: -12%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,86,219,0.28) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
/* Circuit grid */
.premium-cta-banner .cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.premium-cta-title {
    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1.22 !important;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
}
.premium-cta-banner .cta-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 15.5px;
    max-width: 580px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}
.premium-cta-banner .cta-actions {
    position: relative;
    z-index: 2;
}
@media (max-width: 767px) {
    .premium-cta-banner { padding: 36px 24px; }
    .premium-cta-title { font-size: 24px !important; }
}

/* ==========================================================================
   16. Key Benefit Cards
   ========================================================================== */
.benefit-card {
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--border-card);
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--sh-sm);
    transition: var(--t-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    border-radius: 0 2px 2px 0;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
    border-color: rgba(26, 86, 219, 0.25);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(26, 86, 219, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--t-base);
}
.benefit-card:hover .benefit-icon-box {
    background: var(--primary-gradient);
}
.benefit-card:hover .benefit-icon-box i {
    color: #ffffff !important;
}

/* ==========================================================================
   17. Team Member Cards
   ========================================================================== */
.team-member-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-card);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: var(--t-base);
}
.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-card-hover);
}
.team-avatar-wrap {
    height: 250px;
    background: linear-gradient(160deg, #e8edf8 0%, #f0f4ff 100%);
    overflow: hidden;
    position: relative;
}
.team-avatar-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.5), transparent);
    pointer-events: none;
}
.team-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.team-member-card:hover .team-avatar-wrap img { transform: scale(1.07); }

.team-info-box { padding: 22px 18px 20px; }
.team-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-heading);
}
.team-designation {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   18. Forms & Inputs
   ========================================================================== */
.modern-form-control {
    width: 100%;
    height: 50px;
    padding: 10px 18px;
    background: #f4f7fd;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text-dark);
    transition: var(--t-base);
    outline: none;
}
textarea.modern-form-control {
    height: auto;
    padding: 14px 18px;
    resize: vertical;
}
.modern-form-control:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.10);
}

.contact-info-card {
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--border-card);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    box-shadow: var(--sh-xs);
    transition: var(--t-base);
}
.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--sh-sm);
    border-color: rgba(26, 86, 219, 0.25);
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(26, 86, 219, 0.09);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--t-base);
}
.contact-info-card:hover .contact-info-icon {
    background: var(--primary-gradient);
    color: #ffffff;
}

/* ==========================================================================
   19. Footer — Deep Midnight Luxury
   ========================================================================== */
.modern-footer {
    background: linear-gradient(180deg, #080f20 0%, #050b17 100%);
    color: rgba(255,255,255,0.72);
    padding: 72px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
}
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26,86,219,0.6), rgba(245,158,11,0.5), transparent);
}
/* Footer circuit grid */
.modern-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,86,219,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.footer-widget-title {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list li a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px;
    font-weight: 500;
    transition: var(--t-base);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
}
.footer-links-list li a i { color: var(--accent); font-size: 9px; }
.footer-links-list li a:hover {
    color: #fde68a !important;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
}
.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Newsletter Box */
.footer-newsletter-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-full);
    padding: 4px 5px 4px 18px;
    margin-top: 16px;
    transition: var(--t-base);
}
.footer-newsletter-box:focus-within {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}
.footer-newsletter-input {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #ffffff !important;
    font-size: 13.5px !important;
    width: 100% !important;
    padding: 6px 0 !important;
    box-shadow: none !important;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.45) !important; }
.footer-newsletter-btn {
    background: var(--accent-gradient) !important;
    border: none !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 10px 20px !important;
    border-radius: var(--r-full) !important;
    cursor: pointer !important;
    transition: var(--t-base) !important;
    white-space: nowrap !important;
    box-shadow: var(--sh-accent) !important;
    flex-shrink: 0 !important;
}
.footer-newsletter-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5) !important;
}

.footer-bottom-bar {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
}
.footer-bottom-bar strong { color: rgba(255,255,255,0.82); }

/* Social Links (reused in footer) */
.top-social-links a { /* same style as header */ }

/* ==========================================================================
   20. Floating Action Buttons (WhatsApp + Call)
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 28px; left: 24px;
    width: 54px; height: 54px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.48);
    z-index: 990;
    transition: var(--t-base);
    animation: float-pulse-wa 2.8s infinite;
}
.floating-whatsapp-btn:hover {
    transform: scale(1.12);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.floating-call-btn {
    position: fixed;
    bottom: 28px; right: 24px;
    background: var(--primary-gradient);
    color: #ffffff !important;
    padding: 11px 20px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 6px 22px rgba(26, 86, 219, 0.48);
    z-index: 990;
    transition: var(--t-base);
    animation: float-pulse-call 2.8s infinite;
}
.floating-call-btn:hover {
    transform: scale(1.06);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.6);
}

@keyframes float-pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    60% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes float-pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.5); }
    60% { box-shadow: 0 0 0 14px rgba(26, 86, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0); }
}

/* ==========================================================================
   21. Scroll-Triggered Animations (AOS-like via CSS)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   22. Section Alternating Backgrounds
   ========================================================================== */
.section-bg-alt {
    background: linear-gradient(135deg, #f0f4fc 0%, #f5f8ff 100%);
    border-top: 1px solid rgba(208, 218, 234, 0.5);
    border-bottom: 1px solid rgba(208, 218, 234, 0.5);
    padding: 72px 0;
    margin: 16px 0;
}

/* ==========================================================================
   23. Misc Utility & Override Patches
   ========================================================================== */

/* Ensure Bootstrap rows/cols work inside sections */
.container { position: relative; }

/* Career Page Specifics */
.career-card {
    background: #ffffff;
    border-radius: var(--r-md);
    border: 1px solid var(--border-card);
    padding: 28px;
    box-shadow: var(--sh-sm);
    transition: var(--t-base);
}
.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(26, 86, 219, 0.24);
}

/* Review / Testimonial Card */
.review-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-card);
    padding: 32px 28px;
    box-shadow: var(--sh-sm);
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 20px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(26, 86, 219, 0.07);
    line-height: 1;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-card-hover);
}

/* Service & Products Detail Page */
.detail-spec-table tr td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
}
.detail-spec-table tr:first-child td { background: var(--bg-section); }
.detail-spec-table tr:last-child td { border-bottom: none; }

/* Shop Page Filters */
.shop-filter-btn {
    background: #ffffff;
    border: 1.5px solid var(--border);
    color: var(--text-body);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 20px;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: var(--t-base);
}
.shop-filter-btn:hover,
.shop-filter-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--sh-btn);
}

/* ==========================================================================
   24. Inline Script for Scroll Reveal & Active Header
   ========================================================================== */
/* (JS handles .reveal via IntersectionObserver — see footer.blade.php) */

/* ==========================================================================
   25. Responsive Overrides
   ========================================================================== */
@media (max-width: 991px) {
    .section-title h2 { font-size: 30px !important; }
    .hero-impact-bar { padding: 22px 20px; }
    .admin-quote-card { padding: 28px 20px; }
    .premium-cta-banner { padding: 40px 28px; }
    .impact-stat-number { font-size: 22px; }
}
@media (max-width: 575px) {
    .hero-btn-group { flex-direction: column; gap: 12px; }
    .hero-btn-group a { width: 100%; }
    .floating-call-btn span { display: none; }
    .floating-call-btn { padding: 13px 16px; }
}
