@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
﻿


:root {
    /* Industrial Color Palette */
    --primary: #0D2853;      /* Blue */
    --primary-rgb: 13, 40, 83;
    --secondary: #ffbf00;    /* Yellow */
    --secondary-rgb: 255, 191, 0;
    --accent: #D22622;       /* Red */
    --accent-rgb: 210, 38, 34;
    
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e9ecf1;
    
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #a0aec0;
    --text-light: #ffffff;
    
    --border-color: rgba(13, 40, 83, 0.12);
    --border-glow: rgba(255, 191, 0, 0.3);
    
    /* Modern Glassmorphism Settings (Copied from Reference) */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --header-glass-bg: var(--primary); /* Removed transparency */
    
    /* Typography */
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    /* Modern Transitions & Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary);
    font-family: var(--font-body) !important;
    line-height: 1.65;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Base Utility Fixes */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    border-radius: 50% !important;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   Glassmorphism Navigation (Reference Extracted)
   ========================================= */

.netal-header-transparent {
    background: var(--primary) !important; /* Solid blue, no glass */
    position: relative !important; /* Ensures it pushes the hero down */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition-smooth);
}

.netal-header-top {
    background: var(--secondary) !important;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-body);
}

.netal-main-menu ul li a {
    font-family: var(--font-heading) !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important; /* Reduced from 600 to 500 */
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-fast) !important;
}

/* Nav Link Hover Animation */
.netal-main-menu ul li a:hover, .netal-main-menu ul li a.active {
    color: var(--secondary) !important;
}

#navbarCollapse {
    background: var(--primary) !important;
    border-color: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(16px);
    border-radius: 12px !important;
    box-shadow: var(--shadow-lg);
}

/* =========================================
   Cinematic Hero Overlays & Animations
   ========================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 191, 0, 0.1); }
    50% { box-shadow: 0 0 18px rgba(255, 191, 0, 0.4); }
}

.carousel-item img {
    filter: brightness(0.7) contrast(1.1) !important;
}

.carousel-caption {
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    bottom: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding-bottom: 12vh !important; /* Pushes the vertically centered text slightly up */
}

.carousel-caption h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 700 !important;
}

/* =========================================
   Modern Glass Product Cards (Room-item)
   ========================================= */
.room-item {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px !important;
    box-shadow: var(--glass-shadow) !important;
    transition: var(--transition-smooth) !important;
    transform: translateY(0);
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
}

.room-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 40, 83, 0.12) !important;
    border-color: var(--secondary) !important;
}

/* Ensure flex growth for button overlap fix on mobile */
.room-item > .p-4.mt-2 {
    height: auto !important;
    flex-grow: 1 !important;
    min-height: calc(100% - 250px);
}

/* Image Zoom */
.room-item .position-relative {
    overflow: hidden;
}

.room-item .position-relative img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.room-item:hover .position-relative img {
    transform: scale(1.08);
}

/* Pricing Tag Modernization */
.room-item small[style*='background: #D22622'] {
    background: var(--accent) !important;
    border-radius: 20px !important;
    padding: 6px 16px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(210, 38, 34, 0.4) !important;
    transition: var(--transition-smooth) !important;
    border: 1px solid rgba(255,255,255,0.2);
}

.room-item:hover small[style*='background: #D22622'] {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 191, 0, 0.6) !important;
}

/* =========================================
   Premium Buttons
   ========================================= */
.btn, .netal-btn {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover, .netal-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.netal-btn {
    background: var(--accent) !important;
    color: white !important;
}
.netal-btn:hover {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}

.btn-primary {
    background: var(--primary) !important;
    color: white !important;
}

/* Star Rating Animation */
.room-item .fa-star {
    transition: transform 0.2s;
    color: var(--secondary) !important;
}

.room-item:hover .fa-star {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 191, 0, 0.5));
}

.room-item:hover .fa-star:nth-child(1) { transition-delay: 0.05s; }
.room-item:hover .fa-star:nth-child(2) { transition-delay: 0.1s; }
.room-item:hover .fa-star:nth-child(3) { transition-delay: 0.15s; }
.room-item:hover .fa-star:nth-child(4) { transition-delay: 0.2s; }
.room-item:hover .fa-star:nth-child(5) { transition-delay: 0.25s; }

/* =========================================
   Mobile Adjustments
   ========================================= */
