/* =====================================================
   KARAN ENGINEERING INDUSTRIES
   Main Stylesheet — style.css
   Premium Industrial Design System
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ===================================================== */
:root {
    /* Colors */
    --primary:          #e85d04;
    --primary-dark:     #c44d00;
    --primary-light:    #ff7722;
    --dark:             #0a0e17;
    --dark-2:           #111827;
    --dark-3:           #1a2235;
    --steel:            #1e2d40;
    --steel-light:      #243347;
    --border-dark:      #2a3a52;
    --text-white:       #ffffff;
    --text-light:       #e0e6f0;
    --text-muted:       #8b98a8;
    --text-body:        #4a5568;
    --bg-light:         #f8f9fa;
    --bg-white:         #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing */
    --section-padding: 90px 0;

    /* Shadows */
    --shadow-sm:   0 2px 10px rgba(0,0,0,0.08);
    --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg:   0 20px 60px rgba(0,0,0,0.2);
    --shadow-dark: 0 10px 40px rgba(0,0,0,0.4);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-2);
}

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

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

.section-padding {
    padding: var(--section-padding);
}

.bg-dark-section {
    background: var(--dark-2);
}

/* =====================================================
   3. TYPOGRAPHY UTILITIES
   ===================================================== */
.text-accent { color: var(--primary); }
.text-muted-light { color: var(--text-muted); }

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.label-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =====================================================
   4. BUTTONS
   ===================================================== */
.btn-primary-karan {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-karan::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
}

.btn-primary-karan:hover::before { left: 0; }

.btn-primary-karan:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,93,4,0.4);
}

.btn-outline-karan {
    background: transparent;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-outline-karan:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,93,4,0.3);
}

/* =====================================================
   5. TOPBAR
   ===================================================== */
.topbar {
    background: var(--dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-link {
    color: var(--text-muted);
    font-size: 13px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.topbar-link i {
    color: var(--primary);
    font-size: 12px;
}

.topbar-link:hover {
    color: var(--primary);
}

.topbar-tagline {
    color: var(--text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-tagline i {
    color: #4caf50;
}

/* =====================================================
   6. MAIN NAVBAR
   ===================================================== */
.main-nav {
    background: var(--dark-3);
    padding: 14px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-dark);
}

/* Compact state on scroll */
.main-nav.scrolled {
    padding: 8px 0;
    background: rgba(14, 21, 35, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.main-nav.scrolled .logo-img {
    height: 48px;
}

/* Nav Links */
.nav-links .nav-link {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-light) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

/* Dropdown */
.nav-links .dropdown-toggle::after {
    display: none !important;
}

.nav-dropdown {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 180px;
    box-shadow: var(--shadow-dark);
}


.nav-dropdown .dropdown-item {
    color: var(--text-light);
    font-size: 14px;
    padding: 10px 20px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.nav-dropdown .dropdown-item:hover {
    background: var(--steel);
    color: var(--primary);
}

/* Digital India in Nav */
.nav-digital-india {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.digital-india-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* CTA Nav Button */
.btn-nav-cta {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13.5px;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(232,93,4,0.4);
}

/* Mobile Toggler */
.custom-toggler {
    background: transparent;
    border: 1px solid var(--border-dark);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* =====================================================
   7. HERO SECTION
   ===================================================== */
.hero-section {
    background: #0b111e;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Cinematic Video Background */
.hero-video-section {
    background: #070d18;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.60) contrast(1.15) saturate(1.1);
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 13, 24, 0.78) 0%,
        rgba(11, 17, 30, 0.65) 40%,
        rgba(7, 13, 24, 0.85) 80%,
        rgba(11, 17, 30, 0.98) 100%
    );
    z-index: 1;
    backdrop-filter: blur(0.5px);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 80px;
}

.min-vh-80 {
    min-height: 75vh;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,4,0.18);
    border: 1px solid rgba(232,93,4,0.4);
    color: #ff9e58;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 9px 22px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease 0.2s both;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6.5vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title-main {
    display: block;
    color: var(--text-white);
    text-shadow: 0 4px 25px rgba(0,0,0,0.6);
}

.hero-title-sub {
    display: block;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 45px rgba(232,93,4,0.6);
}

.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 22px);
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-desc {
    font-size: 16.5px;
    color: #cbd5e1;
    line-height: 1.85;
    margin-bottom: 34px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    animation: fadeInUp 0.8s ease 0.6s both;
}


/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232,93,4,0.45);
}

.btn-hero-outline {
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Standards Tags */
.hero-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: fadeInUp 0.8s ease 0.85s both;
}

.standard-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.standard-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(232,93,4,0.05);
}

/* Hero Image */
.hero-img-col {
    justify-content: center;
    animation: fadeInLeft 0.9s ease 0.6s both;
}

.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,93,4,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-main-img {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.5s ease;
}

.hero-main-img:hover {
    transform: scale(1.02) rotateY(-2deg);
}

.hero-img-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    z-index: 3;
    background: var(--primary);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 25px rgba(232,93,4,0.5);
    animation: pulse 2.5s ease-in-out infinite;
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-dot {
    width: 4px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); }
    50%       { transform: scaleY(0.6); }
}

/* =====================================================
   8. STATS BAR
   ===================================================== */
.stats-bar {
    background: var(--dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 3px solid var(--primary);
    padding: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 24px;
    border-right: 1px solid var(--border-dark);
    transition: var(--transition);
    cursor: default;
}

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

.stat-item:hover {
    background: rgba(232,93,4,0.05);
}

.stat-icon {
    font-size: 36px;
    color: var(--primary);
    flex-shrink: 0;
    line-height: 1;
}

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

.stat-number-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    white-space: nowrap;
}


/* =====================================================
   9. ABOUT SECTION
   ===================================================== */
.about-section {
    background: var(--bg-white);
}

.about-img-composition {
    position: relative;
    height: 520px;
}

.img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
    z-index: 1;
}

