/* ==========================================================================
   BHADRA ENGIMECH - COMPLETE HIGH-CONTRAST LIGHT UI/UX & STYLING OVERHAUL
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
    /* Cohesive Brand Palette */
    --brand-navy: #0f172a;
    --brand-navy-light: #1e293b;
    --brand-orange: #f17e01;
    --brand-orange-hover: #d96f00;
    --brand-blue: #2563eb;
    --brand-green: #059669;

    /* Distinct Surface Palette */
    --bg-main: #f1f5f9;
    --bg-alt: #e2e8f0;
    --bg-card: #ffffff;
    --bg-navbar: rgba(255, 255, 255, 0.96);

    /* Text Colors */
    --text-main: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    /* Crisp Strong Borders */
    --border-color: #cbd5e1;
    --border-color-strong: #94a3b8;
    --border-color-glow: rgba(241, 126, 1, 0.5);

    /* Transitions & Corners */
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
    --radius-lg: 14px;
    --radius-md: 8px;
    --radius-sm: 4px;

    /* Elevated Card Shadows */
    --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.1), 0 4px 8px -2px rgba(15, 23, 42, 0.05);
    --shadow-card-hover: 0 20px 40px -10px rgba(241, 126, 1, 0.25), 0 10px 20px -5px rgba(15, 23, 42, 0.1);
    --shadow-glow: 0 0 20px rgba(241, 126, 1, 0.35);
}

/* ==========================================================================
   RESET & TYPOGRAPHY WITH HIDDEN SCROLLBAR
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    width: 100%;
    scroll-behavior: smooth;
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}

/* Hide scrollbar globally for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* Sticky Sidebar Helper Class */
.sticky-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    z-index: 10 !important;
}

/* Global Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

p {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-warning {
    color: var(--brand-orange) !important;
}

.text-success {
    color: var(--brand-green) !important;
}

.text-primary {
    color: var(--brand-orange) !important;
}

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

a:hover {
    color: var(--brand-orange-hover);
}

/* ==========================================================================
   CUSTOM ANIMATED CURSOR
   ========================================================================== */
.custom-cursor-dot,
.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transition: width 0.25s, height 0.25s, background-color 0.25s, opacity 0.25s, border-color 0.25s, transform 0.15s ease-out;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-orange);
}

.custom-cursor-outline {
    width: 34px;
    height: 34px;
    border: 2px solid var(--brand-orange);
    opacity: 0.6;
}

body.cursor-hover .custom-cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--brand-orange);
}

body.cursor-hover .custom-cursor-outline {
    width: 52px;
    height: 52px;
    border-color: var(--brand-orange);
    background-color: rgba(241, 126, 1, 0.08);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .custom-cursor-dot,
    .custom-cursor-outline {
        display: none !important;
    }
}

/* ==========================================================================
   PRELOADER SCREEN (Z-INDEX 999999 TO ALWAYS COVER FLOATING WIDGETS)
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 999999 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--brand-orange);
}

.preloader-logo span {
    color: #059669;
}

.preloader-gears {
    position: relative;
    width: 76px;
    height: 76px;
    margin-bottom: 30px;
}

.gear {
    position: absolute;
    border-radius: 50%;
}

.gear-1 {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(241, 126, 1, 0.2);
    border-top-color: var(--brand-orange);
    border-bottom-color: var(--brand-orange);
    left: 6px;
    top: 6px;
    animation: gear-spin 1.4s linear infinite;
}

.gear-2 {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(5, 150, 105, 0.2);
    border-left-color: #059669;
    border-right-color: #059669;
    left: 18px;
    top: 18px;
    animation: gear-spin-rev 1.1s linear infinite;
}

.preloader-progress {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: var(--brand-orange);
    position: absolute;
}

@keyframes gear-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gear-spin-rev {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* ==========================================================================
   PRO LIGHT GLASSMORPHIC NAVBAR (UNIFIED 0.85REM FONT SIZE FOR MAIN & SUB MENUS)
   ========================================================================== */
/* ==========================================================================
   EXECUTIVE DEEP NAVY & GLASSMORPHIC NAVBAR DESIGN
   ========================================================================== */
