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

:root {
    /* Logo Colors - Deep Space 3D/HD Theme (High legibility variant for vibrant Red/Cyan accents) */
    --bg-primary: #080b11;
    --bg-secondary: #111622;
    --bg-tertiary: #192030;
    --bg-glass: rgba(8, 11, 17, 0.95);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --accent-purple: #703cd9;
    --accent-purple-glow: rgba(112, 60, 217, 0.15);
    
    --accent-red: #e52e2d;
    --accent-red-glow: rgba(229, 46, 45, 0.12);
    
    --accent-cyan: #00a7e1;
    --accent-cyan-glow: rgba(0, 167, 225, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e1;
    
    /* Gradients */
    --grad-logo: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-red) 50%, var(--accent-cyan) 100%);
    --grad-purple-cyan: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    --grad-red-cyan: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-cyan) 100%);
    --grad-dark-card: linear-gradient(180deg, rgba(17, 21, 48, 0.75) 0%, rgba(8, 10, 22, 0.95) 100%);
    --grad-footer: linear-gradient(135deg, rgba(112, 60, 217, 0.15) 0%, rgba(229, 46, 45, 0.08) 50%, rgba(0, 167, 225, 0.15) 100%);
    
    --container-max-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Body Styles - 3D/HD Hologram Mesh Grid with Glowing Spatial Backlights */
body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    overflow-x: hidden;
    line-height: 1.75;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 167, 225, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(229, 46, 45, 0.08) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px) !important;
    background-size: auto, auto, 50px 50px, 50px 50px !important;
    background-attachment: fixed !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

/* Theme color helper classes */
.text-cyan { color: var(--accent-cyan) !important; }
.text-red { color: var(--accent-red) !important; }
.text-purple { color: var(--accent-purple) !important; }

/* Buttons Customization overrides */
.btn-primary {
    background: var(--grad-logo);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 167, 225, 0.25);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.btn-primary:hover, .btn-primary:focus {
    box-shadow: 0 6px 22px rgba(0, 167, 225, 0.45);
    transform: translateY(-2px);
    background: var(--grad-logo);
    opacity: 0.95;
}

.btn-outline {
    border: 1px solid var(--border-glass);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.btn-outline:hover {
    border-color: var(--accent-cyan);
    background-color: rgba(0, 167, 225, 0.04);
    transform: translateY(-2px);
}

body {
    padding-top: 75px;
}
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
}

/* Header & Navigation block */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background-color: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}
.logo-text span {
    background: var(--grad-purple-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    height: 100%;
}
.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}
.nav-item {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    border-radius: 4px;
}
.nav-item:hover .nav-link {
    color: var(--text-primary);
}
.nav-item.active .nav-link {
    color: var(--accent-cyan);
}
.nav-item.active .nav-link::after, .nav-item:hover .nav-link::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

/* Mega Menu Dropdowns - Full Width 4-Column Grid Style */
.has-megamenu {
    position: static;
}
.megamenu {
    position: absolute;
    top: 100% !important;
    left: 0;
    width: 100%;
    background-color: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 3px solid var(--accent-red);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    padding: 3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    margin-top: 0 !important;
}
.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Clean 4-Column Megamenu Style --- */
.megamenu-col {
    padding: 1rem 0;
}
.megamenu-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: var(--accent-cyan) !important;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid rgba(0, 167, 225, 0.15);
    padding-bottom: 0.5rem;
}
.megamenu-col:nth-child(even) .megamenu-col-title {
    color: var(--accent-red) !important;
    border-bottom-color: rgba(229, 46, 45, 0.15);
}
.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.megamenu-link {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}
.megamenu-link i {
    font-size: 0.75rem;
    opacity: 0.75;
    transition: transform 0.25s ease;
}
.megamenu-link:hover {
    color: #ffffff !important;
    padding-left: 0.35rem;
}
.megamenu-link:hover i {
    transform: translateX(3px);
}
/* Standard Dropdown Styling Overrides for Premium Accent */
.dropdown-menu {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background-color: var(--bg-glass) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
    padding: 0.5rem 0 !important;
    margin-top: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 999;
}
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
}
.dropdown-item {
    color: var(--text-secondary) !important;
    transition: var(--transition-fast) !important;
    font-size: 1rem !important;
    padding: 0.75rem 2rem !important;
    white-space: nowrap;
}
.dropdown-item:hover {
    background-color: rgba(0, 167, 225, 0.06) !important;
    color: var(--accent-cyan) !important;
    padding-left: 2.25rem !important;
}

/* Sections Global */
.section {
    padding: 3.5rem 0;
    position: relative;
}
.section-dark {
    background-color: var(--bg-primary);
}
.section-secondary {
    background-color: var(--bg-secondary);
}
.section-title-wrapper {
    text-align: center;
    margin-bottom: 2.2rem;
}
.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    background: var(--grad-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    display: inline-block;
}
.section-title {
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.25;
}
.section-title span {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-desc {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1.25rem auto 0;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Hero Carousel Section (Full Width Image Landscape Gallery) */
.hero-carousel-section {
    position: relative;
    height: 65vh;
    min-height: 450px;
    background-color: #000;
    overflow: hidden;
}
.hero-carousel-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(229, 46, 45, 0.08);
    border: 1px solid rgba(229, 46, 45, 0.25);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(229, 46, 45, 0.6);
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Glassmorphic Stats Strip Billboard */
.stats {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 2.5rem 0;
}
.stats-strip {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}
.stat-card {
    border-right: 1px solid var(--border-glass);
    padding: 0 1.5rem;
    text-align: center;
}
.col-lg-2.4:last-child .stat-card {
    border-right: none;
}
.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Pillars Cards */
.pillar-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.pillar-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 167, 225, 0.12);
}
.pillar-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    border-radius: 12px;
    background-color: rgba(112, 60, 217, 0.04);
    border: 1px solid rgba(112, 60, 217, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    transition: var(--transition-smooth);
}
.pillar-card:hover .pillar-icon-wrapper {
    background: var(--grad-logo);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 167, 225, 0.3);
}
.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
}
.pillar-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* Product Cards */
.product-card-grid {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card-grid:hover {
    border-color: var(--accent-purple);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}
.product-img-wrapper {
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background-color: #05060b;
    border-bottom: 1px solid var(--border-glass);
}
.product-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card-grid:hover .product-grid-img {
    transform: scale(1.03);
}
.product-info-grid {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-series-name {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}
.product-series-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Installations Slider */
.installations-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 3rem;
}
.installations-track {
    display: flex;
    transition: var(--transition-smooth);
    width: 100%;
}
.installation-slide {
    flex: 0 0 calc(50% - 1rem);
    margin-right: 2rem;
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.installation-slide:last-child {
    margin-right: 0;
}
.installation-slide:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-6px);
}
.install-img-wrapper {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #05060b;
    border-bottom: 1px solid var(--border-glass);
}
.install-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.installation-slide:hover .install-img {
    transform: scale(1.03);
}
.install-info {
    padding: 2rem;
}
.install-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.install-desc-text {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.install-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.install-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3.5rem;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background-color: var(--bg-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.slider-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background-color: rgba(0, 167, 225, 0.05);
}

/* History Timeline */
.timeline-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    padding: 2.25rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
}
.timeline-card::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 4px solid var(--accent-cyan);
    z-index: 5;
    box-shadow: 0 0 10px var(--accent-cyan-glow);
    display: none;
}
@media (min-width: 992px) {
    .timeline-card::after {
        display: block;
    }
}
.timeline-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