.img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
    z-index: 2;
    transition: transform 0.5s ease;
}

.about-img-composition:hover .img-main {
    transform: scale(1.02) rotate(-1deg);
}

.about-img-composition:hover .img-secondary {
    transform: scale(1.03) rotate(1deg);
}

/* =====================================================
   About Video Composition (Showcase Video)
   ===================================================== */
.about-video-composition {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.about-video-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16), 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #0b1120;
    border: 3px solid #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-video-composition:hover .about-video-container {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22), 0 8px 25px rgba(232, 93, 4, 0.2);
}

.about-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.25) 0%,
        rgba(15, 23, 42, 0.05) 40%,
        rgba(15, 23, 42, 0.4) 80%,
        rgba(15, 23, 42, 0.75) 100%
    );
    pointer-events: none;
}

.about-video-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.about-video-tag .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e85d04;
    display: inline-block;
    box-shadow: 0 0 8px #e85d04;
    animation: livePulse 1.8s infinite;
}

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

.about-video-sound-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-video-sound-btn:hover {
    background: var(--primary, #e85d04);
    transform: scale(1.1);
    color: #ffffff;
}

.about-video-composition .about-years-badge {
    position: absolute;
    top: 15px;
    right: -15px;
    z-index: 4;
}

.about-video-composition .about-cert-badge {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 4;
}


.about-years-badge {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 3;
    background: var(--primary);
    color: #fff;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 30px rgba(232,93,4,0.5);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.about-years-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.yb-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.yb-text {
    font-size: 11px;
    opacity: 0.85;
    line-height: 1.3;
}

.about-cert-badge {
    position: absolute;
    bottom: 50px;
    left: 20px;
    z-index: 3;
    background: var(--dark-2);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-dark);
}

.about-cert-badge i {
    color: #4caf50;
    font-size: 18px;
}