/* ==========================================================================
   SLEEK PLATINUM GLASSMORPHIC NAVBAR DESIGN (LIGHT THEME)
   ========================================================================== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 3px solid var(--brand-orange) !important;
    padding: 10px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
}

.navbar-custom.navbar-scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

.navbar-brand-custom {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--brand-orange) !important;
    display: inline-flex;
    align-items: center;
}

.navbar-brand-custom span {
    color: #059669 !important;
}

.navbar-logo {
    height: 46px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar-brand-custom:hover .navbar-logo {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 40px;
    }
}

.nav-link-custom {
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    color: #0f172a !important;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    white-space: nowrap !important;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--brand-orange) !important;
    background-color: rgba(241, 126, 1, 0.08);
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 2px;
    left: 14px;
    background-color: var(--brand-orange);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(241, 126, 1, 0.4);
    transition: var(--transition-smooth);
}

.nav-link-custom:hover::before,
.nav-link-custom.active::before {
    width: calc(100% - 28px);
}

/* Dropdown Menu Styling */
.dropdown-menu-custom {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    display: block;
}

.dropdown:hover > .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SUB-MENU & DROPDOWN LINK FONT STYLE */
.dropdown-item-custom,
.dropdown-menu-custom a,
.dropdown-submenu > a {
    color: #1e293b !important;
    padding: 9px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    transition: var(--transition-fast) !important;
    white-space: normal !important;
    word-wrap: break-word;
}

.dropdown-item-custom:hover,
.dropdown-item-custom.active,
.dropdown-menu-custom a:hover,
.dropdown-menu-custom a.active {
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    color: #ffffff !important;
    padding-left: 20px !important;
}

.dropdown-item-custom:hover i,
.dropdown-item-custom.active i,
.dropdown-menu-custom a:hover i,
.dropdown-menu-custom a.active i {
    color: #ffffff !important;
}

/* Submenu Dropdown & Hover Behavior */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .sub-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    margin-top: -8px !important;
    margin-left: 2px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(10px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    max-height: 330px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    min-width: 250px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15) !important;
    padding: 8px !important;
    z-index: 1000 !important;
}

/* Hover trigger for Submenu on Desktop */
@media (min-width: 992px) {
    .dropdown-submenu:hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }
}

/* Custom Scrollbar SPECIFICALLY for Sub-products Dropdown Menu */
.dropdown-menu-custom.sub-menu::-webkit-scrollbar {
    display: block !important;
    width: 6px !important;
}

.dropdown-menu-custom.sub-menu::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 4px !important;
}

.dropdown-menu-custom.sub-menu::-webkit-scrollbar-thumb {
    background: var(--brand-orange) !important;
    border-radius: 4px !important;
}

.dropdown-menu-custom.sub-menu::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange-hover) !important;
}

.navbar-toggler-custom {
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    background: #ffffff;
}

.navbar-toggler-custom .toggler-icon {
    width: 22px;
    height: 2px;
    background-color: #0f172a;
    display: block;
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.navbar-toggler-custom:not(.collapsed) .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
    background-color: var(--brand-orange);
}

.navbar-toggler-custom:not(.collapsed) .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-custom:not(.collapsed) .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--brand-orange);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff !important;
        border: 1.5px solid #cbd5e1 !important;
        border-radius: var(--radius-lg);
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .nav-link-custom {
        padding: 10px 14px !important;
        border-bottom: 1px solid #f1f5f9;
        color: #0f172a !important;
    }

    .dropdown-menu-custom {
        position: static !important;
        display: none;
        float: none;
        width: 100%;
        background-color: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
        margin-top: 6px !important;
        padding-left: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown-menu-custom.show {
        display: block !important;
    }

    .dropdown-submenu > .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin: 4px 0 8px 12px !important;
        box-shadow: none !important;
        border-left: 2px solid var(--brand-orange) !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
}

/* ==========================================================================
   HERO / CAROUSEL (PRO HIGH-CONTRAST BALANCED GRADIENT OVERLAY)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    overflow: hidden;
    background-color: #0f172a;
}

.hero-carousel {
    height: 100%;
}

.hero-carousel-item {
    height: 100vh;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.65) 55%, rgba(15, 23, 42, 0.3) 100%),
                linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 35%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    background: rgba(241, 126, 1, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(241, 126, 1, 0.3);
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-orange);
}

.hero-title {
    font-size: clamp(2.4rem, 5.8vw, 4.4rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 22px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--brand-orange);
}

.hero-desc {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: #e2e8f0 !important;
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.carousel-indicators-custom {
    margin-bottom: 35px !important;
    z-index: 5;
}

.carousel-indicators-custom [data-bs-target] {
    width: 32px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.carousel-indicators-custom .active {
    background-color: var(--brand-orange);
    width: 55px;
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94a3b8;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-indicator-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    position: relative;
    margin-bottom: 6px;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 7px;
    background-color: var(--brand-orange);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 1.5s ease infinite;
}

@keyframes mouse-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.3; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   BUTTONS & ACTIONS (DEFAULT ORANGE PRICE LIST / INQUIRY)
   ========================================================================== */