/* Delivery Process Step Card */
.step-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
}
.step-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}
.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-purple-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* Testimonial Box */
.testimonial-box {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    padding: 4rem 3rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-box::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 3rem;
    font-size: 7.5rem;
    font-family: serif;
    color: rgba(0, 167, 225, 0.08);
    line-height: 1;
}
.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

/* FAQ Customization */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-glass) !important;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}
.accordion-button {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1.5rem 2rem !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-cyan) !important;
    border-bottom: 1px solid var(--border-glass);
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-body {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 1.5rem 2rem !important;
    line-height: 1.7;
    font-size: 1rem;
}

/* Environment Icon Links */
.hover-card {
    transition: var(--transition-smooth);
}
.hover-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 10px 20px rgba(0, 167, 225, 0.1);
    background-color: var(--bg-secondary) !important;
}

/* Forms styling */
.form-select, .form-control {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-glass) !important;
    transition: var(--transition-fast) !important;
    font-size: 1rem;
}
.form-select:focus, .form-control:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 167, 225, 0.25) !important;
}

/* Premium Footer with Colorful Light-Streak Graphic Backdrop */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
    padding: 6.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-footer);
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at bottom, black, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at bottom, black, transparent 75%);
}
.footer .container {
    position: relative;
    z-index: 5;
}
.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}
.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.footer-link:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}
/* Footer Social Media Buttons */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.social-icon-btn:hover {
    transform: translateY(-3px) scale(1.08);
    color: #ffffff !important;
}
.social-icon-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}
.social-icon-btn.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 6px 18px rgba(10, 102, 194, 0.45);
}
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: #d6249f;
    box-shadow: 0 6px 18px rgba(214, 36, 159, 0.45);
}
.social-icon-btn.twitter:hover {
    background: #000000;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}
.social-icon-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}
.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    margin-top: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .header {
        width: 95%;
    }
    .hero-title {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .header {
        top: 0;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        height: 70px;
    }
    .hero-title {
        font-size: 2.25rem !important;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .installation-slide {
        flex: 0 0 100% !important;
    }
}

/* Mobile Navigation Toggle Hamburger Button */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}
.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}
.mobile-nav-toggle:focus {
    outline: none;
}

/* Offcanvas Mobile Sidebar Premium Custom Theme */
.mobile-sidebar {
    background-color: #07080c !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 320px !important;
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.9);
}
.mobile-sidebar .offcanvas-header {
    background-color: #040509;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.mobile-sidebar .offcanvas-body {
    padding: 2rem 1.5rem;
}
.mobile-nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.mobile-nav-item {
    margin-bottom: 1.25rem;
}
.mobile-nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: var(--transition-fast);
}
.mobile-nav-link:hover {
    color: var(--accent-red);
    padding-left: 4px;
}
.mobile-nav-link i {
    transition: transform 0.2s ease;
}
.mobile-nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-sub-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    padding: 0.45rem 0;
    text-decoration: none;
    transition: var(--transition-fast);
}
.mobile-sub-link::before {
    content: '—';
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}
.mobile-sub-link:hover {
    color: var(--accent-cyan);
    padding-left: 6px;
}
.mobile-sub-link:hover::before {
    color: var(--accent-cyan);
}

/* Category Sub-headers inside mobile collapse drawer */
.mobile-sidebar h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.25rem;
}

/* Call & WhatsApp Footer Actions */
.mobile-sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.mobile-sidebar-footer .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff !important;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: var(--transition-fast);
}
.mobile-sidebar-footer .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.mobile-sidebar-footer .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-fast);
}
.mobile-sidebar-footer .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Floating Blur Backdrop Blobs for Colorful Section Animations */
@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(45px, -65px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 50px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}
.blob-bg-section {
    position: relative;
    overflow: hidden;
}
.blob-bg-section .blob-1 {
    position: absolute;
    top: 5%;
    left: 2%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 167, 225, 0.16) 0%, rgba(0, 167, 225, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: floatBlob1 20s ease-in-out infinite;
}
.blob-bg-section .blob-2 {
    position: absolute;
    bottom: 5%;
    right: 2%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 46, 45, 0.12) 0%, rgba(229, 46, 45, 0) 70%);
    border-radius: 50%;
    filter: blur(95px);
    z-index: 1;
    pointer-events: none;
    animation: floatBlob2 25s ease-in-out infinite;
}
.blob-bg-section > * {
    position: relative;
    z-index: 2;
}