@media (max-width: 991px) {
    .netal-header-transparent {
        background: var(--header-glass-bg) !important;
    }
}
@media (max-width: 576px) {
    .back-to-top {
        z-index: 1050; 
        bottom: 15px;
        right: 15px;
    }
    .room-item .d-flex.justify-content-between.mt-auto {
        flex-direction: column;
        gap: 12px;
    }
    .room-item .btn {
        width: 100%;
        text-align: center;
        padding: 12px !important;
    }
    h1 { font-size: 2.2rem !important; }
}

/* Performance Optimizations */
img {
    content-visibility: auto;
}
.room-item {
    content-visibility: auto;
    contain-intrinsic-size: 300px;
}


/* =========================================
   User Request: 7 Tweaks
   ========================================= */

/* 1. Minimal Carousel Arrows & Moved Up */
.carousel-control-prev, .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5) !important; /* Blue transparent */
    top: 40% !important;
    transform: translateY(-50%) !important;
    opacity: 0.8 !important;
    margin: 0 20px;
    transition: var(--transition-smooth) !important;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--accent) !important; /* Red hover */
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: brightness(0) invert(1) !important; /* Ensure arrows are white */
}
/* Custom hero & product slider buttons - always show white icon, red bg on hover */
button[data-bs-slide]:not(.carousel-control-prev):not(.carousel-control-next),
button[onclick*="moveSlider"] {
    opacity: 1 !important;
}
button[data-bs-slide]:not(.carousel-control-prev):not(.carousel-control-next) i,
button[onclick*="moveSlider"] i {
    color: #fff !important;
    opacity: 1 !important;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 1.2rem !important;
    height: 1.2rem !important;
}

/* 2 & 7. Contact Header Gradient & Thinner */
.netal-header-top {
    background: radial-gradient(circle at 50% 50%, #ffffff, #08938e) !important;
    padding: 2px 0 !important;
}
.netal-header-info-left ul, .netal-header-info-right ul {
    margin-bottom: 0 !important;
}
.netal-header-info-left ul li, .netal-header-info-right ul li {
    padding: 2px 0 !important;
}
#note small {
    line-height: 1.2 !important;
}

/* 3. Get Latest Price Z-Index Fix */
.room-item small[style*='background: #D22622'],
.room-item small[style*='background: var(--accent)'] {
    position: relative !important;
    z-index: 10 !important;
}

/* 4. FontAwesome Stars Fix */
.fa-star {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
}


/* =========================================
   User Request: 8 Tweaks
   ========================================= */

/* 1. Mobile Menu Color */
#navbarCollapse {
    background: #f0f2f5 !important;
}
#navbarCollapse .nav-item {
    color: #000 !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}