.btn-premium {
    padding: 13px 32px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-premium-orange, .btn-primary, .btn-primary-custom, .btn-request-price, .btn-price-list {
    background-color: var(--brand-orange) !important;
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(241, 126, 1, 0.4);
    border-radius: 50px;
}

.btn-premium-orange:hover, .btn-primary:hover, .btn-primary-custom:hover, .btn-request-price:hover, .btn-price-list:hover {
    background: linear-gradient(135deg, #f78d14 0%, #c46300 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 126, 1, 0.55);
    color: #ffffff !important;
}

.btn-premium-outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-outline:hover {
    border-color: var(--brand-orange);
    color: #ffffff !important;
    background-color: var(--brand-orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   SECTION HEADERS (MAIN TEXT ABOVE, CIRCLED BADGE BELOW)
   ========================================================================== */
.section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}

.section-title-wrapper.section-title-center {
    align-items: center;
    text-align: center;
}

/* Main Text ABOVE */
.section-title-wrapper .section-title {
    order: 1;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 10px;
    color: var(--text-main) !important;
}

.section-title span {
    color: var(--brand-orange);
    display: inline-block;
}

/* Underline Indicator fixed under main title */
.section-title::after {
    content: '';
    position: absolute;
    width: 65px;
    height: 3.5px;
    background-color: var(--brand-orange);
    border-radius: 3px;
    bottom: 0;
    left: 0;
}

.section-title-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Circled Badge Text BELOW */
.section-title-wrapper .section-tag {
    order: 2;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-orange);
    margin-top: 6px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(241, 126, 1, 0.12);
    padding: 5px 16px;
    border-radius: 50px;
    border: 1px solid rgba(241, 126, 1, 0.3);
}

.section-title-wrapper .section-desc {
    order: 3;
    color: var(--text-secondary) !important;
    max-width: 650px;
    margin-top: 8px;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Alternate Section Backdrops so white cards stand out cleanly */
.container-fluid.py-5,
section.py-5,
.about-section-wrapper,
.facts-section-wrapper,
.products-section-wrapper,
.applications-section-wrapper,
.features-section-wrapper {
    background-color: var(--bg-main) !important;
    border-bottom: 1px solid #cbd5e1;
}

.container-fluid.py-5:nth-of-type(even),
section.py-5:nth-of-type(even) {
    background-color: var(--bg-alt) !important;
}

/* INNER PAGE BREADCRUMB HEADERS (HIGH-CONTRAST DARK NAVY) */
section[style*="linear-gradient(135deg, #090d16"],
section[style*="background: linear-gradient(135deg, #090d16"],
.breadcrumb-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-bottom: 3.5px solid var(--brand-orange) !important;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.3) !important;
}

section[style*="linear-gradient(135deg, #090d16"] h1,
section[style*="linear-gradient(135deg, #090d16"] .text-white,
.breadcrumb-section h1 {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

section[style*="linear-gradient(135deg, #090d16"] h1 span,
.breadcrumb-section h1 span {
    color: var(--brand-orange) !important;
}

section[style*="linear-gradient(135deg, #090d16"] .text-secondary,
.breadcrumb-section .text-secondary,
.breadcrumb-section a {
    color: #cbd5e1 !important;
}

section[style*="linear-gradient(135deg, #090d16"] .text-primary,
.breadcrumb-section .text-primary {
    color: var(--brand-orange) !important;
    font-weight: 700 !important;
}

/* Strict Text Contrast Rules: NO white text on light section backgrounds */
.container-fluid:not(.footer):not(.copyright-section) .text-white,
section:not(.hero-section):not(.footer):not(.copyright-section):not([style*="linear-gradient(135deg, #090d16"]) .text-white,
.card-premium .text-white,
.contact-info-card .text-white,
.stat-item .text-white,
.about-section .text-white,
.about-card .text-white {
    color: var(--text-main) !important;
}

.container-fluid:not(.footer):not(.copyright-section) .text-secondary,
section:not(.hero-section):not(.footer):not(.copyright-section):not([style*="linear-gradient(135deg, #090d16"]) .text-secondary {
    color: var(--text-secondary) !important;
}

/* FOUNDER & DIRECTOR BADGES STYLING (VIBRANT ORANGE BG WITH WHITE TEXT) */
.reveal-left div[style*="position-absolute bottom-0"],
.founder-director-badge {
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    border-top: 2.5px solid #ffffff !important;
    box-shadow: 0 4px 15px rgba(241, 126, 1, 0.5) !important;
    padding: 10px 14px !important;
}

.reveal-left div[style*="position-absolute bottom-0"] span,
.founder-director-badge span {
    color: #ffffff !important;
    font-weight: 900 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    letter-spacing: 2px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* ==========================================================================
   APPLICATIONS CARDS & NO-OVERFLOW IMAGE FIX
   ========================================================================== */
.team-card {
    background: #ffffff !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-card) !important;
    transition: var(--transition-smooth) !important;
}

.team-card:hover {
    border-color: var(--brand-orange) !important;
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

.team-card .team-body {
    background: #ffffff !important;
}

.team-card .team-body h6 {
    color: var(--text-main) !important;
    font-weight: 800 !important;
}

.team-image-wrapper, .app-image-wrapper {
    height: 150px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    background-color: #cbd5e1 !important;
}

.team-img, .app-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.4s ease-out !important;
}

.team-card:hover .team-img {
    transform: scale(1.08) !important;
}

/* ==========================================================================
   PRO CARDS & PRODUCTS DESIGN (ELEVATED & DISTINGUISHABLE)
   ========================================================================== */
.card-premium {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--brand-orange);
    transition: var(--transition-smooth);
}

.card-premium-image-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.card-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.card-premium:hover .card-premium-img {
    transform: scale(1.06);
}

.card-premium-body {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.card-premium-category {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-orange);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.card-premium-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main) !important;
}

.card-premium-desc {
    color: var(--text-secondary) !important;
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #cbd5e1;
    padding-top: 16px;
}

.card-premium-link {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-orange) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-premium:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--brand-orange) !important;
    box-shadow: var(--shadow-card-hover);
}

