/* ==========================================================================
   SHARP ENTERPRISE - INDUSTRIAL ACCESS & POWER SOLUTIONS
   Design System & Master Stylesheet
   Color Palette: Industrial Gold/Yellow, Dark Charcoal, Metallic Grey & Black
   ========================================================================== */

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

:root {
    /* Brand Colors - 3-Color Theme: Yellow, Green, and #0f2a55 Navy */
    --color-primary-yellow: #F5C211;
    --color-primary-gold: #FFB800;
    --color-yellow-hover: #FFD23F;
    --color-yellow-glow: rgba(245, 194, 17, 0.28);
    
    /* Green Eco & Safety Accents */
    --color-primary-green: #10B981;
    --color-green-glow: rgba(16, 185, 129, 0.25);
    --color-success: #10B981;

    /* Deep Royal / Industrial Navy Blue Palette (#0f2a55 base) */
    --color-primary-navy: #0f2a55;
    --color-black-deep: #071329;
    --color-charcoal-dark: #091A36;
    --color-charcoal-card: #0f2a55;
    --color-charcoal-hover: #163B76;
    
    /* Metallic & Navy Greys */
    --color-grey-dark: #1F4582;
    --color-grey-medium: #3361A6;
    --color-grey-light: #94E0FF;
    --color-grey-muted: #E2F2FF;
    --color-grey-panel: #F8FAFC;
    --color-white: #FFFFFF;
    
    /* Functional Accents */
    --color-danger: #EF4444;
    --color-info: #3B82F6;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.35);
    --shadow-yellow: 0 8px 25px rgba(245, 194, 17, 0.35);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 96px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black-deep);
    color: var(--color-grey-muted);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

ul, ol {
    list-style: none;
}

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

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

button {
    cursor: pointer;
}

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

/* ==========================================================================
   TOP ALERT BAR (SHARP ENTERPRISE YELLOW BAR)
   ========================================================================== */
.top-bar {
    background: var(--color-primary-yellow);
    color: var(--color-black-deep);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

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

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.3px;
}

.top-bar-phone svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-badge {
    background: rgba(0, 0, 0, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-select-wrapper {
    position: relative;
}

.lang-select {
    background: #FFFFFF;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 24px 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    appearance: none;
    border: 1px solid #ddd;
}

.lang-select-wrapper::after {
    content: '▼';
    font-size: 8px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #444;
}

/* ==========================================================================
   MAIN BRAND HEADER
   ========================================================================== */
.site-header {
    background: var(--color-white);
    color: var(--color-black-deep);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 900;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 60px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(245, 194, 17, 0.3));
    transition: transform var(--transition-bounce);
}

.logo-wrapper:hover .logo-icon {
    transform: scale(1.05) rotate(-3deg);
}

.logo-text-block {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #11141A;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-gst {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748B;
    margin-top: 4px;
    letter-spacing: 0.5px;
    background: #F1F5F9;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.header-action-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-header-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #1E293B;
    padding: 8px 16px;
    border-radius: 50px;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    transition: all var(--transition-fast);
}

.btn-header-action .icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-charcoal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: all var(--transition-fast);
}