/* 2. Phone Icon Gradient */
#phone-tada .fa-phone-alt {
    background: radial-gradient(circle at 50% 50%, #ffffff, #08938e) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* 3. Body Background */
body {
    background: radial-gradient(circle at 50% 50%, #ffffff, #c1c8d6) !important;
    background-attachment: fixed !important;
}

/* 4. Badges Styling */
.carousel-caption .badge {
    background: #08938e !important;
    border-color: #08938e !important;
    color: #000 !important;
}
.carousel-caption .badge i {
    color: #000 !important;
}

/* 5. GET A QUOTE Button */
.netal-btn {
    background: #08938e !important;
    color: #000 !important;
}
.netal-btn:hover {
    background: #000 !important;
    color: #fff !important;
}

/* 6. Tailored To Container (Custom Class) */
.custom-req-container {
    background: var(--primary) !important;
    border-top: 4px solid #08938e !important;
    border-bottom: 4px solid #08938e !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}
.custom-req-container h5, .custom-req-container h2 {
    color: #08938e !important;
}

/* 7. Footer Styling */
.netal-footer {
    background: var(--primary) !important;
}
.netal-footer + .container-fluid {
    background: radial-gradient(circle at 50% 50%, #ffffff, #08938e) !important;
}
.netal-footer + .container-fluid p,
.netal-footer + .container-fluid a,
.netal-footer + .container-fluid span {
    color: #000 !important;
    font-weight: 600 !important;
}
.netal-footer + .container-fluid a.border-bottom {
    border-color: #000 !important;
}

/* 8. Sticky Header */
.netal-header-transparent {
    position: sticky !important;
    top: 0;
    z-index: 1050 !important;
}


/* =========================================
   User Request: Tweaks 4 & 5
   ========================================= */

/* Task 4: Moving call button icon to white */
#phone-tada .fa-comment-dots {
    color: #ffffff !important;
}

/* Task 5: Top header black, text white, icons #08938e */
.netal-header-top {
    background: #000000 !important;
}
.netal-header-info-left ul li, 
.netal-header-info-right .header-social li a,
.netal-header-top small {
    color: #ffffff !important;
}
.netal-header-info-left i, 
.netal-header-info-right i,
.netal-header-info-right .header-social li a i {
    color: #08938e !important;
}


/* Hero Alignment to match Netal Logo */
.hero-align {
    padding: 0 100px;
}
@media (max-width: 1199px) { .hero-align { padding: 0 50px; } }
@media (max-width: 991px) { .hero-align { padding: 0 20px; } }




/* =========================================
   NEW INDUSTRIAL FOOTER
   ========================================= */

.industrial-heading {
    font-family: 'Montserrat', sans-serif !important;
}

.callback-box {
    background: #ffffff;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: -60px; /* Overlap footer */
    position: relative;
    z-index: 15;
    border-top: 5px solid #08938e;
}

.hex-icon-wrapper {
    position: relative;
    width: 80px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}






.hex-icon {
    background: #242b35;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #08938e;
    box-shadow: inset 0 0 0 4px #242b35, inset 0 0 0 6px #08938e;
}

.callback-form .form-control {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
}
.callback-form .input-group-text {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}
.callback-form .submit-btn {
    background: #08938e;
    color: #000;
    border-radius: 0;
    height: 50px;
    padding: 0 25px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}
.callback-form .submit-btn:hover {
    background: #000;
    color: #fff;
}

.footer-industrial {
    background: #242b35 !important;
    position: relative;
    z-index: 1;
}

.social-box {
    width: 40px;
    height: 40px;
    background: #2f3742;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 10px;
    border-radius: 2px;
    transition: 0.3s;
    text-decoration: none;
}
.social-box:hover {
    background: #08938e;
    color: #000;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    transition: 0.3s;
    opacity: 0.8;
}
.footer-links a i {
    color: #08938e;
    margin-right: 10px;
    font-size: 12px;
}
.footer-links a:hover {
    color: #08938e;
    opacity: 1;
}

.copyright-bar {
    background: #1d232c;
    border-top: 1px solid rgba(8, 147, 142, 0.2);
}


/* =========================================
   User Request: Header Colors
   ========================================= */

/* Top Header */
.netal-header-top {
    background: #0D2853 !important;
}
.netal-header-info-left ul li, 
.netal-header-info-right .header-social li a,
.netal-header-top small {
    color: #ffffff !important;
}
.netal-header-info-left i, 
.netal-header-info-right i,
.netal-header-info-right .header-social li a i {
    color: #ffffff !important;
}

/* Bottom Header Background */
.netal-header-transparent {
    background: #f1f1f1 !important;
}

/* Navigation Links (Pages) in Bottom Header */
.netal-main-menu ul li a {
    color: #0D2853 !important;
}
.netal-main-menu ul li a:hover {
    color: #D22622 !important;
}

/* Logo text */
.logo h3 {
    color: #0D2853 !important;
}

/* Have any questions & Phone number text */
.d-flex.flex-column span {
    color: #0D2853 !important;
}

/* Mobile menu toggle button */
.navbar-toggler span.fa-bars {
    color: #0D2853 !important;
}
.navbar-toggler {
    border-color: #0D2853 !important;
}

/* Mobile menu dropdown */
#navbarCollapse {
    background: #f1f1f1 !important;
    border-color: #e0e0e0 !important;
}
#navbarCollapse .nav-item {
    color: #0D2853 !important;
}


/* =========================================
   PREMIUM INDUSTRIAL REDESIGN CSS
   ========================================= */



/* Floating animation for hero image */
@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

/* Navbar glass effect */
.sticky-top.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Nav Link Hovers */
.navbar-nav .nav-link {
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #D22622 !important;
}


/* Ensure the dropdown arrow is visible and styled properly */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.15em;
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-left: 0.4em solid transparent;
}