/* Filter Buttons */
.filter-btn-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: var(--text-secondary);
    padding: 9px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(241, 126, 1, 0.35);
}

/* ==========================================================================
   STAT COUNTERS & FACTS
   ========================================================================== */
.stat-item {
    padding: 24px 18px;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--brand-orange);
}

.stat-item:hover {
    border-color: var(--brand-orange) !important;
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--brand-orange) !important;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   CONTACT DETAILS & FORMS
   ========================================================================== */
.contact-info-card {
    background-color: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-lg);
    padding: 34px;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(241, 126, 1, 0.1);
    color: var(--brand-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-details h6 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-main) !important;
}

.contact-info-details p,
.contact-info-details a {
    color: var(--text-secondary) !important;
    margin: 0;
    font-size: 0.93rem;
}

.contact-form-wrapper {
    background-color: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: var(--radius-lg);
    padding: 38px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.contact-form-wrapper:hover {
    border-color: var(--brand-orange) !important;
}

.form-group-custom {
    position: relative;
    margin-bottom: 22px;
}

.form-input-custom {
    width: 100%;
    background-color: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none !important;
}

.form-input-custom:focus {
    border-color: var(--brand-orange);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 126, 1, 0.15);
}

.form-label-custom {
    position: absolute;
    left: 18px;
    top: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.form-input-custom:focus ~ .form-label-custom,
.form-input-custom:not(:placeholder-shown) ~ .form-label-custom,
.form-input-custom:autofill ~ .form-label-custom,
.form-input-custom:-webkit-autofill ~ .form-label-custom {
    top: -10px;
    left: 14px;
    font-size: 0.78rem;
    padding: 0 6px;
    background-color: #ffffff;
    color: var(--brand-orange);
    font-weight: 800;
    border-radius: 4px;
}

/* ==========================================================================
   TECHNICAL TABLES & SPECIFICATIONS (NAVY BORDER ON FIRST TABLE ONLY)
   ========================================================================== */
.specifications,
#product-specifications {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    margin-bottom: 30px;
    overflow: visible !important;
}