/* About Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-2);
}

.about-feature-item i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.about-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* =====================================================
   10. PRODUCTS SECTION
   ===================================================== */
.products-section {
    background: var(--dark-2);
}

.product-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(2deg);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(232,93,4,0.2), 0 0 0 1px rgba(232,93,4,0.3);
}

.product-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,93,4,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-link {
    color: #fff;
    font-size: 42px;
    transform: scale(0.5) rotate(-180deg);
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-link {
    transform: scale(1) rotate(0deg);
}

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

.product-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.product-read-more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    margin-top: auto;
}

.product-read-more:hover {
    gap: 10px;
    color: var(--primary-light);
}

/* =====================================================
   11. WHY CHOOSE US SECTION
   ===================================================== */
.why-section {
    background: var(--bg-light);
}

.why-card {
    background: var(--bg-white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232,93,4,0.2);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(232,93,4,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
    transition: background 0.3s, color 0.3s, transform 0.6s ease;
}

.why-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* =====================================================
   12. GALLERY SECTION
   ===================================================== */
.gallery-section {
    background: var(--dark-2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,93,4,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 8px;
    transform: translateY(15px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    font-size: 32px;
}

.gallery-overlay-content span {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* =====================================================
   13. CLIENTS SECTION
   ===================================================== */
.clients-section {
    background: var(--bg-white);
}

.client-major-tag {
    background: var(--dark-2);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.client-major-tag i {
    color: var(--primary);
}

.client-major-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232,93,4,0.3);
}

/* Clients Ticker */
.clients-ticker-wrap {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 4px 0;
    overflow: hidden;
    position: relative;
}

.clients-ticker-wrap::before,
.clients-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}

.clients-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-2), transparent);
}

.clients-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-2), transparent);
}

.clients-ticker {
    overflow: hidden;
    padding: 16px 0;
}

.clients-ticker-inner {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

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

.clients-ticker-wrap:hover .clients-ticker-inner {
    animation-play-state: paused;
}

.client-name-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
    cursor: default;
}

.client-name-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.03);
}

/* =====================================================
   14. CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--steel) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e85d04' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 550px;
    line-height: 1.7;
}

.btn-cta-primary {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232,93,4,0.45);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* =====================================================
   15. CONTACT SECTION
   ===================================================== */
.contact-section {
    background: var(--bg-light);
}

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-sm);
    padding: 18px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,93,4,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text a,
.contact-info-text span {
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

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

.form-group-karan label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-2);
    font-family: var(--font-body);
}

.required {
    color: var(--primary);
}

.form-control-karan {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde3ec;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--dark-2);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-control-karan::placeholder {
    color: #adb5bd;
}

.form-control-karan:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}

.form-control-karan.is-error {
    border-color: #dc3545;
}

.form-error {
    font-size: 12px;
    color: #dc3545;
    font-weight: 500;
    min-height: 16px;
}