/* Achievements Section Cosmic Neon Glow Background */
.stats-strip-neon {
    position: relative;
    background: linear-gradient(135deg, #05060d 0%, #0c0e1a 100%);
    border: 1px solid rgba(0, 167, 225, 0.2);
    border-radius: 20px;
    padding: 4.5rem 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    z-index: 1;
}
.stats-strip-neon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 15% 15%, rgba(229, 46, 45, 0.16) 0%, transparent 45%),
                radial-gradient(circle at 85% 85%, rgba(0, 167, 225, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, rgba(112, 60, 217, 0.12) 0%, transparent 55%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0.9;
    animation: statsGlow 20s linear infinite;
}
@keyframes statsGlow {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg); }
}

/* Three Pillars Colored Hover Glows */
.card-pillar-cyan {
    border: 1px solid rgba(0, 167, 225, 0.2) !important;
    background: linear-gradient(135deg, rgba(5,6,13,0.95) 0%, rgba(12,14,26,0.95) 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 167, 225, 0.04), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-pillar-cyan:hover {
    border-color: rgba(0, 167, 225, 0.7) !important;
    box-shadow: 0 20px 45px rgba(0, 167, 225, 0.2), 0 0 15px rgba(0, 167, 225, 0.1), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.card-pillar-red {
    border: 1px solid rgba(229, 46, 45, 0.2) !important;
    background: linear-gradient(135deg, rgba(5,6,13,0.95) 0%, rgba(12,14,26,0.95) 100%) !important;
    box-shadow: 0 10px 30px rgba(229, 46, 45, 0.04), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-pillar-red:hover {
    border-color: rgba(229, 46, 45, 0.7) !important;
    box-shadow: 0 20px 45px rgba(229, 46, 45, 0.2), 0 0 15px rgba(229, 46, 45, 0.1), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.card-pillar-purple {
    border: 1px solid rgba(112, 60, 217, 0.2) !important;
    background: linear-gradient(135deg, rgba(5,6,13,0.95) 0%, rgba(12,14,26,0.95) 100%) !important;
    box-shadow: 0 10px 30px rgba(112, 60, 217, 0.04), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-pillar-purple:hover {
    border-color: rgba(112, 60, 217, 0.7) !important;
    box-shadow: 0 20px 45px rgba(112, 60, 217, 0.2), 0 0 15px rgba(112, 60, 217, 0.1), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

/* FAQ Vibrant Motion Screen Glow */
@keyframes vibrantScreenFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.screen-glow-vibrant {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #e52e2d, #00a7e1, #703cd9, #e52e2d);
    background-size: 300% 300%;
    animation: vibrantScreenFlow 12s ease infinite;
    opacity: 0.75;
}
.bg-dark-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.88) 18%, transparent 18%);
    background-size: 5px 5px;
}

/* TV Screen Display Mockups (Widescreen Product Previews) */
.tv-mockup {
    position: relative;
    width: 100%;
    border-radius: 14px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 75px rgba(0,0,0,0.85), 0 0 35px rgba(0, 167, 225, 0.12);
}
.tv-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background-color: #05060b;
}
.tv-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tv-backlight {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(0, 167, 225, 0.22) 0%, rgba(229, 46, 45, 0.08) 50%, transparent 80%);
    filter: blur(45px);
    z-index: -1;
    pointer-events: none;
}

/* Corporate Video Mockups with Play Button Overlays */
.video-mockup {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}
.video-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(229, 46, 45, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 0 20px rgba(229, 46, 45, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-mockup:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(229, 46, 45, 1);
    box-shadow: 0 0 30px rgba(229, 46, 45, 0.8);
}
.video-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
}

/* Curved Screen Cosmic Containers (Achievements backdrops) */
.curved-screen-container {
    position: relative;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
    padding: 5rem 3rem;
    overflow: hidden;
    box-shadow: 0 30px 75px rgba(0,0,0,0.9), inset 0 0 45px rgba(0,0,0,0.75);
    z-index: 1;
}
.curved-screen-glow {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at center, rgba(0, 167, 225, 0.16) 0%, rgba(229, 46, 45, 0.08) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: curvedRotate 25s linear infinite;
}
@keyframes curvedRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Gold Trust Seal Badge (Pillars Section) */
.gold-seal {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    border: 3px double #d4af37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1a1605 0%, #050505 100%);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25), inset 0 0 15px rgba(212, 175, 55, 0.35);
    color: #d4af37;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}
.gold-seal .years {
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1;
}
.gold-seal .label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* circular Value Icons for Credentials (Xtreme Values) */
.value-circle {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.25rem;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--accent-red);
    background: rgba(229, 46, 45, 0.05);
    box-shadow: 0 0 20px rgba(229, 46, 45, 0.12);
    transition: all 0.3s ease;
}
.value-circle:hover {
    transform: scale(1.08);
    background: rgba(229, 46, 45, 0.1);
    box-shadow: 0 0 25px rgba(229, 46, 45, 0.25);
}

/* Neon Perspective Line Art Tunnel Backdrop for Footer */
.footer-perspective {
    background-color: #05060b;
    background-image: linear-gradient(to top, rgba(5,6,11,0.96) 0%, rgba(5,6,11,0.85) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M960,540 L0,1080 M960,540 L384,1080 M960,540 L768,1080 M960,540 L1152,1080 M960,540 L1536,1080 M960,540 L1920,1080 M960,540 L0,540 M960,540 L1920,540 M960,540 L0,0 M960,540 L1920,0" stroke="%23e52e2d" stroke-width="2" opacity="0.18"/><path d="M0,800 Q960,600 1920,800 M0,900 Q960,700 1920,900 M0,1000 Q960,800 1920,1000" fill="none" stroke="%2300a7e1" stroke-width="1.5" opacity="0.15"/></svg>');
    background-size: cover;
    background-position: center;
}

/* ============================================
   HERO SECTION - PREMIUM SPLIT LAYOUT
   ============================================ */
.hero-section {
    position: relative;
    background-color: var(--bg-primary);
    overflow: hidden;
    padding: 5rem 0 3rem;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 167, 225, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(229, 46, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.min-vh-hero { min-height: calc(100vh - 75px); }

/* Hero Left Text */
.hero-text-col { padding-right: 3rem; }
@media (max-width: 991px) { .hero-text-col { padding-right: 0; } }

.hero-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
}
.hero-gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero CTA Buttons */
.btn-hero-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff4747 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(229, 46, 45, 0.35);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 46, 45, 0.55);
    color: #fff;
}
.btn-hero-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 167, 225, 0.06);
    color: #fff;
    transform: translateY(-2px);
}
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
    color: #25d366;
    transform: translateY(-2px);
}