.btn-header-action:hover {
    border-color: var(--color-primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-header-action:hover .icon-circle {
    background: var(--color-primary-yellow);
    color: #000;
}

/* ==========================================================================
   NAVIGATION & SEARCH BAR
   ========================================================================== */
.site-nav {
    background: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    border-bottom: 2px solid #CBD5E1;
    position: sticky;
    top: 0;
    z-index: 850;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    color: #1E293B;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: #000;
    background: rgba(245, 194, 17, 0.2);
}

.nav-link.active {
    color: #000;
    background: var(--color-primary-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
}

.nav-right-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-search-box {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    overflow: hidden;
    height: 38px;
    width: 280px;
    transition: all var(--transition-fast);
}

.nav-search-box:focus-within {
    border-color: var(--color-primary-yellow);
    box-shadow: 0 0 0 3px rgba(245, 194, 17, 0.3);
    width: 320px;
}

.nav-search-input {
    flex: 1;
    padding: 0 12px;
    font-size: 0.85rem;
    color: #1E293B;
}

.nav-search-input::placeholder {
    color: #94A3B8;
}

.nav-search-btn {
    background: var(--color-primary-yellow);
    color: #000;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    transition: background var(--transition-fast);
}

.nav-search-btn:hover {
    background: var(--color-yellow-hover);
}

.btn-nav-quote {
    background: var(--color-charcoal-dark);
    color: var(--color-primary-yellow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    border: 1px solid var(--color-primary-yellow);
    transition: all var(--transition-fast);
}

.btn-nav-quote:hover {
    background: var(--color-primary-yellow);
    color: #000;
    box-shadow: 0 0 15px rgba(245, 194, 17, 0.4);
}

/* ==========================================================================
   ULTRA-MODERN AESTHETIC CYBER-INDUSTRIAL HERO BANNER
   ========================================================================== */
.hero-banner {
    position: relative;
    background: 
        radial-gradient(circle at 78% 25%, rgba(245, 194, 17, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 18% 78%, rgba(16, 185, 129, 0.18) 0%, transparent 45%),
        linear-gradient(180deg, #091A36 0%, #071329 100%);
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid var(--color-primary-yellow);
}

/* High-Tech Architectural Grid Lines Overlay */
.hero-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
}

/* Ambient Floating Holographic Glow Orbs */
.hero-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.orb-gold {
    width: 420px;
    height: 420px;
    background: rgba(245, 194, 17, 0.18);
    top: 5%;
    right: 12%;
}

.orb-blue {
    width: 380px;
    height: 380px;
    background: rgba(16, 185, 129, 0.16);
    bottom: -10%;
    left: 8%;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25px, 20px) scale(1.1); }
}

.hero-grid {
    position: relative;
    z-index: 10;
    padding-top: 56px;
    padding-bottom: 64px;
}

/* Dynamic Silky-Smooth Hero Slide Transitions */
@keyframes heroSlideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    animation: heroSlideFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slider-arrows {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
}

.hero-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20, 24, 34, 0.85);
    border: 1px solid var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.hero-arrow-btn:hover {
    background: var(--color-primary-yellow);
    color: #000;
    transform: scale(1.1);
}

.hero-slide-indicators {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
    z-index: 20;
    position: relative;
}

.hero-indicator-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2A3344;
    border-radius: 50px;
    padding: 8px 18px;
    color: #94A3B8;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.hero-indicator-pill:hover {
    background: rgba(245, 194, 17, 0.15);
    border-color: var(--color-primary-yellow);
    color: #FFF;
}

.hero-indicator-pill.active {
    background: var(--color-primary-yellow);
    border-color: var(--color-primary-yellow);
    color: #000;
    box-shadow: 0 0 15px rgba(245, 194, 17, 0.4);
}

.hero-indicator-pill .ind-num {
    font-family: var(--font-mono);
    font-weight: 800;
    opacity: 0.75;
}

.hero-text-content {
    max-width: 680px;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-industrial {
    background: rgba(245, 194, 17, 0.15);
    border: 1px solid var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary-green);
    box-shadow: 0 0 10px var(--color-primary-green);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.08;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight-yellow {
    color: var(--color-primary-yellow);
    position: relative;
    display: inline-block;
}

.hero-title .highlight-yellow::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 194, 17, 0.25);
    z-index: -1;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-grey-light);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-yellow {
    background: var(--color-primary-yellow);
    color: var(--color-black-deep);
    box-shadow: 0 4px 15px rgba(245, 194, 17, 0.35);
}

.btn-primary-yellow:hover {
    background: var(--color-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 194, 17, 0.5);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-primary-yellow);
}

.btn-outline-gold:hover {
    background: rgba(245, 194, 17, 0.15);
    color: var(--color-primary-yellow);
    transform: translateY(-2px);
}

.btn-dark-grey {
    background: var(--color-charcoal-card);
    color: var(--color-white);
    border: 1px solid var(--color-grey-medium);
}

.btn-dark-grey:hover {
    background: var(--color-charcoal-hover);
    border-color: var(--color-primary-yellow);
    color: var(--color-primary-yellow);
}

/* Stats counter bar in Hero */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--color-primary-yellow);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-grey-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero equipment showcase visual - Cyber-Industrial Holographic Card */
.hero-visual-card {
    position: relative;
    background: rgba(18, 22, 31, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 194, 17, 0.4);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 194, 17, 0.15);
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 194, 17, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated Cyber Scanline */
.hero-visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary-yellow), transparent);
    opacity: 0.6;
    animation: cyberScanline 4s linear infinite;
}

@keyframes cyberScanline {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(380px); opacity: 0; }
}

.visual-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary-yellow);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 194, 17, 0.45);
    z-index: 10;
}

.hero-machine-svg {
    width: 100%;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    gap: 16px;
}

.machine-name-tag {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
}

.machine-spec-sub {
    font-size: 0.82rem;
    color: var(--color-primary-yellow);
    font-family: var(--font-mono);
}

/* ==========================================================================
   SECTION HEADER COMMON STYLES
   ========================================================================== */
.section-padding {
    padding: 88px 0;
    position: relative;
}

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

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(245, 194, 17, 0.1);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(245, 194, 17, 0.3);
}

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

.section-title span {
    color: var(--color-primary-yellow);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-grey-light);
}

/* ==========================================================================
   WHAT WE DO - BUSINESS MODEL & SERVICES SECTION
   ========================================================================== */