.btn-submit-inquiry {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-submit-inquiry:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success-msg {
    display: none;
    background: rgba(76,175,80,0.1);
    border: 1px solid #4caf50;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 20px;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.form-success-msg.show {
    display: flex;
}

/* =====================================================
   16. FOOTER
   ===================================================== */
.site-footer {
    background: var(--dark);
    color: var(--text-light);
}

.footer-main {
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-badges {
    margin-top: 16px;
}

.footer-digital-india {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-digital-india:hover { opacity: 1; }

.footer-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-divider {
    width: 36px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 11px;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-icon {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 18px 0;
    background: rgba(0,0,0,0.2);
}

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

.footer-copy, .footer-credit {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.footer-copy a, .footer-credit a {
    color: var(--primary);
}

.footer-copy a:hover, .footer-credit a:hover {
    color: var(--primary-light);
}

/* =====================================================
   17. FLOATING ELEMENTS
   ===================================================== */

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 9999;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(232,93,4,0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232,93,4,0.5);
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.floating-call img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-call:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Pulse animation for floating elements */
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(232,93,4,0.5); }
    50%       { box-shadow: 0 8px 40px rgba(232,93,4,0.8); }
}

/* =====================================================
   18. SCROLL ANIMATIONS (AOS-like)
   ===================================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-down"]  { transform: translateY(-30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* =====================================================
   19. KEYFRAME ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* =====================================================
   20. INNER PAGE BANNER & BREADCRUMBS
   ===================================================== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 60%, var(--steel) 100%);
    padding: 90px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-dark);
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(232,93,4,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(30,45,64,0.7) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e85d04' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-banner-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.breadcrumb-nav .separator {
    color: rgba(255,255,255,0.25);
    font-size: 11px;
}

.breadcrumb-nav .current {
    color: var(--primary);
    font-weight: 600;
}

/* =====================================================
   21. ABOUT STORY & COMMITMENT SECTION
   ===================================================== */
.about-quote-box {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--steel) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 24px 28px;
    margin: 28px 0;
    box-shadow: var(--shadow-sm);
}

.about-quote-box p {
    color: var(--text-light);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.about-quote-box i {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

/* Plant Locations */
.location-card {
    background: var(--bg-white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    height: 100%;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.location-icon {
    width: 54px;
    height: 54px;
    background: rgba(232,93,4,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.location-details h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.location-details p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.location-badge {
    display: inline-block;
    background: var(--dark-2);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* =====================================================
   22. QUALITY CONTROL & TESTING PROCESS (STEPS)
   ===================================================== */
.qc-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.qc-step-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    position: relative;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.qc-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(232,93,4,0.15);
}

.qc-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.qc-step-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,93,4,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.qc-step-card:hover .qc-step-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.qc-step-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
}

.qc-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.qc-step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.qc-step-highlights {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    border-top: 1px solid var(--border-dark);
    padding-top: 14px;
}

.qc-step-highlights li {
    font-size: 12.5px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.qc-step-highlights li i {
    color: #4caf50;
    font-size: 12px;
}

/* =====================================================
   23. INFRASTRUCTURE & MACHINERY SHOWCASE
   ===================================================== */
.machinery-section {
    background: var(--bg-light);
}

.machinery-category-card {
    background: var(--bg-white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.machinery-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232,93,4,0.3);
}

.machinery-cat-header {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--steel) 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 3px solid var(--primary);
}

.machinery-cat-icon {
    font-size: 24px;
    color: var(--primary);
}

.machinery-cat-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.machinery-cat-body {
    padding: 24px;
}

.machinery-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.machinery-item-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 14px;
    color: var(--dark-2);
    line-height: 1.5;
}

.machinery-item-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.machinery-item-name {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 500;
}

.machinery-item-name i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.machinery-badge {
    background: rgba(232,93,4,0.1);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* =====================================================
   24. STANDARDS & CERTIFICATIONS SHOWCASE
   ===================================================== */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.standard-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.standard-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    background: var(--steel);
}

/* =====================================================
   25. PRODUCTS PAGE & FILTERING STYLES
   ===================================================== */
.product-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.product-filter-btn {
    background: var(--bg-white);
    border: 1.5px solid #e2e8f0;
    color: var(--dark-2);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.product-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232,93,4,0.3);
}

.product-item-card {
    background: var(--bg-white);
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-item-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-item-img-wrap {
    position: relative;
    height: 240px;
    background: #0d1117;
    overflow: hidden;
}

.product-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-item-card:hover .product-item-img-wrap img {
    transform: scale(1.08);
}

.product-capacity-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(232,93,4,0.4);
    z-index: 2;
}

.product-standard-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(14, 21, 35, 0.85);
    backdrop-filter: blur(4px);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.product-item-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-item-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-item-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.product-specs-list {
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1px solid #eef2f6;
}

.product-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.product-spec-row:last-child {
    border-bottom: none;
}

.product-spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.product-spec-val {
    color: var(--dark-2);
    font-weight: 600;
}

.product-action-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-pdf-view,
.btn-pdf-download {
    flex: 1;
    background: var(--primary);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-pdf-view i,
.btn-pdf-download i {
    color: #ffffff;
    font-size: 16px;
}

.btn-pdf-view:hover,
.btn-pdf-download:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,93,4,0.4);
}

.btn-product-inquire {
    flex: 1;
    background: var(--dark-2);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--dark-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-product-inquire:hover {
    background: var(--steel);
    border-color: var(--steel);
    color: var(--primary-light) !important;
    transform: translateY(-2px);
}

/* Modal & Technical Viewer Styles */
.modal-header {
    background: #0a0e17 !important;
    border-bottom: 2px solid var(--primary) !important;
    padding: 18px 24px !important;
}

.modal-header .modal-title,
.modal-header h5,
.modal-header h4,
.modal-header h5.text-white,
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: #ffffff !important;
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.9;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-technical-viewer {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    max-height: 480px;
    overflow-y: auto;
}

.modal-technical-viewer img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.spec-table-modal th {
    background: var(--dark-2) !important;
    color: #ffffff !important;
    font-size: 13.5px;
    padding: 10px 14px;
}

.spec-table-modal td {
    font-size: 13.5px;
    padding: 10px 14px;
    vertical-align: middle;
}

/* =====================================================
   26. DEDICATED GALLERY PAGE & LIGHTBOX STYLES
   ===================================================== */
.gallery-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: var(--bg-white);
    border: 1.5px solid #e2e8f0;
    color: var(--dark-2);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gallery-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232,93,4,0.3);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 35px rgba(0,0,0,0.3), 0 0 0 1px rgba(232,93,4,0.3);
}

.gallery-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #000;
}

.gallery-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .gallery-card-img-wrap img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,14,23,0.9) 0%, rgba(232,93,4,0.4) 60%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0.6);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.gallery-card:hover .gallery-card-zoom-icon {
    transform: scale(1);
}