/* Hero Right Image */
.hero-image-col { position: relative; }
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 60px rgba(0, 167, 225, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
}
.hero-image-wrapper:hover .hero-main-img { transform: scale(1.03); }
.hero-img-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 167, 225, 0.2) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}
.hero-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 167, 225, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* ============================================
   STAT CARDS (ACHIEVEMENTS SECTION)
   ============================================ */
.stat-card {
    padding: 1.5rem 1rem;
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   APPLICATION CARDS (IMAGE GRID)
   ============================================ */
.app-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-card:hover { transform: translateY(-5px); }
.app-card:hover .app-card-overlay { opacity: 1; }
.app-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    transition: opacity 0.4s ease;
    opacity: 0.75;
}
.app-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 2;
}
.app-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 167, 225, 0.2);
    border: 1px solid rgba(0, 167, 225, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
}
.app-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.app-card-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    line-height: 1.5;
    display: none;
}
.app-card:hover .app-card-text { display: block; }

/* ============================================
   PRODUCT CARDS (FEATURED + SMALL)
   ============================================ */
.product-featured-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}
.product-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.product-featured-card:hover .product-featured-img { transform: scale(1.05); }
.product-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}
.product-tag-badge {
    align-self: flex-start;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.product-featured-content {
    color: #fff;
}
.product-featured-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.product-featured-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.product-link {
    color: var(--accent-cyan);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.product-link:hover { color: #fff; }

.product-card-sm {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 180px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.product-card-sm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    transition: background 0.3s ease;
}
.product-card-sm:hover .product-card-sm-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 100%); }
.product-card-sm-overlay h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.product-card-sm-overlay a {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

/* ============================================
   PRODUCT 4-GRID CARDS WITH IMAGE
   ============================================ */
.product-card-grid-item {
    display: block;
    height: 100%;
    text-decoration: none !important;
}
.product-card-grid {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 250px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.product-card-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}
.product-card-grid:hover::before {
    transform: scale(1.08);
}
.product-card-grid:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 167, 225, 0.4);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 167, 225, 0.2);
}
.product-card-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(8, 11, 17, 0.35) 0%, rgba(8, 11, 17, 0.8) 50%, rgba(8, 11, 17, 0.96) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    transition: background 0.3s ease;
}
.product-card-grid:hover .product-card-grid-overlay {
    background: linear-gradient(180deg, rgba(8, 11, 17, 0.2) 0%, rgba(8, 11, 17, 0.82) 48%, rgba(8, 11, 17, 0.98) 100%);
}
.product-card-grid-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-grid-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0, 167, 225, 0.15);
    border: 1px solid rgba(0, 167, 225, 0.3);
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.product-card-grid:hover .product-grid-icon {
    background: var(--accent-cyan);
    color: #080b11;
    transform: scale(1.05);
}
.product-card-grid-content {
    display: flex;
    flex-direction: column;
}
.product-grid-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
    transition: color 0.25s ease;
}
.product-card-grid:hover .product-grid-title {
    color: var(--accent-cyan);
}
.product-grid-desc {
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.8);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-grid-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.25s ease;
}
.product-card-grid:hover .product-grid-link {
    gap: 0.6rem;
    color: #ffffff;
}

/* ============================================
   CLIENTS SCROLLING MARQUEE LOGOS
   ============================================ */
.clients-section { overflow: hidden; }
.clients-marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.clients-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.clients-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}
.clients-marquee { overflow: hidden; }
.clients-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
    gap: 1.5rem;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-logo-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.6rem;
    height: 100px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.client-logo-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 167, 225, 0.35);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 167, 225, 0.2);
}
.client-logo-img {
    height: 100px;
    max-width: 155px;
    width: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.client-logo-item:hover .client-logo-img {
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 167, 225, 0.3));
}

/* ============================================
   INSTALLATION PROJECT CARDS
   ============================================ */
.installation-card {
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--bg-primary);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.installation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.5);
}
.installation-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.installation-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.installation-card:hover .installation-img-wrap img { transform: scale(1.08); }
.install-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
}
.install-badge.indoor { background: var(--accent-cyan); }
.install-badge.outdoor { background: var(--accent-red); }
.install-badge.retail { background: var(--accent-purple); }

.installation-info {
    padding: 1.5rem;
}
.installation-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}
.install-location {
    color: var(--accent-cyan);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.install-feature {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 600;
}
.install-desc-text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Installations Carousel Slider Track */
.installations-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 20px;
}
.installations-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.installation-slide-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    box-sizing: border-box;
}
@media (max-width: 991.98px) {
    .installation-slide-card {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 575.98px) {
    .installation-slide-card {
        flex: 0 0 100%;
    }
}

/* Slider Controls */
.btn-install-slider {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none !important;
}
.btn-install-slider:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #0c0e1a;
    box-shadow: 0 0 20px rgba(0, 167, 225, 0.4);
    transform: translateY(-2px);
}
.btn-install-slider:active {
    transform: scale(0.95);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    border-color: rgba(0, 167, 225, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    transform: translateY(-4px);
}
.testimonial-quote-icon {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    opacity: 0.4;
    margin-bottom: 1.25rem;
}
.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}
.testimonial-company {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-list {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(255,255,255,0.1);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan-glow);
    border: 2px solid var(--bg-primary);
}
.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}
.timeline-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}
.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================
   SECTION TAGS (SMALL LABELS ABOVE HEADINGS)
   ============================================ */