.business-model-section {
    background: #0E1015;
    border-bottom: 1px solid var(--color-grey-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-charcoal-card);
    border: 1px solid var(--color-grey-dark);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--color-primary-yellow);
    transition: height var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-yellow);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 194, 17, 0.15);
    background: var(--color-charcoal-hover);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(245, 194, 17, 0.12);
    border: 1px solid rgba(245, 194, 17, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-yellow);
    margin-bottom: 22px;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background: var(--color-primary-yellow);
    color: var(--color-black-deep);
    transform: scale(1.08);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-grey-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    font-weight: 700;
    color: var(--color-primary-yellow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ==========================================================================
   PRODUCTS CATALOG HEADER & TOOLBAR
   ========================================================================== */
.products-header {
    background: linear-gradient(180deg, #131720 0%, #0D0F14 100%);
    padding: 56px 0 28px 0;
    border-bottom: 1px solid #1E2430;
}

.products-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.products-header-text {
    flex: 1;
    min-width: 320px;
}

.filter-search-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 560px;
    flex-wrap: nowrap;
}

.product-search-input {
    flex: 1;
    height: 52px;
    border-radius: var(--radius-sm);
    border: 1px solid #2B3547;
    background: #171D28;
    color: #FFF;
    padding: 0 18px;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.product-search-input:focus {
    outline: none;
    border-color: var(--color-primary-yellow);
    box-shadow: 0 0 12px rgba(245, 194, 17, 0.25);
}

.filter-pills-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   MAIN PRODUCTS CATEGORY SHOWCASE
   ========================================================================== */
.products-showcase-section {
    background: #091A36;
    position: relative;
}

.category-filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-pill {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--color-charcoal-card);
    border: 1px solid var(--color-grey-dark);
    color: var(--color-grey-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--color-primary-yellow);
    color: var(--color-black-deep);
    border-color: var(--color-primary-yellow);
    box-shadow: 0 4px 15px rgba(245, 194, 17, 0.35);
}

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--color-charcoal-card);
    border: 1px solid var(--color-grey-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 194, 17, 0.2);
}

/* Product Catalog Filter Animation Effects */
@keyframes productFilterIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.92);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.product-card.filter-animating-in {
    animation: productFilterIn 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-card.filter-hidden {
    display: none !important;
}

.product-badge-group {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.badge-tag {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--color-primary-yellow);
    border: 1px solid var(--color-primary-yellow);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-status-ready {
    background: #10B981;
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-image-container {
    height: 250px;
    background: radial-gradient(circle at center, #262D3B 0%, #141820 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid #2B3342;
}

.product-card:hover .product-image-container svg,
.product-card:hover .product-image-container .product-photo {
    transform: scale(1.06);
}

.product-image-container svg {
    transition: transform var(--transition-smooth);
    max-height: 210px;
    width: auto;
    padding: 20px;
}

.product-image-container .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-smooth);
}

.hero-product-photo {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
    line-height: 1.25;
}

.product-specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
}

.spec-value {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFF;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-product-spec {
    flex: 1;
    background: transparent;
    border: 1px solid #47536A;
    color: #FFF;
    font-size: 0.85rem;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-fast);
}

.btn-product-spec:hover {
    border-color: #FFF;
    background: rgba(255, 255, 255, 0.08);
}

.btn-product-quote {
    flex: 1;
    background: var(--color-primary-yellow);
    color: #000;
    font-size: 0.85rem;
    padding: 10px;
    border-radius: 6px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-product-quote:hover {
    background: var(--color-yellow-hover);
    box-shadow: 0 4px 12px rgba(245, 194, 17, 0.4);
}

/* ==========================================================================
   WHAT EQUIPMENT HELPS YOU DO - INTERACTIVE APPLICATIONS MATRIX
   ========================================================================== */
.applications-section {
    background: #0B0D11;
    border-top: 1px solid var(--color-grey-dark);
}

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

.application-card {
    background: #14171F;
    border: 1px solid #282F3E;
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.application-card:hover {
    background: #1D222E;
    border-color: var(--color-primary-yellow);
    transform: translateY(-4px);
}

.app-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: rgba(245, 194, 17, 0.15);
    color: var(--color-primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.app-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 8px;
}

.app-text p {
    font-size: 0.92rem;
    color: var(--color-grey-light);
}

/* ==========================================================================
   INDUSTRIES WE SERVE - SHOWCASE
   ========================================================================== */
.industries-section {
    background: #11141A;
    border-top: 1px solid #252A36;
    border-bottom: 1px solid #252A36;
}

.industries-pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.industry-card {
    background: #1A1F29;
    border: 1px solid #323A4A;
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-fast);
}

.industry-card:hover {
    background: #252D3B;
    border-color: var(--color-primary-yellow);
    transform: scale(1.02);
}

.ind-number {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-yellow);
    background: rgba(245, 194, 17, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
}

/* ==========================================================================
   BRAND POSITIONING / WHY CHOOSE SHARP ENTERPRISE (YELLOW METALLIC BANNER)
   ========================================================================== */
.brand-position-section {
    background: linear-gradient(135deg, #2A2100 0%, #1A1705 50%, #0D0E12 100%);
    border-top: 2px solid var(--color-primary-yellow);
    border-bottom: 2px solid var(--color-primary-yellow);
    position: relative;
    overflow: hidden;
}

.brand-pos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pos-lead-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.25;
    margin-bottom: 24px;
}

.pos-lead-text span {
    color: var(--color-primary-yellow);
}

.pos-desc {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 32px;
    line-height: 1.7;
}

.pos-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pos-feature-item {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(245, 194, 17, 0.3);
    padding: 22px;
    border-radius: 10px;
}

.pos-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary-yellow);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pos-feature-item p {
    font-size: 0.9rem;
    color: #E2E8F0;
}

/* ==========================================================================
   INTERACTIVE QUICK RENTAL / ESTIMATE CALCULATOR SECTION
   ========================================================================== */
.rental-calc-section {
    background: #0A0B0E;
    position: relative;
}

.calc-box-card {
    background: #141820;
    border: 2px solid var(--color-primary-yellow);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-yellow);
}