.gallery-card-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14,21,35,0.85);
    backdrop-filter: blur(4px);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-card-body {
    padding: 16px 20px;
    background: var(--dark-3);
    border-top: 1px solid var(--border-dark);
}

.gallery-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.lightbox-modal .modal-body {
    padding: 0;
    background: #06090e;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    position: relative;
}

.lightbox-modal .modal-body img {
    max-height: 75vh;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(14, 21, 35, 0.85);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lightbox-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(232,93,4,0.5);
}

.lightbox-prev-btn {
    left: 20px;
}

.lightbox-next-btn {
    right: 20px;
}

.lightbox-counter-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* =====================================================
   27. DEDICATED VIDEOS PAGE & VIDEO PLAYER MODAL STYLES
   ===================================================== */
.video-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.video-filter-btn {
    background: var(--bg-white);
    border: 1.5px solid #e2e8f0;
    color: var(--dark-2);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.video-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.video-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232,93,4,0.3);
}

.video-card {
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 35px rgba(0,0,0,0.35), 0 0 0 1px rgba(232,93,4,0.3);
}

.video-card-thumb-wrap {
    position: relative;
    height: 220px;
    background: #000;
    overflow: hidden;
}

.video-card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover .video-card-thumb-wrap img {
    transform: scale(1.08);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,14,23,0.85) 0%, rgba(10,14,23,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-play-btn-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 4px;
    box-shadow: 0 0 25px rgba(232,93,4,0.6);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.25s ease;
}

.video-card:hover .video-play-btn-circle {
    transform: scale(1.15);
    background: #ff6b1a;
    box-shadow: 0 0 35px rgba(232,93,4,0.9);
}

.video-duration-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.video-card-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(14,21,35,0.85);
    backdrop-filter: blur(4px);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--dark-3);
}

.video-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.video-card:hover .video-card-title {
    color: var(--primary-light);
}

.video-card-desc {
    font-size: 13.5px;
    color: var(--text-muted-light);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.video-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-dark);
    font-size: 12.5px;
    color: var(--text-muted-light);
}