.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-cyan) !important;
    -webkit-text-fill-color: var(--accent-cyan) !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(0, 167, 225, 0.1) !important;
    border: 1px solid rgba(0, 167, 225, 0.25);
    padding: 0.25rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-section { padding: 3rem 0 2rem; }
    .min-vh-hero { min-height: auto; }
    .hero-image-col { margin-top: 2.5rem; }
    .hero-main-img { aspect-ratio: 16/9; }
    .hero-title { font-size: 2.2rem; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.85rem; }
    .hero-cta-group { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline, .btn-hero-whatsapp { text-align: center; justify-content: center; }
    .app-card { aspect-ratio: 3/2; }
}

/* ============================================
   HERO BACKGROUND SLIDER (Full-Width Style)
   ============================================ */

.hero-bg-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Background slides --- */
.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center !important;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 8s ease;
    transform: scale(1.05);
    will-change: opacity, transform;
}
.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.hero-bg-slide.leaving {
    opacity: 0;
    transform: scale(1.08);
    z-index: 2;
}

/* --- Gradient overlay (strong left → transparent right) --- */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to right,
            rgba(4, 5, 9, 0.92) 0%,
            rgba(4, 5, 9, 0.80) 30%,
            rgba(4, 5, 9, 0.45) 60%,
            rgba(4, 5, 9, 0.10) 100%
        ),
        linear-gradient(
            to top,
            rgba(4, 5, 9, 0.6) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* --- Content layer --- */
.hero-bg-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
}

/* --- Pill tag at top --- */
.hero-bg-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(229, 46, 45, 0.15);
    border: 1px solid rgba(229, 46, 45, 0.45);
    border-radius: 50px;
    padding: 0.38rem 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff7070;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4747;
    box-shadow: 0 0 8px #ff4747;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* --- Hero Title --- */
.hero-bg-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.hero-bg-accent {
    color: var(--accent-cyan);
    position: relative;
    display: inline-block;
}
.hero-bg-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
    opacity: 0.6;
}

/* --- Subtitle --- */
.hero-bg-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 520px;
}

/* --- Checklist --- */
.hero-bg-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.hero-bg-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}
.hero-bg-checklist li i {
    color: var(--accent-cyan);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* --- Arrows --- */
.hero-bg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.hero-bg-arrow:hover {
    background: rgba(0, 167, 225, 0.25);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
}
.hero-bg-prev { left: 1.5rem; }
.hero-bg-next { right: 1.5rem; }

/* --- Dots --- */
.hero-bg-dots {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.hbd {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
    outline: none;
}
.hbd.active {
    background: var(--accent-cyan);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-cyan-glow);
}

/* --- Slide Counter (bottom right) --- */
.hero-bg-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}
#heroBgCurrent {
    color: #fff;
    font-size: 1.15rem;
}
.hbc-sep {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

/* --- Progress bar at very top of section --- */
.hero-bg-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-red), var(--accent-cyan));
    z-index: 5;
    width: 0%;
    animation: heroProgress 5s linear infinite;
}
@keyframes heroProgress {
    0%   { width: 0%; opacity: 1; }
    95%  { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-bg-content { padding: 6rem 0 5rem; }
    .hero-bg-title { font-size: 2.4rem; }
    .hero-bg-overlay {
        background:
            linear-gradient(rgba(4, 5, 9, 0.88) 0%, rgba(4, 5, 9, 0.6) 100%);
    }
    .hero-bg-prev { left: 0.75rem; }
    .hero-bg-next { right: 0.75rem; }
}
@media (max-width: 576px) {
    .hero-bg-title { font-size: 1.95rem; }
    .hero-bg-subtitle { font-size: 0.95rem; }
    .hero-bg-checklist li { font-size: 0.88rem; }
    .hero-bg-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* ============================================
   PILLAR CARDS (Three Pillars Section)
   ============================================ */
.pillar-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Pillar Specific Accents */
.pillar-cyan::before { background: var(--accent-cyan); }
.pillar-cyan:hover { box-shadow: 0 20px 40px rgba(0, 167, 225, 0.15); }
.pillar-cyan .pillar-icon-wrap { color: var(--accent-cyan); background: rgba(0, 167, 225, 0.1); border-color: rgba(0, 167, 225, 0.25); }

.pillar-red::before { background: var(--accent-red); }
.pillar-red:hover { box-shadow: 0 20px 40px rgba(229, 46, 45, 0.15); }
.pillar-red .pillar-icon-wrap { color: var(--accent-red); background: rgba(229, 46, 45, 0.1); border-color: rgba(229, 46, 45, 0.25); }

.pillar-purple::before { background: var(--accent-purple); }
.pillar-purple:hover { box-shadow: 0 20px 40px rgba(123, 47, 247, 0.15); }
.pillar-purple .pillar-icon-wrap { color: var(--accent-purple); background: rgba(123, 47, 247, 0.1); border-color: rgba(123, 47, 247, 0.25); }

/* Featured Card Style */
.pillar-featured {
    background: linear-gradient(180deg, rgba(229, 46, 45, 0.05) 0%, rgba(4, 5, 9, 0) 100%), var(--bg-secondary);
    border: 1px solid rgba(229, 46, 45, 0.2);
}
@media (min-width: 992px) {
    .pillar-featured {
        transform: scale(1.03) translateY(-10px);
    }
    .pillar-featured:hover {
        transform: scale(1.03) translateY(-18px);
    }
}
.pillar-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pillar Inner Elements */
.pillar-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-card:hover .pillar-img {
    transform: scale(1.06);
}

.pillar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.pillar-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
}
.pillar-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}
.pillar-cyan .pillar-link { color: var(--accent-cyan); }
.pillar-red .pillar-link { color: var(--accent-red); }
.pillar-purple .pillar-link { color: var(--accent-purple); }
.pillar-card:hover .pillar-link { color: #fff; }
.pillar-link i {
    transition: transform 0.3s ease;
}
.pillar-link:hover i {
    transform: translateX(5px);
}


/* ============================================
   TIMELINE SECTION ADDITIONAL IMAGES & STYLES
   ============================================ */
.timeline-img-wrap {
    position: relative;
    padding: 10px;
}
.timeline-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-primary);
    border: 1px solid rgba(0, 167, 225, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 167, 225, 0.15);
}
.tib-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.tib-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
}
.timeline-dot-active {
    background: #fff !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px var(--accent-cyan-glow), 0 0 30px var(--accent-cyan-glow) !important;
}