.calc-header {
    text-align: center;
    margin-bottom: 36px;
}

.calc-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 10px;
}

.calc-header p {
    color: #94A3B8;
}

.calc-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary-yellow);
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    background: #1E2430;
    border: 1px solid #364154;
    border-radius: 8px;
    padding: 14px 16px;
    color: #FFF;
    font-size: 0.95rem;
    width: 100%;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary-yellow);
    box-shadow: 0 0 0 3px rgba(245, 194, 17, 0.25);
}

.calc-result-box {
    margin-top: 32px;
    background: rgba(245, 194, 17, 0.08);
    border: 1px dashed var(--color-primary-yellow);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.calc-result-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #FFF;
}

.calc-result-text p {
    color: #94A3B8;
    font-size: 0.9rem;
}

.calc-price-display {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary-yellow);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-hero-banner {
    background: linear-gradient(135deg, #181C24 0%, #11151D 100%);
    border-bottom: 2px solid var(--color-primary-yellow);
    padding: 64px 0;
    text-align: center;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: #161A23;
    border: 1px solid #2B3344;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover {
    border-color: var(--color-primary-yellow);
    transform: translateY(-6px);
}

.contact-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary-yellow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 12px;
}

.contact-info-card p, .contact-info-card a {
    color: #A0AEC0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info-card a:hover {
    color: var(--color-primary-yellow);
}

/* Main Contact Inquiry Layout */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.contact-form-card {
    background: #141820;
    border: 1px solid #2C3545;
    border-radius: var(--radius-md);
    padding: 40px;
}

.contact-form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 8px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #171B24;
    border: 1px solid #2B3342;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: var(--color-primary-yellow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    cursor: pointer;
    background: transparent;
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 194, 17, 0.15);
    color: var(--color-primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--color-primary-yellow);
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 24px;
    color: #A0AEC0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

/* ==========================================================================
   MODAL DIALOGS (SPEC SHEET & QUICK QUOTE)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #141822;
    border: 2px solid var(--color-primary-yellow);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), var(--shadow-yellow);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #2B3344;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #181C26;
    position: relative;
}

.modal-header > div {
    padding-right: 48px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FFF;
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #252D3D;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--color-danger);
    color: #FFF;
}

.modal-body {
    padding: 32px;
}

/* Success notification toast */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-success);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(120%);
    transition: transform var(--transition-bounce);
}

.toast-notification.show {
    transform: translateY(0);
}

/* ==========================================================================
   FOOTER SECTION (INDUSTRIAL YELLOW & BLACK THEME)
   ========================================================================== */
.site-footer {
    background: #060709;
    border-top: 3px solid var(--color-primary-yellow);
    color: #94A3B8;
    margin-top: auto;
}