/* Button Animations */
.btn-primary-blue {
    transition: 0.3s;
}
.btn-primary-blue:hover {
    background-color: #0F172A !important;
    color: #FFFFFF !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3) !important;
}
.btn-outline-navy {
    transition: 0.3s;
}
.btn-outline-navy:hover {
    background-color: #0F172A !important;
    color: #FFFFFF !important;
}
.btn-gold:hover {
    background-color: #0F172A !important;
    color: #FFFFFF !important;
}

/* Top bar social hover */
.top-social a {
    transition: 0.3s;
}
.top-social a:hover i {
    color: #08938e !important;
}

/* Reset font families for specific elements to match redesign */
body {
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}


/* Force brand red for primary elements on Contact/About pages */
.text-primary { color: #D22622 !important; }
.bg-primary { background-color: #D22622 !important; }
.border-primary { border-color: #D22622 !important; }

/* Product Slider Scrollbar Hide */
#productSlider::-webkit-scrollbar { display: none; }
#productSlider { -ms-overflow-style: none; scrollbar-width: none; }
.product-slide .room-item { height: 100%; }

/* Hero & Product Slider Arrow Hover - Red on Hover */
#newHeroSlider ~ button i,
button[data-bs-target='#newHeroSlider'] i,
button[onclick*='moveSlider'] i {
    transition: color 0.25s ease;
}
button[data-bs-target='#newHeroSlider']:hover i,
button[onclick*='moveSlider']:hover i {
    color: #D22622 !important;
}

/* Force white icons always visible inside custom slider arrow buttons */
button[data-bs-slide] i,
button[onclick] i {
    color: #fff !important;
    opacity: 1 !important;
}
button[data-bs-slide]:hover,
button[onclick]:hover {
    opacity: 1 !important;
}

/* Product slider buttons - force white icon always visible */
#prodPrevBtn i,
#prodNextBtn i {
    color: #fff !important;
    opacity: 1 !important;
}
#prodPrevBtn,
#prodNextBtn {
    opacity: 1 !important;
}

/* Team Social Icons Hover */
.team-item .social-icons {
    opacity: 0;
    transition: 0.3s ease;
}
.team-item:hover .social-icons {
    opacity: 1;
}

/* Team Card Premium Hover Effects */
.team-item {
    transition: all 0.4s ease-in-out;
}
.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.15) !important;
}
.team-item img {
    transition: transform 0.5s ease;
}
.team-item:hover img {
    transform: scale(1.08);
}

/* --- Retail Racks Product Card Component --- */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(13, 40, 83, 0.1);
    border-color: rgba(13, 40, 83, 0.3);
}
.product-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
    transform: scale(1.08);
}
.product-card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-body h5 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.4;
}
.product-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

/* --- Product Page Image Slider overrides --- */
.product-image-slider .carousel-item {
    padding: 0;
}
.product-image-slider img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
/* --- Mega Menu --- */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    max-width: 90vw;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    display: flex;
    gap: 30px;
    border: 1px solid #e2e8f0;
}
.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-menu-cols {
    display: flex;
    gap: 30px;
    flex: 1;
}
.mega-menu-col {
    flex: 1;
}
.mega-menu-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
    padding-bottom: 5px;
}


.mega-menu-promo {
    width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.mega-menu-promo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-menu-promo-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
    width: 100%;
}
.mega-menu-promo-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}
.mega-menu-promo-content p {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin-bottom: 15px;
}
.mega-menu-promo-content .btn {
    font-size: 12px;
    padding: 6px 15px;
}
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        flex-direction: column;
        box-shadow: none;
        padding: 15px;
        display: none;
    }
    .nav-item.dropdown:hover .mega-menu {
        display: flex;
        transform: none;
    }
    .mega-menu-cols {
        flex-direction: column;
        gap: 15px;
    }
    .mega-menu-promo {
        width: 100%;
        height: 200px;
    }
}


/* Custom Inner Carousel Buttons (from retail-racks/index.html) */
.product-card-img {
    position: relative;
}



/* --- Updated Button Styles --- */
.btn-details {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #0D2853 !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}
.btn-details:hover {
    background: #001b52 !important;
    color: #ffffff !important;
}
.btn-quote {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #28a745 !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-quote:hover {
    background: #218838 !important;
    color: #ffffff !important;
}

/* =========================================
   Minimal Breadcrumb Override (Global)
   ========================================= */
.container-fluid.bg-light:has(.breadcrumb) {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important; /* Tighten bottom gap */
}
.breadcrumb {
    font-size: 13px !important;
    margin-bottom: 0 !important;
}
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}