/* ============================================
   LEADERSHIP CARDS
   ============================================ */
.leader-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    gap: 2rem;
    transition: all 0.4s ease;
}
.leader-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.leader-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.leader-info {
    flex-grow: 1;
}
.leader-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
}
.leader-role {
    color: var(--accent-cyan);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}
.leader-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.leader-stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
}
.lstat {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.lstat span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.15rem;
}

@media (max-width: 767px) {
    .leader-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
}


/* ============================================
   PROCESS STEP CARDS
   ============================================ */
.process-step-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.25rem;
    height: 100%;
    position: relative;
    transition: all 0.35s ease;
}
.process-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 30px rgba(0, 167, 225, 0.1);
}
.psc-number {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.3s ease;
}
.process-step-card:hover .psc-number {
    color: rgba(0, 167, 225, 0.08);
}
.psc-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.process-step-card:hover .psc-icon {
    background: rgba(0, 167, 225, 0.1);
    border-color: var(--accent-cyan);
}
.psc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.psc-body {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}


/* ============================================
   TECHNICAL EXPERIENCE CARDS
   ============================================ */
.tech-card-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
}
.tech-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
}
.tech-card-link:hover .tech-card,
.tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 167, 225, 0.4);
    box-shadow: 0 16px 35px rgba(0,0,0,0.4), 0 0 20px rgba(0, 167, 225, 0.15);
    background: linear-gradient(180deg, rgba(0, 167, 225, 0.05) 0%, var(--bg-secondary) 100%);
}
.tech-card-link:hover .tech-title {
    color: var(--accent-cyan);
}
.tech-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.tech-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.tech-body {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.tech-explore-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-cyan);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: all 0.25s ease;
}
.tech-card-link:hover .tech-explore-link {
    gap: 0.7rem;
    color: #ffffff;
}


/* ============================================
   LOCAL CTA BANNER
   ============================================ */
.local-cta-banner {
    position: relative;
    background: url('assets/images/hero_display.jpg') no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
    overflow: hidden;
}
.local-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 5, 9, 0.96) 0%, rgba(4, 5, 9, 0.85) 60%, rgba(4, 5, 9, 0.4) 100%);
    z-index: 1;
}
.local-region-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
}
.local-region-tag.pan-india {
    background: rgba(0, 167, 225, 0.15);
    border-color: rgba(0, 167, 225, 0.3);
    color: var(--accent-cyan);
}


/* ============================================
   BUYER'S GUIDE CARDS
   ============================================ */