.footer-top {
    padding: 72px 0 48px;
    border-bottom: 1px solid #1E2430;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--color-primary-yellow);
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

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

.footer-links a::before {
    content: '▸';
    color: var(--color-primary-yellow);
    font-size: 0.8rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.92rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
    fill: var(--color-primary-yellow);
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    font-size: 0.85rem;
    background: #030405;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS & MOBILE VIEW FIXES (ALL PAGES)
   ========================================================================== */
@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-slide.active {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-excellence-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .about-left-visual-wrap {
        padding-bottom: 0 !important;
        padding-right: 0 !important;
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Main brand header alignment */
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 16px 0;
    }
    .logo-wrapper {
        justify-content: center;
    }
    .header-action-buttons {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    .btn-header-action {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 6px 10px !important;
        font-size: 0.74rem !important;
        gap: 6px !important;
        border-radius: 30px !important;
    }
    .btn-header-action .icon-circle {
        width: 26px !important;
        height: 26px !important;
        flex-shrink: 0;
    }
    .btn-header-action .icon-circle svg {
        width: 13px !important;
        height: 13px !important;
    }

    /* Swipeable horizontal menu bar for mobile navigation */
    .nav-header-mobile {
        display: flex !important;
        justify-content: flex-end !important;
        width: 100% !important;
        align-items: center !important;
        padding: 4px 16px !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 26px !important;
        height: 18px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 1001 !important;
        outline: none !important;
    }
    .mobile-menu-toggle .bar {
        height: 3px !important;
        width: 100% !important;
        background-color: var(--color-primary-yellow) !important;
        border-radius: 10px !important;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
    }
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg) !important;
    }
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0 !important;
    }
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg) !important;
    }

    .nav-content {
        flex-direction: column !important;
        height: auto !important;
        padding: 6px 0 !important;
        align-items: stretch !important;
    }
    .nav-links {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 10px 16px !important;
        gap: 10px !important;
        background: transparent !important;
        overflow-x: visible !important;
        white-space: normal !important;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-link {
        width: 100% !important;
        text-align: center !important;
        border-radius: 8px !important;
        padding: 10px 14px !important;
        font-size: 0.9rem !important;
        background: #FFFFFF !important;
        color: #0F2A55 !important;
        border: 1px solid #CBD5E1 !important;
        flex-shrink: 0;
        font-weight: 700;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    .nav-link.active {
        background: var(--color-primary-yellow) !important;
        color: #000 !important;
        border-color: var(--color-primary-yellow) !important;
    }
    .nav-right-tools {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 10px 16px 14px 16px !important;
    }
    .nav-right-tools.active {
        display: flex !important;
    }
    .btn-nav-quote {
        width: 100% !important;
        height: 42px !important;
        font-size: 0.85rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 8px !important;
        white-space: nowrap !important;
        border-radius: 6px !important;
    }
    .nav-search-box {
        width: 100% !important;
        height: 42px !important;
        margin: 0 !important;
        background: #FFFFFF !important;
        border-radius: 6px !important;
        overflow: hidden;
        border: 1px solid #CBD5E1 !important;
    }
    .nav-search-input {
        width: 100% !important;
        font-size: 0.85rem !important;
        padding: 4px 8px !important;
    }
    .btn-search-submit {
        width: 36px !important;
        height: 36px !important;
    }

    /* Section adjustments */
    .hero-slide.active {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: center !important;
    }
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.25;
    }
    .hero-description {
        font-size: 0.92rem;
        text-align: center !important;
        margin: 12px auto !important;
        max-width: 520px;
    }
    .hero-badge-row {
        justify-content: center !important;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-visual-card {
        padding: 20px;
        margin-top: 12px !important;
        width: 100% !important;
        max-width: 480px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hero-machine-svg {
        height: 240px;
    }
    .hero-slide-indicators {
        justify-content: center !important;
        margin-top: 20px !important;
    }
    .hero-slider-arrows {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        flex-direction: row !important;
        justify-content: center !important;
        margin-top: 24px !important;
        gap: 16px !important;
    }
    
    /* Horizontally swipeable filter pills for products page on mobile */
    .category-filter-pills {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        padding: 4px 16px !important;
        margin-bottom: 24px !important;
        -webkit-overflow-scrolling: touch;
    }
    .category-filter-pills::-webkit-scrollbar {
        display: none;
    }
    .filter-pill {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }

    /* Grids & Cards */
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .applications-grid {
        grid-template-columns: 1fr;
    }
    .brand-pos-content {
        grid-template-columns: 1fr;
    }
    .pos-features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px !important;
    }
    .footer-grid > div {
        padding: 0 4px !important;
    }
    .site-footer .logo-wrapper {
        justify-content: flex-start !important;
    }

    /* Testimonials Dots spacing */
    .testi-dots {
        gap: 8px;
    }
    
    /* Interactive specs table padding */
    .detail-spec-table th, 
    .detail-spec-table td {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    /* Brand logo scaling */
    .brand-title {
        font-size: 1.15rem !important;
    }
    .brand-gst {
        font-size: 0.65rem !important;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    /* Compact Top Bar */
    .top-bar {
        padding: 6px 0 !important;
    }
    .top-bar-content {
        flex-direction: column !important;
        gap: 4px !important;
        text-align: center !important;
    }
    .top-bar-phone {
        font-size: 0.85rem !important;
        justify-content: center !important;
    }
    .top-bar-badge {
        font-size: 0.65rem !important;
        padding: 2px 6px !important;
    }
    
    /* Stats row collapse */
    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center !important;
        align-items: center !important;
    }
    .stat-item {
        align-items: center !important;
    }
    
    /* Sizing calculator collapse */
    .calc-form-grid {
        grid-template-columns: 1fr;
    }
    
    /* Product list card auto-scaling */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
        gap: 20px !important;
    }
    .product-image-container {
        height: 200px !important;
    }
    .product-details {
        padding: 16px !important;
    }
    
    /* Hero Title scale down on tiny screens */
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.22 !important;
    }
    .hero-description {
        font-size: 0.86rem !important;
        line-height: 1.45 !important;
    }
    .badge-industrial {
        font-size: 0.72rem !important;
        padding: 4px 8px !important;
    }
    
    /* Section paddings */
    .section-padding {
        padding: 48px 0 !important;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    /* Footer bottom center */
    .footer-bottom-content {
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
    
    /* Product detail page status & share button alignment */
    .gallery-badge-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    .badge-status-ready {
        text-align: center !important;
        width: 100% !important;
    }
    .btn-share-model {
        justify-content: center !important;
        width: 100% !important;
    }

    /* Hero card footer responsive stack */
    .hero-card-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        text-align: center !important;
    }
    .hero-card-footer .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE SPECIFIC STYLES (MATCHING SCREENSHOT)
   ========================================================================== */

.detail-main-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 36px;
    align-items: start;
}

.detail-left-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.detail-gallery-card {
    transition: all var(--transition-smooth);
}

.thumb-btn {
    transition: all var(--transition-smooth);
    outline: none;
    background: #091A36;
}

.thumb-btn:hover {
    border-color: var(--color-primary-yellow) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px);
}

.thumb-btn.active {
    border: 2px solid var(--color-primary-yellow) !important;
    color: var(--color-white) !important;
    box-shadow: 0 0 12px rgba(245, 194, 17, 0.3);
}

.detail-spec-table tr {
    transition: background-color 0.2s ease;
}

.detail-spec-table tr:hover {
    background-color: rgba(245, 194, 17, 0.05);
}

.req-tag-btn {
    transition: all 0.2s ease;
    outline: none;
}

.req-tag-btn:hover {
    border-color: var(--color-primary-yellow) !important;
    color: var(--color-white) !important;
}