/* Related Products Slider Owl Nav Styling (Globally applied) */
.related-products-slider .owl-nav {
    margin: 0 !important;
}
.related-products-slider .owl-nav .owl-prev,
.related-products-slider .owl-nav .owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.related-products-slider .owl-nav .owl-prev:hover,
.related-products-slider .owl-nav .owl-next:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(13, 40, 83,0.2) !important;
}
.related-products-slider .owl-nav .owl-prev {
    left: -15px !important;
}
.related-products-slider .owl-nav .owl-next {
    right: -15px !important;
}
.related-products-slider .owl-nav i {
    font-size: 16px !important;
}
@media (max-width: 768px) {
    .related-products-slider .owl-nav .owl-prev { left: 0px !important; }
    .related-products-slider .owl-nav .owl-next { right: 0px !important; }
}



/* Header Logo Sizing */
.header-logo-img {
    max-height: 60px;
    margin-top: -5px;
    margin-bottom: -5px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 991px) {
    .header-logo-img {
        max-height: 45px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* Footer Logo Sizing */
.footer-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}
@media (max-width: 991px) {
    .footer-logo-img {
        max-height: 75px !important;
    }
}



/* CTA Button Consistency & Hover Language */
.btn-primary-cta {
    /* Base styles are inline, we just add hover */
}
.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 38, 34, 0.6) !important;
}

.btn-secondary-outline {
    background: transparent;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255,255,255,0.6);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-secondary-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
}







/* =========================================
   Unified Global Carousel Button Styles
   ========================================= */
.carousel-control-prev, .carousel-control-next,
.product-card-img .carousel-control-prev, .product-card-img .carousel-control-next,
#productGallery .carousel-control-prev, #productGallery .carousel-control-next {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0.9 !important;
    border: none !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.25s, opacity 0.3s ease, transform 0.2s !important;
    z-index: 20 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35) !important;
}

.carousel-control-prev,
.product-card-img .carousel-control-prev,
#productGallery .carousel-control-prev {
    left: 15px !important;
}

.carousel-control-next,
.product-card-img .carousel-control-next,
#productGallery .carousel-control-next {
    right: 15px !important;
}

/* Hover State */
.carousel-control-prev:hover, .carousel-control-next:hover,
.product-card-img .carousel-control-prev:hover, .product-card-img .carousel-control-next:hover,
#productGallery .carousel-control-prev:hover, #productGallery .carousel-control-next:hover {
    background: #D22622 !important;
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.05) !important;
}

/* Icon / Arrow Styling */
.carousel-control-prev-icon, .carousel-control-next-icon,
.product-card-img .carousel-control-prev-icon, .product-card-img .carousel-control-next-icon,
#productGallery .carousel-control-prev-icon, #productGallery .carousel-control-next-icon {
    width: 1.5rem !important;
    height: 1.5rem !important;
    filter: brightness(0) invert(1) !important;
    background-size: 100% !important;
    margin: 0 !important;
}

/* Exception for Desktop Hero Slider which has padding */
#newHeroSlider .carousel-control-prev {
    left: 20px !important;
}
#newHeroSlider .carousel-control-next {
    right: 20px !important;
}






/* =========================================
   MONTSERRAT + MONTSERRAT PROFESSIONAL TYPOGRAPHY
   ========================================= */

/* --- MONTSERRAT: Headings, Nav, Buttons, CTAs --- */

/* Hero headings - Bold, commanding */
.carousel-caption h1,
.carousel-caption .display-1,
.hero-section h1,
.page-header h1,
.page-title,
.bg-primary h1,
.bg-dark h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.15 !important;
}

/* Section headings H1, H2 */
h1, .h1, .display-1, .display-2 {
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
}

h2, .h2, .display-3, .display-4 {
    font-weight: 700 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.25 !important;
}

/* Sub-headings H3 */
h3, .h3 {
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.3 !important;
}

/* Small headings H4-H6 */
h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 700 !important;
    letter-spacing: 0.005em !important;
}

/* Navigation links - Archivo Medium */
.netal-main-menu ul li a,
.navbar-nav .nav-link,
.nav-link {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
}

/* Buttons & CTAs - Archivo SemiBold */
.btn, .netal-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

/* Badges - Archivo Medium */
.badge {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}

/* Pricing tags - Archivo Bold */
.room-item small[style*='background'],
.price, .pricing {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}