/* 
   Use box-shadow to simulate a navy border on the specs table ONLY.
   This works regardless of border-collapse and doesn't affect sibling divs.
   Targets only the FIRST table directly inside #product-specifications.
*/
#product-specifications > table:first-of-type,
.specifications .table-responsive > table:first-of-type {
    box-shadow: 0 0 0 2.5px #0f172a, 0 6px 24px rgba(15, 23, 42, 0.2) !important;
    border-radius: var(--radius-md) !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

/* Remove .specs-table-wrapper style (no longer used) */
.specs-table-wrapper {
    border: none !important;
    box-shadow: none !important;
}

/* All .table-responsive and wrapper divs: no border, no shadow */
.table-responsive,
.specifications .table-responsive,
#product-specifications .table-responsive {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    overflow-x: auto;
    background-color: transparent !important;
    margin-bottom: 0;
}

/* ==========================================================================
   TYPES OF PRODUCTS CARDS & HEADINGS FIX (REMOVE GREY BG, FULL READABILITY)
   ========================================================================== */
#product-specifications .card-premium,
.specifications .card-premium,
.specifications .mt-5 .card-premium,
#product-specifications .card,
.specifications .card,
.card-premium[style*="rgba(255,255,255"] {
    background-color: #ffffff !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06) !important;
    transition: var(--transition-smooth) !important;
}

#product-specifications .card-premium:hover,
.specifications .card-premium:hover,
.card-premium[style*="rgba(255,255,255"]:hover {
    border-color: var(--brand-orange) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(241, 126, 1, 0.15) !important;
}