.guide-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.guide-card:hover {
    transform: translateX(4px);
    border-color: rgba(0, 167, 225, 0.3);
    background: rgba(0, 167, 225, 0.02);
    box-shadow: 0 10px 25px rgba(0, 167, 225, 0.05);
}
.guide-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.guide-card:hover .guide-icon {
    background: rgba(0, 167, 225, 0.1);
    border-color: var(--accent-cyan);
}
.guide-content {
    flex-grow: 1;
}
.guide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.guide-card:hover .guide-title {
    color: var(--accent-cyan);
}
.guide-body {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0;
}
.guide-arrow {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.2);
    align-self: center;
    transition: all 0.3s ease;
}
.guide-card:hover .guide-arrow {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* ============================================
   SECTION COLOR SEPARATORS & UNIQUE BACKDROPS
   ============================================ */

/* 1. Mission Section */
.section-mission-bg {
    background: radial-gradient(circle at 80% 50%, rgba(112, 60, 217, 0.08) 0%, transparent 60%), linear-gradient(180deg, #323c52 0%, var(--bg-primary) 100%) !important;
    border-top: 1px solid rgba(112, 60, 217, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 2. Achievements / Stats Section */
.section-stats-bg {
    background: radial-gradient(circle at 50% 50%, rgba(0, 167, 225, 0.08) 0%, transparent 65%), var(--bg-primary) !important;
    border-bottom: 1px solid rgba(0, 167, 225, 0.08);
}

/* 3. Applications Grid Section */
.section-apps-bg {
    background: linear-gradient(180deg, #323c52 0%, var(--bg-secondary) 100%) !important;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 167, 225, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(229, 46, 45, 0.04) 0%, transparent 45%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 4. Products Grid Section */
.section-products-bg {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 5. Three Pillars Section */
.section-pillars-bg {
    background: linear-gradient(180deg, #323c52 0%, #3e325c 100%) !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(123, 47, 247, 0.08) 0%, transparent 70%) !important;
    border-bottom: 1px solid rgba(123, 47, 247, 0.05);
}

/* 6. Clients Marquee Section */
.section-clients-bg {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 7. Newest Installations Section */
.section-installations-bg {
    background: linear-gradient(180deg, #303747 0%, var(--bg-secondary) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 8. Testimonials Section */
.section-testimonials-bg {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 9. Timeline Journey Section */
.section-timeline-bg {
    background: linear-gradient(180deg, #32374c 0%, #3a325c 100%) !important;
    border-bottom: 1px solid rgba(123, 47, 247, 0.05);
}

/* 10. Leadership Section */
.section-leadership-bg {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 11. Delivery Process Section */
.section-delivery-bg {
    background: linear-gradient(180deg, #2f3747 0%, var(--bg-secondary) 100%) !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 167, 225, 0.06) 0%, transparent 65%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 12. Technical Explanation Section */
.section-tech-bg {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 13. Verifications Section */
.section-verifications-bg {
    background: linear-gradient(180deg, #32394c 0%, #382d4d 100%) !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(229, 46, 45, 0.05) 0%, transparent 60%) !important;
    border-top: 1px solid rgba(229, 46, 45, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 14. Buying Guidance Section */
.section-guidance-bg {
    background: linear-gradient(180deg, #323c54 0%, var(--bg-primary) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 15. FAQ Section */
.section-faqs-bg {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* 16. Request Quote Form Section */
.section-form-bg {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #323a4d 100%) !important;
    border-top: 1px solid rgba(0, 167, 225, 0.1);
}




/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
    transform: translateX(-40px);
}
.reveal-right {
    transform: translateX(40px);
}
.reveal-scale {
    transform: scale(0.95);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay Helpers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-700 { transition-delay: 700ms; }
.delay-800 { transition-delay: 800ms; }

/* ============================================
   SCREEN MOCKUP WALL (Industries Visual Layout)
   ============================================ */
.screen-mockup-wall {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.screen-mockup-wall::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 9, 0.35);
    z-index: 1;
}
.screen-mockup-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}
.mockup-display-screen {
    width: 100%;
    max-width: 900px;
    background: rgba(4, 5, 9, 0.85);
    border: 1.5px solid rgba(0, 167, 225, 0.35);
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: 0 0 50px rgba(0, 167, 225, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-display-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.mockup-display-text {
    font-size: clamp(0.85rem, 1.5vw, 1.02rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.mockup-display-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.mockup-display-screen:hover {
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 60px rgba(255,255,255,0.1);
}
.mockup-display-screen:hover .mockup-display-arrow {
    background: #fff;
    color: var(--bg-primary);
    transform: translateY(3px);
}

@media (max-width: 991px) {
    .screen-mockup-wall {
        aspect-ratio: 16/9;
    }
    .mockup-display-screen {
        padding: 2rem;
    }
}
@media (max-width: 576px) {
    .screen-mockup-wall {
        aspect-ratio: 4/3;
    }
    .mockup-display-screen {
        padding: 1.5rem;
    }
    .mockup-display-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ============================================
   BOARDROOM MOCKUP BANNER (Direct Image Text Overlay)
   ============================================ */
.boardroom-banner-container {
    position: relative;
    width: 100%;
    height: clamp(380px, 45vw, 550px);
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.boardroom-banner-slides {
    position: absolute;
    top: -13.5%;
    left: 0;
    width: 100%;
    height: 127%;
    z-index: 1;
}
.boardroom-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.boardroom-slide.active {
    opacity: 1;
}
.boardroom-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.12); /* Soft ambient dimming */
}
.boardroom-banner-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.boardroom-banner-desc {
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    color: #fff;
    max-width: 820px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.boardroom-banner-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}
.boardroom-banner-arrow:hover {
    background: #fff;
    color: var(--bg-primary);
    transform: scale(1.08);
}
.boardroom-banner-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============================================
   GLOBAL TYPOGRAPHY & COLOR CONSOLIDATION
   ============================================ */

/* Force consistent Hero/Main Titles in Cyan (Logo Accent) */
.hero-bg-title,
.section-title,
section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    font-weight: 800 !important;
    color: var(--accent-cyan) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Force consistent Section Title span overrides */
.section-title span {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: var(--accent-cyan) !important;
}

/* Force consistent Subheadings (H3) in Red (Logo Accent) */
h3:not(.hero-bg-title):not(.section-title), 
.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem) !important;
    font-weight: 700 !important;
    color: var(--accent-red) !important;
    line-height: 1.3 !important;
}

/* Force consistent small Subheadings (H4) in Red (Logo Accent) */
h4:not(.hero-bg-title):not(.section-title), 
.item-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.08rem !important;
    color: var(--accent-red) !important;
    line-height: 1.35 !important;
}

/* Force description and body paragraphs in pure White */
p, 
.text-secondary, 
.lead-text,
.leader-bio,
.psc-body,
.tech-body,
.timeline-content p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #ffffff !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
}

/* Force consistent tags / small badges colors and sizes */
.section-tag, 
.badge-tag {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    border-radius: 4px !important;
}

/* Force consistent inputs & forms formatting sizes */
.form-control, 
.form-select {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.9rem !important;
}

/* Make all buttons globally more compact and smaller */
.btn {
    margin-bottom: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    padding: 0.52rem 1.25rem !important; /* Compact padding */
    border-radius: 6px !important;
    width: auto !important; /* Prevents stretching full width by default */
    display: inline-block !important;
}

/* Make small buttons even more compact and neat */
.btn-sm {
    padding: 0.38rem 1.05rem !important; /* Very neat compact padding */
    font-size: 0.8rem !important;
    width: auto !important; /* Overrides w-100 globally */
}

/* Custom Button Outlines for High Visibility and Contrast */
.btn-outline-cyan {
    border: 1.5px solid var(--accent-cyan) !important;
    background-color: rgba(0, 167, 225, 0.05) !important;
    color: var(--accent-cyan) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-outline-cyan:hover {
    background-color: var(--accent-cyan) !important;
    color: #0c0e1a !important;
    box-shadow: 0 8px 25px rgba(0, 167, 225, 0.45) !important;
    transform: translateY(-2px) !important;
}

.btn-outline-red {
    border: 1.5px solid var(--accent-red) !important;
    background-color: rgba(229, 46, 45, 0.05) !important;
    color: var(--accent-red) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-outline-red:hover {
    background-color: var(--accent-red) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(229, 46, 45, 0.45) !important;
    transform: translateY(-2px) !important;
}

/* Volumetric 3D Glass Card depth effects (HD 3D Look) */
.p-4.rounded.border.border-secondary.h-100,
.installation-card,
.tech-card,
.process-step-card,
.testimonial-card,
.guide-card {
    background-color: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    z-index: 2;
}

.p-4.rounded.border.border-secondary.h-100:hover,
.installation-card:hover,
.tech-card:hover,
.process-step-card:hover,
.testimonial-card:hover,
.guide-card:hover {
    transform: translateY(-8px) scale(1.015) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 167, 225, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Visible Form Placeholders & Input Contrast Adjustments */
.form-control::placeholder,
textarea::placeholder,
input::placeholder {
    color: #94a3b8 !important; /* Soft silver/gray with high contrast */
    opacity: 0.8 !important;
}

/* Modal Inputs Styling Overrides */
.modal .form-control,
.modal .form-select {
    background-color: #161c28 !important; /* Lighter background for text field distinction */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.modal .form-control:focus,
.modal .form-select:focus {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 167, 225, 0.25) !important;
    background-color: #1b2232 !important;
}



/* =========================================================================
   EXPERT CTA CARD (Footer Pre-CTA Section - Image 2 Style)
   ========================================================================= */
.expert-cta-wrapper {
    position: relative;
    padding: 3.5rem 0 2rem;
}

.expert-cta-card {
    background: #11141e;
    background: linear-gradient(180deg, #131722 0%, #0d1017 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4rem 3.5rem;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.expert-cta-badge {
    background-color: var(--accent-red);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.expert-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.expert-cta-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 1.25rem;
}

.expert-cta-desc strong {
    color: #ffffff;
    font-weight: 600;
}

.expert-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.expert-btn-red {
    background-color: var(--accent-red);
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(229, 46, 45, 0.25);
    cursor: pointer;
}

.expert-btn-red:hover {
    background-color: #c8232c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 46, 45, 0.45);
}

.expert-btn-red:active {
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .expert-cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    .expert-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .expert-btn-red {
        width: 100%;
    }
}

/* Custom style overrides for Indoor 3D LED Screen to match user's screenshot layout on dark theme */
.indoor-3d-tag {
    background-color: var(--accent-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.08em;
}
.indoor-3d-btn-red {
    background-color: var(--accent-red);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.indoor-3d-btn-red:hover {
    background-color: #c8232c;
    color: #fff;
    transform: translateY(-2px);
}
.indoor-3d-features-grid .feature-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.indoor-3d-features-grid .feature-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 25px rgba(229, 46, 45, 0.15);
}
.indoor-3d-features-grid .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.indoor-3d-benefits-grid .benefit-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-cyan);
    height: 100%;
}
.table-red-header thead th {
    background-color: var(--accent-red) !important;
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.app-industry-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}
.app-industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}
.app-industry-img {
    height: 160px;
    overflow: hidden;
}
.app-industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-industry-title {
    padding: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-size: 0.98rem;
}
.accordion-custom-border .accordion-item {
    background-color: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-custom-border .accordion-button {
    background-color: var(--bg-secondary) !important;
    color: #fff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}
.accordion-custom-border .accordion-button:not(.collapsed) {
    color: var(--accent-cyan) !important;
    box-shadow: none;
}
.accordion-custom-border .accordion-body {
    background-color: var(--bg-primary) !important;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.boardroom-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Contact Icon Buttons)
   ========================================================================== */
.floating-contact-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Floating Button */
.floating-btn-whatsapp {
    width: 58px;
    height: 58px;
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.floating-btn-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
    color: #ffffff !important;
}

/* Pulsing wave effect for WhatsApp */
.floating-btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    60% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Phone / Contact Floating Button */
.floating-btn-phone {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00a7e1 0%, #703cd9 100%);
    color: #ffffff !important;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0, 167, 225, 0.4);
}

.floating-btn-phone:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 22px rgba(0, 167, 225, 0.6);
    color: #ffffff !important;
}

/* Floating Tooltips */
.floating-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 22, 34, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(17, 22, 34, 0.96);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 16px);
}

/* Footer Contact Link Hover */
.footer-contact-link {
    transition: var(--transition-fast);
}
.footer-contact-link:hover {
    color: #25D366 !important;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 16px;
        gap: 10px;
    }
    .floating-btn-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    .floating-btn-phone {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .floating-tooltip {
        display: none !important;
    }
}

/* =========================================================================
   BUYING GUIDE CARDS (Products Overview & Detail Pages)
   ========================================================================= */
.buying-guide-card {
    background-color: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
    padding: 1.85rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.buying-guide-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 167, 225, 0.18) !important;
}

.buying-guide-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 167, 225, 0.1);
    border: 1px solid rgba(0, 167, 225, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.buying-guide-card:hover .buying-guide-icon {
    background: var(--accent-cyan);
    color: #0c0e1a;
    box-shadow: 0 0 15px rgba(0, 167, 225, 0.5);
}

.buying-guide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.buying-guide-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: left;
    margin-bottom: 0;
}

/* =========================================================================
   PRODUCT SPECIFICATION MATRIX / 6-PRODUCT COMPARISON ROW (Image 1-5 Style)
   ========================================================================= */
.spec-matrix-container {
    position: relative;
    width: 100%;
}

.spec-matrix-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f121d;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar */
.spec-matrix-wrapper::-webkit-scrollbar {
    height: 8px;
}
.spec-matrix-wrapper::-webkit-scrollbar-track {
    background: #111420;
}
.spec-matrix-wrapper::-webkit-scrollbar-thumb {
    background: #e52e2d;
    border-radius: 4px;
}

.spec-matrix-table {
    width: 100%;
    min-width: 1100px;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    color: #cbd5e1;
    font-size: 0.88rem;
}

/* Headers */
.spec-matrix-table thead th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.spec-matrix-table thead th.spec-label-th {
    background: #161a29;
    color: #ffffff;
    text-align: left;
    min-width: 220px;
    position: sticky;
    left: 0;
    z-index: 10;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.spec-matrix-table thead th.product-header-th {
    background: #e52e2d;
    color: #ffffff;
    min-width: 155px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.03em;
}

/* Body Rows */
.spec-matrix-table tbody tr {
    transition: background 0.2s ease;
}
.spec-matrix-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.spec-matrix-table tbody tr:hover {
    background: rgba(0, 167, 225, 0.05);
}

.spec-matrix-table tbody td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.spec-matrix-table tbody td.spec-param-name {
    background: #131724;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    position: sticky;
    left: 0;
    z-index: 5;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.spec-matrix-img-wrap {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    min-height: 65px;
    width: 100%;
    max-width: 130px;
}

.spec-matrix-img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.spec-matrix-img-wrap:hover .spec-matrix-img {
    transform: scale(1.08);
}

.btn-matrix-enquire {
    background: #e52e2d;
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 0.95rem;
    border-radius: 5px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-matrix-enquire:hover {
    background: #c8232c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 46, 45, 0.4);
}