.req-tag-btn.active {
    background: rgba(245, 194, 17, 0.2) !important;
    border: 1px solid var(--color-primary-yellow) !important;
    color: var(--color-white) !important;
    box-shadow: 0 0 8px rgba(245, 194, 17, 0.25);
}

@media (max-width: 992px) {
    .detail-main-grid {
        grid-template-columns: 1fr;
    }
    .detail-right-sidebar {
        position: relative !important;
        top: 0 !important;
    }
}

/* ==========================================================================
   ABOUT US SECTION (LEFT IMAGE WITH INSET CARD, RIGHT SIDE CONTENT)
   Inspired by Elite Enterprise Layout
   ========================================================================== */

.about-excellence-section {
    padding: 80px 0;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border-subtle);
    position: relative;
    overflow: hidden;
}

.about-excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left-visual-wrap {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.about-main-img-card {
    border-radius: 20px;
    overflow: hidden;
    background: #091A36;
    border: 3px solid #1E4D9B;
    box-shadow: 0 25px 50px rgba(7, 19, 41, 0.4);
    position: relative;
    z-index: 1;
}

.about-main-img-card svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Picture-in-picture inset card overlapping bottom right */
.about-inset-img-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    background: #0F2A55;
    border: 4px solid var(--color-primary-yellow);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-inset-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-primary-yellow);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.about-inset-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-right-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-tag-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-heading-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.25;
    font-family: var(--font-heading);
}

.about-lead-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.about-stats-vision-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-subtle);
}

.about-stat-left {
    background: #091A36;
    border: 1px solid #1E4D9B;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stat-left .big-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary-yellow);
    line-height: 1;
    font-family: var(--font-heading);
}

.about-stat-left .big-lbl {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 6px;
}

.about-vision-right {
    background: #0A1426;
    border-left: 4px solid var(--color-primary-green);
    border-radius: 0 12px 12px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-vision-right h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 6px;
}

.about-vision-right p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #091A36;
    color: var(--color-white);
    border: 2px solid var(--color-primary-yellow);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-smooth);
    width: fit-content;
    box-shadow: 0 8px 20px rgba(245, 194, 17, 0.2);
}

.btn-read-more:hover {
    background: var(--color-primary-yellow);
    color: #071329;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245, 194, 17, 0.4);
}

/* ==========================================================================
   WHAT OUR CLIENTS SAY (TESTIMONIALS CAROUSEL SLIDER)
   Inspired by Elite Enterprise Layout
   ========================================================================== */

.testimonials-section {
    padding: 90px 0;
    background: #071329;
    border-top: 1px solid var(--color-border-subtle);
    position: relative;
    overflow: hidden;
}

.testi-header-wrap {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

.testi-title-badge {
    display: inline-block;
    background: rgba(245, 194, 17, 0.15);
    border: 1px solid var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.testi-heading {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.testi-heading span {
    color: var(--color-primary-yellow);
    background: rgba(245, 194, 17, 0.12);
    padding: 2px 10px;
    border-radius: 6px;
}

.testi-subtext {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Slider Track & Container */
.testi-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 10px;
}

.testi-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 19px);
    background: #0F2A55;
    border: 1px solid #1E4D9B;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-yellow);
    box-shadow: 0 20px 40px rgba(245, 194, 17, 0.2);
}

.testi-author-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.testi-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0F2A55;
    border: 2px solid var(--color-primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary-yellow);
    flex-shrink: 0;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.author-names h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 2px 0;
}

.author-names span {
    font-size: 0.85rem;
    color: var(--color-primary-green);
    font-weight: 700;
    display: block;
}

.quote-icon {
    font-size: 2.8rem;
    line-height: 1;
    color: rgba(245, 194, 17, 0.4);
    font-family: Georgia, serif;
    font-weight: 900;
}

.testi-quote-text {
    font-size: 1rem;
    color: #CBD5E1;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testi-stars-row {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #F5C211;
    font-size: 1.15rem;
}

/* Slider Controls & Dots */
.testi-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testi-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #091A36;
    border: 2px solid var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.testi-arrow-btn:hover {
    background: var(--color-primary-yellow);
    color: #071329;
    transform: scale(1.1);
}