/* Ensure ALL headings and text inside specs and types of products are crisp dark */
.specifications h3,
.specifications h4,
.specifications h5,
.specifications h6,
#product-specifications h3,
#product-specifications h4,
#product-specifications h5,
#product-specifications h6,
.specifications .text-white,
#product-specifications .text-white,
.specifications h3.text-white,
.specifications h6.text-white {
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* Image wrappers inside sub-product cards */
#product-specifications .rounded-3,
.specifications .rounded-3,
.specifications div[style*="height: 150px"] {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.table-responsive .table,
.table-responsive table {
    margin-bottom: 0 !important;
    font-size: 0.9rem !important;
    color: #0f172a !important;
    background-color: #ffffff !important;
}

.table-responsive th, 
.table-responsive td,
.table-dark th,
.table-dark td {
    padding: 14px 18px !important;
    border-color: #e2e8f0 !important;
}

/* Main Section Title / Colspan Table Headers */
.table th.text-warning[colspan],
.table td.text-warning[colspan],
.table-dark th.text-warning[colspan],
.table-dark td.text-warning[colspan],
.table tr:first-child th[colspan],
.table thead th {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: #f17e01 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-bottom: 3.5px solid #f17e01 !important;
}

/* Sub-category Header Rows */
.table td.bg-dark.text-warning[colspan],
.table th.bg-dark.text-warning[colspan],
.table tr th[colspan]:not(:first-child),
.table tr td[colspan] {
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Left Parameter Column Headers */
.table th.bg-dark,
.table-dark th[scope="row"],
.table-responsive th[scope="row"],
.table-responsive tbody th,
.table-responsive td.ps-4.text-secondary {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    font-family: 'Outfit', sans-serif !important;
    border-right: 2px solid #e2e8f0 !important;
}

/* Data Cells */
.table td.text-secondary,
.table-dark td,
.table-responsive td {
    background: #ffffff !important;
    color: #334155 !important;
    font-weight: 600 !important;
}

.table-responsive td.pe-4.text-primary,
.table-responsive td a {
    color: #f17e01 !important;
    font-weight: 700 !important;
}

/* Alternating Row Stripes */
.table-responsive tbody tr:nth-child(even) td {
    background-color: #f8fafc !important;
}

.table-responsive tbody tr:nth-child(even) th[scope="row"] {
    background-color: #f1f5f9 !important;
}

/* PRO COLORFUL TABLE ROW HOVER (NO GREY - VIBRANT ORANGE SHIMMER) */
.table-responsive tbody tr {
    transition: background-color 0.2s ease, transform 0.15s ease !important;
}

.table-hover > tbody > tr:hover > *,
.table-responsive tbody tr:hover,
.table-responsive tbody tr:hover td,
.table-responsive tbody tr:hover th,
.table-responsive tbody tr:hover td.ps-4.text-secondary {
    background-color: #ffedd5 !important;
    background: linear-gradient(90deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%) !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    box-shadow: inset 0 0 0 9999px rgba(241, 126, 1, 0.12) !important;
}

.table-responsive tbody tr:hover th[scope="row"],
.table-responsive tbody tr:hover td.ps-4.text-secondary {
    color: #d96f00 !important;
    border-right-color: #f17e01 !important;
}

.table-responsive tbody tr:hover td.pe-4.text-primary,
.table-responsive tbody tr:hover td a {
    color: #d96f00 !important;
    font-weight: 800 !important;
    padding-left: 20px !important;
    transition: padding-left 0.2s ease, color 0.2s ease !important;
}

/* ==========================================================================
   UNIFIED DEEP NAVY FOOTER WITH ORANGE ICONS
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-top: 3px solid var(--brand-orange);
    padding: 75px 0 35px;
    color: #f1f5f9 !important;
}

.footer p, .footer span, .footer div, .footer a, .footer .text-light {
    color: #f1f5f9 !important;
    font-size: 0.92rem;
}

.footer h5, .footer h6, .footer .text-white {
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* Footer info/nav icons: Electric Orange */
.footer-links a i,
.footer-links li i,
.footer p i,
.footer span i,
.footer div > i:not(.footer-social-link i) {
    color: #f17e01 !important;
}

/* Social circle button icons: always WHITE (overrides .footer i) */
.footer-social-link i,
.footer-social-link .fa,
.footer-social-link .fab,
.footer-social-link .fas {
    color: #ffffff !important;
}

.footer .btn-square {
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 12px rgba(241, 126, 1, 0.35) !important;
}

.footer .btn-square:hover {
    transform: translateY(-3px) scale(1.06) !important;
    box-shadow: 0 8px 20px rgba(241, 126, 1, 0.5) !important;
}

.footer .btn-square i {
    color: #ffffff !important;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--brand-orange) !important;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.footer-logo span {
    color: #ffffff !important;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    transition: var(--transition-smooth);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.06);
}

.footer-desc {
    color: #cbd5e1 !important;
    font-size: 0.92rem;
    margin-bottom: 22px;
    max-width: 320px;
    line-height: 1.65;
}

/* Connect With Us Title */
.footer-social-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-orange) !important;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-title::before {
    content: '';
    width: 22px;
    height: 2.5px;
    background-color: var(--brand-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Footer Social Circles — identical style to left floating ribbon */
.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(241, 126, 1, 0.4);
    text-decoration: none !important;
}

.footer-social-link i {
    color: #ffffff !important;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: var(--brand-orange) !important;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(241, 126, 1, 0.55);
}

.footer-social-link:hover i {
    color: var(--brand-orange) !important;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff !important;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--brand-orange);
    border-radius: 2px;
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a, .footer .btn-link {
    color: #cbd5e1 !important;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover, .footer .btn-link:hover {
    color: #ffffff !important;
    padding-left: 6px;
}

.footer-links a:hover i, .footer .btn-link:hover i {
    transform: translateX(4px);
}

.copyright-section {
    background-color: #090e1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.copyright-text {
    color: #94a3b8 !important;
    font-size: 0.85rem;
    margin: 0;
}

.copyright-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.copyright-links a {
    color: #cbd5e1 !important;
    font-size: 0.88rem;
    font-weight: 600;
    margin-left: 0 !important;
    transition: var(--transition-fast);
}

.copyright-links a:hover {
    color: var(--brand-orange) !important;
}

/* ==========================================================================
   FIXED FLOATING WIDGETS (NO WHITE BORDER, EXPAND ON HOVER WHATSAPP)
   ========================================================================== */
.floating-socials {
    position: fixed;
    left: 20px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 991px) {
    .floating-socials {
        display: none;
    }
}

/* Floating Social Links on Left Ribbon - NO WHITE BORDER */
.floating-social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    border: none !important;
    border-radius: 50%;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(241, 126, 1, 0.4);
}

.floating-social-link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: var(--brand-orange) !important;
    transform: translateX(6px) scale(1.08);
    box-shadow: 0 8px 25px rgba(241, 126, 1, 0.55);
}

/* Floating WhatsApp Widget - NO WHITE BORDER, EXPANDS ON HOVER */
.whatsapp-float-widget {
    position: fixed !important;
    right: 25px !important;
    bottom: 88px !important;
    z-index: 99999 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: none !important;
    height: 50px !important;
    width: 50px !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s ease-out, box-shadow 0.25s ease-out !important;
    text-decoration: none !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    padding: 0 !important;
}

.whatsapp-float-widget i {
    font-size: 1.65rem !important;
    color: #ffffff !important;
    min-width: 50px !important;
    text-align: center !important;
}

.whatsapp-float-widget span {
    opacity: 0 !important;
    max-width: 0 !important;
    transform: translateX(10px);
    transition: opacity 0.35s ease, max-width 0.35s ease, transform 0.35s ease !important;
    color: #ffffff !important;
}

.whatsapp-float-widget:hover {
    width: 175px !important;
    padding-right: 18px !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65) !important;
}