.video-watch-link {
    color: var(--primary-light);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

/* Video Player Modal */
.video-modal .modal-content {
    background: #0a0e17;
    border: 1px solid var(--border-dark);
}

.video-modal .modal-body {
    padding: 0;
    background: #000;
}

.video-embed-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-embed-responsive iframe,
.video-embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(14, 21, 35, 0.85);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.video-modal-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(232,93,4,0.5);
}

.video-modal-prev-btn {
    left: 16px;
}

.video-modal-next-btn {
    right: 16px;
}

/* =====================================================
   28. DEDICATED 3D CLIENT SHOWCASE STYLES
   ===================================================== */
.client-hero-featured {
    background: linear-gradient(145deg, #0e1523 0%, #151f33 100%);
    border: 1px solid rgba(232,93,4,0.3);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

.client-hero-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.featured-client-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-client-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,93,4,0.4);
}

.featured-client-badge {
    background: rgba(232,93,4,0.18);
    border: 1px solid rgba(232,93,4,0.4);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-client-name {
    color: #ffffff;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.featured-client-loc {
    color: var(--text-muted-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Client Search & Filter Section */
.client-controls-bar {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-sm);
}

.client-search-input-wrap {
    position: relative;
}

.client-search-input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 18px;
}

.client-search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--dark-2);
    font-family: var(--font-body);
    transition: var(--transition);
}

.client-search-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232,93,4,0.12);
}

.client-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.client-filter-chip {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--steel);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.client-filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.client-filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(232,93,4,0.25);
}

/* 3D Client Cards Grid */
.client-3d-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    perspective: 1000px;
}

.client-3d-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 16px 35px rgba(10,14,23,0.1), 0 0 0 1px rgba(232,93,4,0.2);
}

.client-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 12px;
}

.client-monogram {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--steel) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.client-3d-card:hover .client-monogram {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 6px 15px rgba(232,93,4,0.35);
}

.client-state-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--steel);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.client-state-pill i {
    color: var(--primary);
    font-size: 11px;
}

.client-company-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-2);
    line-height: 1.4;
    margin-bottom: 14px;
    flex: 1;
}

.client-3d-card:hover .client-company-title {
    color: var(--primary-dark);
}

.client-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: var(--text-muted);
}

.client-verified-tag {
    color: #10b981;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.client-counter-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--steel);
}

.client-counter-box strong {
    color: var(--primary);
    font-size: 18px;
}

/* =====================================================
   29. DEDICATED CONTACT US PAGE & CAPTCHA STYLES
   ===================================================== */
.contact-info-panel {
    background: linear-gradient(145deg, #0e1523 0%, #151f33 100%);
    border: 1px solid rgba(232,93,4,0.3);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232,93,4,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-detail-block {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-icon-bubble {
    width: 48px;
    height: 48px;
    background: rgba(232,93,4,0.15);
    border: 1.5px solid rgba(232,93,4,0.4);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-block-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-block-text {
    font-size: 14px;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin: 0;
}

.contact-block-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-block-text a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--steel);
    margin-bottom: 24px;
}

/* Math CAPTCHA UI */
.captcha-container {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.captcha-equation-badge {
    background: var(--dark-2);
    color: var(--primary-light);
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 8px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.captcha-refresh-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: var(--steel);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.captcha-refresh-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: rotate(180deg);
}

.captcha-input-field {
    flex: 1;
    min-width: 140px;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
}

.captcha-input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.12);
}

/* Map Embed */
.contact-map-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #fff;
}

/* =====================================================
   18. PRODUCT SPECIFICATION MODAL STYLES
   ===================================================== */
.spec-table-modal th {
    background-color: #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    width: 40%;
    vertical-align: middle;
}

.spec-table-modal td {
    font-size: 13px;
    color: var(--text-body);
    vertical-align: middle;
}

.modal-technical-viewer img {
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}