.testi-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testi-dot.active {
    width: 32px;
    border-radius: 8px;
    background: var(--color-primary-yellow);
    box-shadow: 0 0 10px rgba(245, 194, 17, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-left-visual-wrap {
        max-width: 520px;
        margin: 0 auto;
    }
    .about-stats-vision-row {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    .testi-heading {
        font-size: 2rem;
    }
}
/* ==========================================================================
   MODERN AESTHETIC UPGRADE: GLASSMORPHISM, AMBIENT LIGHTING & DYNAMIC ANIMATIONS
   Transforms classic solid colors into a premium, state-of-the-art visual experience
   ========================================================================== */

/* ==========================================================================
   GSAP-STYLE PROGRESSIVE ELEMENT REVEAL TIMELINE SYSTEM (NO SECTION ANIMATION)
   Each child element animates independently with cascading delays
   ========================================================================== */

/* 1. EYEBROW / SMALL LABEL (0ms delay) */
.gsap-eyebrow {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0ms, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0ms;
    will-change: opacity, transform;
}

/* 2. HEADING (100ms delay, finishes before cards begin) */
.gsap-heading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 100ms, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 100ms;
    will-change: opacity, transform;
}

/* 3. PARAGRAPH / LEAD TEXT (200ms delay) */
.gsap-paragraph {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 200ms, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 200ms;
    will-change: opacity, transform;
}

/* 4. BUTTONS (300ms delay, fade + subtle scale 0.94 -> 1) */
.gsap-button {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 300ms, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 300ms;
    will-change: opacity, transform;
}

/* 5. IMAGES (400ms delay, fade + scale 0.95 -> 1 with smooth easing) */
.gsap-image {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 400ms, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 400ms;
    will-change: opacity, transform;
}

/* 6. INDIVIDUAL CARDS IN WATERFALL CASCADE (starts at ~350ms, +100ms per card) */
.gsap-card {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
    will-change: opacity, transform;
}

/* ACTIVE STATE WHEN REVEALED */
.gsap-revealed {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* 2. PRODUCT FILTERING DYNAMIC LOADING ANIMATION */
.product-card {
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.card-filtering-out {
    opacity: 0 !important;
    transform: scale(0.9) translateY(20px) !important;
    pointer-events: none;
}

.card-filtering-in {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
}

/* 3. PREMIUM GLASSMORPHISM & NEON EDGE LIGHTING FOR CARDS
      Replaces flat classic solid boxes with rich depth, frosted glass, and luminous glow */

.product-card,
.service-card,
.testimonial-card,
.application-card,
.contact-info-card,
.about-stat-left,
.about-vision-right {
    background: linear-gradient(135deg, rgba(15, 42, 85, 0.78) 0%, rgba(9, 26, 54, 0.92) 100%) !important;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.18) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Luxury Light-Sweep Shimmer Effect on hover */
.product-card::before,
.service-card::before,
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 10;
}

.product-card:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before {
    left: 150%;
}

/* Interactive Hover Luminous Glow & Lift */
.product-card:hover,
.service-card:hover,
.testimonial-card:hover,
.application-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px) scale(1.015) !important;
    border-color: rgba(245, 194, 17, 0.5) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6), 
        0 0 35px rgba(245, 194, 17, 0.22), 
        0 0 15px rgba(16, 185, 129, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.28) !important;
}

/* 4. ATMOSPHERIC AMBIENT BACKGROUND GLOW FOR SECTIONS */
.hero-section,
.about-excellence-section,
.business-model-section,
.applications-section,
.testimonials-section,
.products-grid-section {
    position: relative;
}

/* Ambient Floating Luminous Orbs */
.hero-section::after,
.about-excellence-section::after,
.testimonials-section::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    animation: ambientFloat 8s ease-in-out infinite alternate;
}

.hero-section::before,
.business-model-section::before,
.products-grid-section::before {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 194, 17, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: ambientFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes ambientFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.15); }
}

/* Ensure foreground content sits above ambient glow */
.hero-content,
.about-excellence-grid,
.services-grid,
.applications-grid,
.testi-slider-container,
.products-grid-container {
    position: relative;
    z-index: 2;
}

/* 5. SMOOTH PILL & BUTTON GLOW EFFECTS */
.filter-pill,
.btn-primary-yellow,
.btn-outline-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-pill.active {
    background: linear-gradient(135deg, #F5C211 0%, #D8A90A 100%) !important;
    color: #071329 !important;
    box-shadow: 0 4px 18px rgba(245, 194, 17, 0.45);
    transform: translateY(-2px);
}

.btn-primary-yellow:hover {
    box-shadow: 0 10px 28px rgba(245, 194, 17, 0.55), 0 0 15px rgba(245, 194, 17, 0.3) !important;
}
/* ==========================================================================
   PREMIUM SCROLL-TRIGGERED ANIMATION & MICRO-INTERACTION SYSTEM (ALL PAGES)
   60 FPS Performant, Spring Easing, Text Reveal Hierarchy & Reduced-Motion Safe
   ========================================================================== */

/* 1. SCROLL PROGRESS INDICATOR BAR */
#scrollProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 99999;
    background: linear-gradient(90deg, #F5C211 0%, #10B981 50%, #F5C211 100%);
    width: 0%;
    transition: width 0.08s ease-out;
    box-shadow: 0 0 10px rgba(245, 194, 17, 0.6);
    pointer-events: none;
}

/* 2. FLOATING BACK-TO-TOP BUTTON */
#backToTopBtn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 42, 85, 0.92);
    border: 2px solid var(--color-primary-yellow);
    color: var(--color-primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    outline: none;
}

/* 3. FLOATING WHATSAPP CONNECT BUTTON */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    outline: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
}

#backToTopBtn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#backToTopBtn:hover {
    background: var(--color-primary-yellow);
    color: #071329;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(245, 194, 17, 0.45);
}

/* 3. STICKY NAVBAR SCROLLED GLASS STATE */
.navbar {
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease !important;
}