.whatsapp-float-widget:hover span {
    opacity: 1 !important;
    max-width: 120px !important;
    transform: translateX(0) !important;
}

/* Back to Top Arrow-Up Button - NO WHITE BORDER */
.back-to-top-progress {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #f17e01 0%, #d96f00 100%) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(241, 126, 1, 0.45) !important;
}

.back-to-top-progress i {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    transition: transform 0.25s ease !important;
}

.back-to-top-progress svg {
    display: none !important;
}

.back-to-top-progress:hover {
    background: linear-gradient(135deg, #f78d14 0%, #c46300 100%) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(241, 126, 1, 0.65) !important;
}

.back-to-top-progress:hover i {
    transform: translateY(-3px) !important;
    color: #ffffff !important;
}

.floating-inquiry-btn {
    display: none !important;
}

/* ==========================================================================
   PROGRESSIVE SCROLL REVEAL ANIMATIONS
   ========================================================================== */
body.js-enabled .reveal-up,
body.js-enabled .reveal-left,
body.js-enabled .reveal-right,
body.js-enabled .stagger-cards-wrapper .card-premium,
body.js-enabled .stagger-cards-wrapper .value-card,
body.js-enabled .stagger-cards-wrapper .team-card,
body.js-enabled .stagger-cards-wrapper .stat-item,
body.js-enabled .timeline-content {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-enabled .reveal-up {
    transform: translateY(30px);
}

body.js-enabled .reveal-left {
    transform: translateX(-40px);
}

body.js-enabled .reveal-right {
    transform: translateX(40px);
}

body.js-enabled .reveal-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* ==========================================================================
   PRECISION METAL SOLUTIONS - PREMIUM VIDEO & MODAL POPUP STYLING
   ========================================================================== */
.video-preview-card {
    cursor: pointer;
    background: #0f172a;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.25);
}

.video-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(241, 126, 1, 0.35);
}

.video-preview-img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.video-preview-card:hover .video-preview-img {
    transform: scale(1.05);
}

/* Pulsing Play Button */
.btn-video-play {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f17e01 0%, #ff931e 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(241, 126, 1, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.btn-video-play .play-icon {
    font-size: 1.6rem;
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.video-preview-card:hover .btn-video-play {
    transform: scale(1.15);
    background: linear-gradient(135deg, #ff931e 0%, #f17e01 100%);
    box-shadow: 0 15px 35px rgba(241, 126, 1, 0.75), inset 0 2px 6px rgba(255, 255, 255, 0.6);
}

.video-preview-card:hover .btn-video-play .play-icon {
    transform: scale(1.1);
}

/* Ripple Rings Animation */
.video-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(241, 126, 1, 0.75);
    animation: videoPulse 2.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

.video-pulse-ring.pulse-1 {
    animation-delay: 0s;
}

.video-pulse-ring.pulse-2 {
    animation-delay: 0.8s;
}

@keyframes videoPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.9;
        border-width: 3px;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
        border-width: 1px;
    }
}

.blink-dot {
    animation: blinkAnimation 1.5s infinite ease-in-out;
}

@keyframes blinkAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.font-outfit {
    font-family: 'Outfit', sans-serif !important;
}

/* Video Modal HTML5 Player Styling */
.video-modal-content {
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7) !important;
}

#facilityVideoPlayer {
    outline: none;
    border-radius: 8px;
}