/* Product/card titles - Archivo SemiBold */
.room-item h5, .room-item h4,
.product-card h5, .card-body h5 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

/* Industrial heading */
.industrial-heading {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}

/* Footer headings - Archivo SemiBold */
.footer-industrial h5, .footer-industrial h4,
.netal-footer h5, .netal-footer h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Callback/CTA headings - Archivo */
.callback-box h2, .callback-box h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

/* --- MONTSERRAT: Body text, Descriptions, Forms, Supporting text --- */

/* Body default */
body {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

/* Paragraphs & descriptions */
p, .text-muted, .text-secondary {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

/* Hero description text */
.carousel-caption p,
.hero-section p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Card/product descriptions */
.room-item p, .room-item .text-body,
.product-card p, .card-body p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

/* Top header bar - Inter Medium */
.netal-header-top, .netal-header-top * {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
}

/* Form fields - Inter Regular */
input, textarea, select, .form-control {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
}

/* Form labels - Inter Medium */
label, .form-label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
}

/* Breadcrumbs - Inter Regular */
.breadcrumb, .breadcrumb-item, .breadcrumb a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Footer body text & links - Inter Regular */
.footer-industrial, .footer-industrial p,
.footer-industrial a, .footer-industrial span,
.footer-industrial li, .footer-industrial small,
.netal-footer, .netal-footer p,
.netal-footer a, .netal-footer span,
.netal-footer li,
.footer-links a,
.copyright-bar, .copyright-bar * {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
}

/* Small text & captions - Inter Regular */
small, .small, figcaption, caption {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Blockquotes & testimonials - Inter */
blockquote, .testimonial-text, .quote {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    line-height: 1.75 !important;
}

/* Section subtitles/taglines - Inter */
.section-subtitle, .tagline, .lead {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Callback description - Inter */
.callback-box p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
}

/* Strong text in body */
p strong, p b, li strong, li b {
    font-weight: 600 !important;
}


/* GLOBAL FONT ENFORCEMENT */
/* Headings: Archivo */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', sans-serif !important;
}

/* Body/text elements: Inter */
html, body, p, a, div, span:not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not(.bi):not([class^="fa-"]):not([class*=" fa-"]):not([class^="bi-"]):not([class*=" bi-"]), li, ul, ol, td, th, label, input, select, textarea, small, strong, em, b {
    font-family: 'Montserrat', sans-serif !important;
}

/* Override: Elements that must be Archivo */
.btn, .netal-btn, button, .badge, .nav-link, .navbar-nav .nav-link,
.netal-main-menu ul li a, .industrial-heading,
.room-item small[style*='background'], .price, .pricing {
    font-family: 'Montserrat', sans-serif !important;
}

/* FIX ICON FONTS */
.fa, .fas, .far, .fal, .fad, i[class^="fa-"], i[class*=" fa-"] {
    font-family: "Font Awesome 5 Free" !important;
}
.fab {
    font-family: "Font Awesome 5 Brands" !important;
}
.bi, i[class^="bi-"], i[class*=" bi-"] {
    font-family: bootstrap-icons !important;
}


/* Product Gallery Slider Buttons (Mimicking Home Page) */
#productGallery .carousel-control-prev,
#productGallery .carousel-control-next {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    outline: none !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    opacity: 1 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
}

#productGallery .carousel-control-prev:hover,
#productGallery .carousel-control-next:hover {
    background: #0D2853 !important;
}

#productGallery .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") !important;
    width: 20px !important;
    height: 20px !important;
    filter: none !important;
}
#productGallery .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") !important;
    width: 20px !important;
    height: 20px !important;
    filter: none !important;
}
#productGallery .carousel-control-prev:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") !important;
}
#productGallery .carousel-control-next:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") !important;
}

/* Global Owl Carousel Navigation Styling (Mimicking Home Page) */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    color: #0D2853 !important;
    border: 1.5px solid rgba(13, 40, 83, 0.1) !important;
    outline: none !important;
    border-radius: 50% !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin: 0;
    backdrop-filter: blur(4px);
}
.owl-carousel .owl-nav .owl-prev { left: -22px; }
.owl-carousel .owl-nav .owl-next { right: -22px; }
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-next:focus { 
    background: #0D2853 !important; 
    color: #ffffff !important;
    border-color: #0D2853 !important;
}