.navbar.scrolled {
    background: rgba(7, 19, 41, 0.96) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* 4. TEXT REVEAL HIERARCHY (EYEBROW -> HEADING -> PARAGRAPH -> BUTTON) */
.text-reveal-eyebrow {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0ms, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0ms;
    will-change: opacity, transform;
}

.text-reveal-heading {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 100ms, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 100ms;
    will-change: opacity, transform;
}

.text-reveal-body {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 200ms, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 200ms;
    will-change: opacity, transform;
}

.text-reveal-btn {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 300ms, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 300ms;
    will-change: opacity, transform;
}

.text-reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 5. IMAGE ENTRANCE ANIMATION (0.95 -> 1) & GENTLE HOVER ZOOM */
.image-reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.image-reveal-scale.reveal-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.product-card svg,
.about-main-img-card svg,
.hero-visual-card svg,
.detail-left-col svg {
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.product-card:hover svg,
.about-main-img-card:hover svg,
.hero-visual-card:hover svg {
    transform: scale(1.055);
}

/* 6. STAGGERED CARD ENTRANCE WITH SPRING / EASING EFFECT */
.reveal-card-stagger {
    opacity: 0;
    transform: translateY(35px);
    transition: 
        opacity 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease !important;
    will-change: opacity, transform;
}

.reveal-card-stagger.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 7. ANIMATED LINK UNDERLINE EFFECTS */
.nav-link,
.footer-links a {
    position: relative;
    text-decoration: none !important;
}

.nav-link::after,
.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary-yellow);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* 8. MICRO-INTERACTIONS: ICON & ARROW TRANSITIONS */
.btn-primary-yellow span:last-child,
.btn-outline-gold span:last-child,
.btn-read-more span:last-child {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.btn-primary-yellow:hover span:last-child,
.btn-outline-gold:hover span:last-child,
.btn-read-more:hover span:last-child {
    transform: translateX(6px);
}

.service-icon,
.feature-icon,
.testi-arrow-btn {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.service-card:hover .service-icon,
.feature-item:hover .feature-icon,
.pos-feature-item:hover h4 {
    transform: translateY(-4px) scale(1.05);
}

/* (Reduced-motion media query removed to ensure GSAP animations always play on all Windows PCs) */

/* ==========================================================================
   PREMIUM SECTION BACKGROUND EFFECT & ARCHITECTURAL GRID SYSTEM
   Elevates every section with vibrant Yellow/Green glowing auras & tech grids
   ========================================================================== */

/* 1. HERO SECTION BACKGROUND GLOW & BLUEPRINT GRID */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 75% 25%, rgba(245, 194, 17, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 25% 75%, rgba(16, 185, 129, 0.18) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px;
    pointer-events: none;
    z-index: 1;
}

/* 2. ABOUT US SECTION - ARCHITECTURAL BLUEPRINT GRID & EMERALD/GOLD AURAS */
.about-excellence-section {
    background-color: #071329 !important;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(245, 194, 17, 0.15) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px !important;
    background-position: center !important;
    position: relative;
}

.about-excellence-section::after {
    content: "23+ YEARS";
    position: absolute;
    bottom: -20px;
    right: 5%;
    font-size: 11rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -2px;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* 3. BUSINESS MODEL SECTION (WHAT WE DO) - CYBER-DOT MATRIX PATTERN */
.business-model-section {
    background-color: #091A36 !important;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(245, 194, 17, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
        radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px) !important;
    background-size: 100% 100%, 100% 100%, 36px 36px !important;
    background-position: center !important;
    position: relative;
}

/* 4. APPLICATIONS / INDUSTRIES WE SERVE - HIGH-CONTRAST INDUSTRIAL GRID */
.applications-section {
    background-color: #050D1C !important;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(15, 42, 85, 0.45) 0%, transparent 70%),
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px) !important;
    background-size: 100% 100%, 64px 64px, 64px 64px !important;
    position: relative;
}

/* 5. WHAT OUR CLIENTS SAY - LUXURY NAVY WITH DUAL GOLDEN SPOTLIGHTS */
.testimonials-section {
    background-color: #071329 !important;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(245, 194, 17, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.16) 0%, transparent 45%),
        radial-gradient(rgba(245, 194, 17, 0.09) 1.5px, transparent 1.5px) !important;
    background-size: 100% 100%, 100% 100%, 28px 28px !important;
    position: relative;
}

.testimonials-section::after {
    content: "TRUSTED";
    position: absolute;
    top: 10px;
    left: 4%;
    font-size: 10rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: 4px;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* 6. PRODUCTS & FLEET GRID SECTIONS - TECHNICAL ARCHITECTURAL GRID */
.products-grid-section,
.products-section {
    background-color: #071329 !important;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(245, 194, 17, 0.17) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.14) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px !important;
    position: relative;
}

/* 7. CONTACT US & PRODUCT DETAIL PAGES - EXECUTIVE DOT-MATRIX & BLUEPRINT GRID */
.contact-hero-section,
.contact-options-section,
.detail-main-section {
    background-color: #071329 !important;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(16, 185, 129, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 90% 50%, rgba(245, 194, 17, 0.16) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px !important;
    position: relative;
}

/* ENSURE CONTENT STAYS ABOVE DECORATIVE BACKGROUNDS */
.hero-content,
.about-excellence-grid,
.services-grid,
.applications-grid,
.testi-slider-container,
.products-grid-container,
.contact-grid,
.detail-grid {
    position: relative;
    z-index: 2;
}