@media (max-width: 768px) {
    .owl-carousel .owl-nav .owl-prev { left: 5px; }
    .owl-carousel .owl-nav .owl-next { right: 5px; }
}

/* View All Products Button */
.btn-view-all {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #0D2853;
    border-radius: 4px;
    padding: 6px 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-view-all:hover {
    background-color: #0D2853;
    color: #ffffff !important;
    border-color: #0D2853;
    box-shadow: 0 4px 12px rgba(13, 40, 83, 0.2);
}
.btn-view-all i {
    transition: transform 0.4s ease;
}
.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Product Image Carousel Buttons - Show only on hover */
.product-card-img .carousel-control-prev,
.product-card-img .carousel-control-next,
#productGallery .carousel-control-prev,
#productGallery .carousel-control-next {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-card-img:hover .carousel-control-prev,
.product-card-img:hover .carousel-control-next,
#productGallery:hover .carousel-control-prev,
#productGallery:hover .carousel-control-next {
    opacity: 0.8 !important;
    visibility: visible;
}

.product-card-img .carousel-control-prev:hover,
.product-card-img .carousel-control-next:hover,
#productGallery .carousel-control-prev:hover,
#productGallery .carousel-control-next:hover {
    opacity: 1 !important;
}

/* ==============================================================
   Premium Desktop Dropdown Enhancements
   ============================================================== */
.dropdown-custom-menu {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    padding: 12px 8px !important;
    margin-top: 15px !important;
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
    transform-origin: top center;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-custom-item {
    color: #4A5568 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    margin-bottom: 2px !important;
    position: relative;
    overflow: hidden;
}

.dropdown-custom-item:hover {
    color: #0D2853 !important;
    background-color: #f8fafc !important;
    transform: translateX(4px) !important;
}

/* Hover accent line for dropdown items */
.dropdown-custom-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: #D22622;
    transition: height 0.2s ease;
    border-radius: 0 4px 4px 0;
}

.dropdown-custom-item:hover::before {
    height: 60%;
}

.nav-item.dropdown:hover .dropdown-custom-menu {
    display: block !important;
}

/* FORCE HAMBURGER MENU COLOR */
.mobile-menu-btn i.fa-bars,
.mobile-menu-btn .fa-bars,
i.fa.fa-bars {
    color: #0D2853 !important;
}

/* ==============================================================
   FINAL UI/UX MOTION & ANIMATION OPTIMIZATION
   ============================================================== */
/* Hardware acceleration and repaint reduction */
.carousel-item, .carousel-inner, .product-card, .team-item, .btn, .dropdown-menu {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize Hero Slider */
.carousel-fade .carousel-item {
    will-change: opacity, transform, z-index;
}

/* Force hardware accelerated opacity transitions */
img {
    will-change: opacity;
}

/* Buttons Hover: 200ms, Press: 100ms */
.btn, .btn-primary-blue, .btn-outline-navy, .btn-details {
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn:active, .btn-primary-blue:active, .btn-outline-navy:active, .btn-details:active {
    transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: scale(0.97) translateZ(0) !important;
}

/* Cards Hover */
.product-card, .team-item {
    will-change: transform, box-shadow;
    transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.product-card:hover, .team-item:hover {
    transform: translateY(-5px) translateZ(0) !important;
}

/* Fix CSS animations that trigger layout shifts */
@keyframes float {
  0% { transform: translateY(0px) translateZ(0); }
  50% { transform: translateY(-15px) translateZ(0); }
  100% { transform: translateY(0px) translateZ(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px) translateZ(0); }
  to { opacity: 1; transform: translateY(0) translateZ(0); }
}

/* Smooth Dropdowns */
.dropdown-menu.show {
    animation: dropdownFadeIn 250ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(10px) translateZ(0); }
    to { opacity: 1; transform: translateY(0) translateZ(0); }
}

/* Owl Carousel Anti-Flicker & Smooth Rendering Fix */
.owl-carousel .owl-stage-outer {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* GLOBAL FIX: Prevent All Carousels and Sliders from Jumping (Layout Shift) */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.owl-carousel .owl-item {
    display: flex;
    float: none; /* Override owl carousel float */
}
.owl-carousel .owl-item > div, .owl-carousel .owl-item > .testimonial-item, .owl-carousel .owl-item > .product-card {
    width: 100%;
}
.carousel-inner {
    overflow: hidden;
}
