@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500&display=swap");

/* ==========================================================================
   premium Modern Theme for DR Rototech Solutions
   ========================================================================== */
:root {
    /* Premium Color Palette */
    --primary: #0088cc;
    --primary-light: #4db8ff;
    --primary-dark: #005f8f;
    --secondary: #ff8c00;
    --secondary-light: #ffaa42;
    --dark: #0f172a;
    --darker: #0f172a;
    --text-muted: #64748b;
    --light: #f8fafc;
    --surface: #ffffff;
    --surface-alt: #f1f5f9;
    /* Gradients */
    --brand-gradient: linear-gradient(135deg, var(--primary) 0%, #00bfff 100%);
    --warm-gradient: linear-gradient(135deg, var(--secondary) 0%, #ffbb00 100%);
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-floating: 0 30px 40px -10px rgba(0, 136, 204, 0.15);
    /* Typography */
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    /* Geometry */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-pill: 9999px;
    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--darker);
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
}

.bg-light-surface {
    background-color: var(--surface-alt);
}

.bg-gradient-brand {
    background: var(--brand-gradient);
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: 0 10px 20px -5px rgba(0, 136, 204, 0.3);
}

.btn-premium:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 136, 204, 0.4);
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary);
}

.btn-outline-premium:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.glass-navbar {
    z-index: 1050;
    transition: var(--transition-smooth);
    padding: 20px 0;
    /* Space for the floating look */
}

.glass-navbar .nav-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

.glass-navbar.scrolled {
    padding: 10px 0;
}

.glass-navbar.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.glass-navbar.scrolled .nav-logo {
    height: 50px;
}

.nav-links .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark) !important;
    padding: 8px 15px !important;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0, 136, 204, 0.05);
}

/* Mobile Toggler Styling */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .glass-navbar .nav-container {
        border-radius: var(--radius-lg);
        padding: 5px 20px;
        width: 95%;
        margin: 0 auto;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: white;
        border-radius: var(--radius-md);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        max-height: 80vh;
        overflow-y: auto;
    }

    .dropdown-menu-custom {
        position: static !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        width: 100%;
        background: transparent !important;
    }

    .dropdown-menu-custom.show {
        display: block !important;
    }

    .nav-links .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links .nav-link:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-premium {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    padding-top: 150px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 136, 204, 0.15);
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 140, 0, 0.15);
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: rgba(77, 184, 255, 0.1);
    animation-delay: -10s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.hero-image-wrapper {
    position: relative;
    /* Optional geometric soft bg behind image */
    background: linear-gradient(135deg, var(--surface-alt) 0%, white 100%);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-floating);
}

.hero-main-img {
    border-radius: calc(var(--radius-lg) - 10px);
    /* In case using placeholder, avoid harsh look */
    mix-blend-mode: multiply;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    bottom: -20px;
    right: -20px;
    animation: float 6s infinite ease-in-out;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.158);
    display: flex;
    align-items: center;
    justify-content: center;
}

i.fa-solid.fa-check.text-success {
    color: #e57d00 !important;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================================
/* 1. Global Dropdown Styling */
.dropdown-menu-custom {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 136, 204, 0.15);
    border-radius: 20px;
    padding: 12px 8px;
    min-width: 280px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.05);
    margin-top: 0 !important;
    border-top: 4px solid var(--primary);
    /* Animation & Transitions */
    transform: translateY(15px) scale(0.98);
    transform-origin: top center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Desktop Hover Experience (>= 1200px) */
@media (min-width: 1200px) {
    .dropdown-menu-custom {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-item.dropdown:hover .dropdown-menu-custom {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto;
    }
}

/* 3. Mobile & Click Toggle (Standard Bootstrap Interaction) */
.dropdown-menu-custom.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto;
}

/* 4. Dropdown Item Styling */
.dropdown-item-custom {
    position: relative;
    padding: 12px 20px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.dropdown-item-custom:hover {
    background: linear-gradient(90deg, rgba(0, 136, 204, 0.08) 0%, rgba(0, 136, 204, 0.02) 100%);
    color: var(--primary);
    padding-left: 28px;
}

/* Proper Bullet Indicator */
.dropdown-item-custom::before {
    content: '';
    position: absolute;
    left: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.dropdown-item-custom:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Values / About
   ========================================================================== */
.value-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-floating);
    border-color: rgba(0, 136, 204, 0.2);
}

/* ==========================================================================
   Bento Box Premium Grid (Industrial)
   ========================================================================== */
.bento-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(280px, auto);
}

@media (max-width: 991px) {
    .bento-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bento-grid-premium {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(220px, auto);
    }
}

.bento-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 136, 204, 0.2);
}

.bento-span-2 {
    grid-column: span 2;
}

.bento-span-2-row {
    grid-row: span 2;
}

.bento-card-image {
    padding: 0;
    color: white;
    border: none;
}

.bento-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-image:hover .bento-bg-img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.bento-card-image:hover .bento-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.98) 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: auto;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-text-card {
    background: #fff;
}

/* New Premium Card Styles */
.glass-card-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    padding: 2rem;
    height: 100%;
}

.glass-card-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.2);
}

.premium-content-card {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
}

.premium-content-card:hover {
    box-shadow: var(--shadow-floating);
    border-color: rgba(0, 136, 204, 0.15);
}

.badge-soft-primary {
    background: rgba(0, 136, 204, 0.1) !important;
    color: var(--primary) !important;
    border: none !important;
    font-weight: 700;
}

.badge-pill-outline {
    background: white;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.badge-pill-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.machine-list-item {
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.machine-list-item:hover {
    background: white !important;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
    border-color: rgba(0, 136, 204, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* Abstract Gradients for Icons */
.gradient-1 {
    background: linear-gradient(135deg, #0088cc, #00bfff);
}

.gradient-2 {
    background: linear-gradient(135deg, #ff8c00, #ffaa42);
}

.gradient-3 {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.gradient-4 {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.gradient-5 {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.gradient-6 {
    background: linear-gradient(135deg, #0f172a, #334155);
}

/* ==========================================================================
   Capabilities
   ========================================================================== */
.capabilities-clean {
    background: white;
}

.feature-list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-clean li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.fl-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 5px;
}

.fl-text strong {
    display: block;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.fl-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.capabilities-image-stack {
    position: relative;
    padding: 20px 20px 20px 0;
}

.main-cap-img {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.main-cap-img:hover {
    transform: scale(1.02);
}

.floating-stats-card {
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 2;
    min-width: 280px;
}

/* ==========================================================================
   Timeline / Process
   ========================================================================== */
.modern-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@media (max-width: 767px) {
    .timeline-line {
        display: none;
    }
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
}

.timeline-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--darker);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
    z-index: 3;
}

.tc-icon {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
    margin: 20px 0;
}

/* ==========================================================================
   Product Slider (Slick)
   ========================================================================== */
.slider-nav-clean {
    display: flex;
    gap: 15px;
}

.btn-nav-clean {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.btn-nav-clean:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Add gaps between Slick slider items */
.slick-slide {
    margin: 0 15px;
}

.slick-list {
    margin: 0 -15px;
}

.product-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pc-img-wrap {
    position: relative;
    padding-top: 75%;
    /* 4:3 Aspect */
    background: var(--surface-alt);
    overflow: hidden;
}

.pc-img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card-modern:hover .pc-img-wrap img {
    transform: translate(-50%, -50%) scale(1.1);
}

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 136, 204, 0.4);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card-modern:hover .pc-overlay {
    opacity: 1;
}

.pc-content {
    padding: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.pc-content h6 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

/* ==========================================================================
   Premium Process Section
   ========================================================================== */
.process-premium-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.k-tag-v2 {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-path-wrap {
    position: relative;
    padding-top: 40px;
}

.process-svg-path {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 0;
    pointer-events: none;
}

.process-nodes-row {
    position: relative;
    z-index: 1;
}

.process-card-premium {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
}

.process-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-floating);
    border-color: rgba(0, 136, 204, 0.2);
}

.pc-marker {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--surface-alt);
    font-size: 0.9rem;
}

.process-card-premium:hover .pc-marker {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pc-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

/* ==========================================================================
   Industrial Sticky Scroll Section
   ========================================================================== */
.industrial-sticky-section {
    position: relative;
    background: var(--darker);
    padding: 50px 0;
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 136, 204, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 204, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.industrial-bg-fixed {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%) contrast(1.2);
}

.industrial-sticky-section>.container {
    position: relative;
    z-index: 2;
}

.sticky-col {
    position: sticky;
    top: 120px;
    z-index: 2;
}

.text-stroke-industrial {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.industrial-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.industrial-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.industrial-glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 136, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 136, 204, 0.1);
}

.industrial-glass-card:hover::before {
    width: 100%;
}

.igc-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Industrial Capabilities Section
   ========================================================================== */
.industrial-capabilities {
    /* background: radial-gradient(circle at top right, var(--dark) 0%, var(--darker) 100%); */
    /* background: radial-gradient(circle at top right, #0078b5 0%, var(--darker) 100%); */
    background: #fff;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.bg-text-massive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgb(120 120 120 / 15%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .bg-text-massive {
        font-size: clamp(4rem, 20vw, 8rem);
    }
}

.ic-content-wrap {
    position: relative;
    z-index: 2;
}

.dropdown-toggle::after {
    display: none;
}

.ic-feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ic-feature-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-5px);
    border-left-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 140, 0, 0.1);
}

.ic-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 15px;
}

.ic-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.ic-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* ==========================================================================
   Industrial Dashboard Tabs
   ========================================================================== */
.industrial-dashboard-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-floating);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-nav-wrap {
    background: var(--surface-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 1rem;
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    border: none;
    gap: 1rem;
    padding-top: 1rem;
}

.dashboard-tabs .nav-item {
    margin-bottom: -1px;
}

.dashboard-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.dashboard-tabs .nav-link:hover {
    color: var(--primary);
    background: rgba(0, 136, 204, 0.05);
}

.dashboard-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.dashboard-content-pane {
    padding: 3rem;
    background: white;
}

@media (max-width: 767px) {
    .dashboard-tabs {
        flex-direction: column;
        padding-top: 0;
    }

    .dashboard-tabs .nav-link {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dashboard-content-pane {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Applications & Benefits Sections
   ========================================================================== */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.app-list-modern {
    display: flex;
    flex-direction: column;
}

.app-row-modern {
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.app-row-modern:hover {
    transform: translateX(10px);
    border-left-color: var(--primary);
    box-shadow: var(--shadow-md) !important;
}

.app-num-modern {
    opacity: 0.5;
}

.app-row-modern:hover .app-num-modern {
    opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-corporate {
    background: var(--darker);
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.social-circles {
    display: flex;
    gap: 15px;
}

.social-circles a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-circles a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-clean .ci-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.ci-item i {
    color: var(--primary);
    margin-top: 5px;
}

.ci-item p {
    margin: 0;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(0 136 204) !important;
}

.split-content-half h2 {
    color: white;
}

.split-content-half.bg-light-industrial h2 {
    color: var(--dark);
}

.split-content-half {
    padding: 85px 5%;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    position: relative;
    padding-left: 18px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s ease;
}

.footer-links li a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    color: var(--primary);
}

/* Individual Icons */
.footer-links li a::before {
    content: "\f105";
    /* home */
}

/* Hover Effect */
.footer-links li a:hover {
    color: #ff9900;
    padding-left: 22px;
}

/* ==========================================================================
   Industrial Split Screen Layout (Materials & Machines)
   ========================================================================== */
.industrial-split-section {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.split-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.split-image-half {
    width: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.split-image-half::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: var(--transition-smooth);
}

/* .industrial-split-section:hover .split-image-half::after {
    background: rgba(0, 0, 0, 0.2);
} */
.split-content-half {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 100px 5%;
    position: relative;
}

.split-content-inner {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Dark mode variations for split section */
.bg-dark-industrial {
    background: var(--dark);
    color: white;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-orange {
    border-color: var(--secondary) !important;
}

.bg-light-industrial {
    background: var(--surface-alt);
    color: var(--dark);
}

section.industrial-sticky-section.border-top.border-dark p {
    color: #fff;
}

.row.align-sticky-fix {
    align-items: flex-start;
}

/* Material tags specific styling within split */
.split-badge {
    padding: 10px 20px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-badge.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.split-badge.outline-dark {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.split-badge.outline-light {
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--dark);
}

/* Split machine item */
.split-machine-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.split-machine-item.dark-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.split-machine-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.split-machine-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.lead {
    font-size: 16px;
}

svg.text-primary {
    color: #ff8c00 !important;
}

.trust-item p.fw-bold {
    font-size: 20px;
}

.trust-item p.text-muted.small.mb-0 {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px
}

.footer-corporate .ci-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
}

.split-image-half.img-2 {
    width: 50%;
    position: relative;
    /* default */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.split-image-half.img-2 {
    background-image: url("../img/big-screen-large-img.webp");
}

/* Large screens */
@media (min-width: 1200px) and (max-width: 1500px) {
    .split-image-half.img-2 {
        background-image: url("../img/large-image-final.webp") !important;
    }
}

@media (min-width: 1501px) and (max-width: 4000px) {
    .split-image-half.img-2 {
        background-image: url("../img/big-screen-large-img.webp") !important;
    }
}

/* ==========================================================================
   Inner Hero & Breadcrumbs
   ========================================================================== */
.inner-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../img/industrial_hero_v2.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 136, 204, 0.15) 0%, transparent 70%);
}

.breadcrumb-premium {
    display: inline-flex;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
}

.breadcrumb-premium a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.breadcrumb-premium a:hover {
    color: white;
}

.breadcrumb-premium .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
}

.breadcrumb-premium .current {
    color: var(--primary-light);
    font-weight: 600;
}

/* ==========================================================================
   About Us Specifics
   ========================================================================== */
.about-image-wrap {
    position: relative;
    padding: 20px;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--brand-gradient);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-main-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.stat-item-premium {
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgb(247 150 32);
    transition: var(--transition-smooth);
    z-index: 11;
}

.stat-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    /* color: var(--text-muted); */
    font-weight: 600;
    text-transform: uppercase;
}

.feature-pill-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition-smooth);
}

.feature-pill-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.fpc-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.material-chip {
    display: inline-block;
    padding: 8px 20px;
    background: var(--surface-alt);
    border-radius: var(--radius-pill);
    font-weight: 600;
    color: var(--dark);
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.material-chip:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

h2.fw-bold.text-dark {
    font-size: 36px;
}

/* ==========================================================================
   Quality & Scalability Showcase
   ========================================================================== */
.quality-accent-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.quality-card-wrapper {
    background: #d2eaf5;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.05);
}

.quality-icon-box {
    width: 80px;
    height: 80px;
    background: var(--brand-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px -10px rgba(0, 136, 204, 0.5);
}

.scalability-feature-item {
    padding: 1.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
}

.scalability-feature-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sf-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    /* color: var(--secondary); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* ==========================================================================
   Custom Molding V2 - Premium Enhancements
   ========================================================================== */
/* Glow Bricks for Stats */
.stat-glow-brick {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(0, 136, 204, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.stat-glow-brick::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-glow-brick:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 136, 204, 0.15);
}

.stat-glow-brick:hover::after {
    opacity: 1;
}

.stat-glow-brick .stat-num {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

/* Zig-Zag Process Timeline */
.timeline-node {
    position: relative;
    padding: 3rem;
    background: white;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.node-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.4);
    border: 5px solid white;
}

.timeline-connector-v {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    left: 48.1%;
    top: 50px;
    z-index: 1;
    opacity: 0.2;
}

.strength-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.strength-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.strength-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary);
}

/* ==========================================================================
   Custom Molding V3 - Proper Trend Design (Glass & Glows)
   ========================================================================== */
.trend-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 35px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.trend-glass-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 40px 80px rgba(0, 136, 204, 0.1);
}

/* Background Soft Glows */
.ambient-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

/* Proper Stats */
.stat-proper-box {
    text-align: center;
    padding: 0 !important;
    border-radius: 0 !important;
}

.stat-proper-box:hover {
    background: none !important;
    /* border: none !important; */
    box-shadow: none !important;
    transform: none !important;
}

.stat-proper-box .stat-num {
    font-size: 44px;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.stat-proper-box .stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Fluent Manufacturing Timeline */
.fluent-timeline {
    position: relative;
    padding: 2rem 0;
}

.fluent-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            rgba(0, 136, 204, 0.3) 10%,
            rgba(255, 140, 0, 0.3) 50%,
            rgba(0, 136, 204, 0.3) 90%,
            transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.fluent-node {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.fluent-node:hover {
    background: white;
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 136, 204, 0.1);
}

.fluent-node-idx {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

/* Bento Science V3 */
.bento-science-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .bento-science-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .bento-science-grid {
        grid-template-columns: 1fr;
    }
}

.bento-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.bento-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.bento-icon-wrap {
    width: 45px;
    height: 45px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.05);
}

.grid-item {
    background: #fff;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.grid-item:hover {
    background: #f8fafc;
    z-index: 2;
}

.grid-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #0088cc;
    transition: width 0.4s ease;
}

.grid-item:hover::after {
    width: 100%;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #0088cc;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.grid-item:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.2);
}

.grid-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.grid-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.trend-glass-card {
    background: rgb(255 255 255);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 25px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Responsive */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .grid-item {
        padding: 30px;
    }
}

/* Serpentine Path (Liquid Process) */
.serpentine-container {
    position: relative;
    padding: 4rem 0;
}

.serpentine-path-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0.3;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}

.serpentine-path-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
    opacity: 0.5;
}

.process-step-pill {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.process-step-pill span {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.process-visual-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 136, 204, 0.377) !important;
    border-radius: 35px;
    padding: 2.5rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

/* Horizontal Connector Lines */
@media (min-width: 992px) {
    .row:nth-child(even) .process-visual-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -100px;
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, rgba(0, 136, 204, 0.2), transparent);
        z-index: -1;
    }

    .row:nth-child(odd) .process-visual-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -100px;
        width: 100px;
        height: 2px;
        background: linear-gradient(to left, rgba(0, 136, 204, 0.2), transparent);
        z-index: -1;
    }
}

.process-visual-card:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 136, 204, 0.12);
    transform: translateY(-5px);
}

.pulse-indicator {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: radar-pulse 2.5s infinite;
    z-index: -1;
}

@keyframes radar-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.logo-accent-blue {
    color: var(--primary) !important;
}

.logo-accent-orange {
    color: var(--secondary) !important;
}

/* enquiry */
.enquiry-page .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    padding-bottom: 30px;
}

.enquiry-page .bento-item {
    background: white;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.enquiry-page .bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #6366f1;
}

/* Span variations */
.enquiry-page .span-2 {
    grid-column: span 2;
}

.enquiry-page .row-2 {
    grid-row: span 2;
}

/* Icon Styling */
.enquiry-page .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffa73c 0%, #F69826 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Map */
.enquiry-page .map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    min-height: 250px;
    overflow: hidden;
    filter: grayscale(1);
    transition: 0.5s;
}

.enquiry-page .bento-item:hover .map-wrapper {
    filter: grayscale(0);
}

.enquiry-page kbd {
    background: #eee;
    color: #333;
    padding: 2px 6px;
    border-radius: 4px;
}

.trend-glass-card.stat-proper-box {
    background: transparent;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 992px) {
    .enquiry-page .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .enquiry-page .bento-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-page .span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 1340px) {
    .d-flex.align-items-center.gap-4.justify-content-center.justify-content-lg-start {
        gap: 15px !important;
    }

    .trust-item p.fw-bold {
        font-size: 17px;
    }

    .text-stroke-industrial {
        font-size: clamp(3rem, 6vw, 4rem);
    }
}

@media (max-width: 1200px) {
    .split-content-half {
        padding: 80px 5%;
    }
}

@media (max-width: 1024px) {

    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: none !important;
    }

    .container.nav-container {
        border-radius: 10px;
    }

    .split-content-half {
        width: 100%;
    }

    .split-image-half.img-2 {
        width: 100% !important;
        position: relative !important;
        background-size: auto !important;
        background-position: top !important;
        background-repeat: no-repeat !important;
        min-height: 361px !important;
    }

    .split-row.rw-dir {
        flex-direction: column-reverse;
    }

    .split-row.reverse .split-image-half {
        left: 25%;
    }
}

@media (max-width: 991px) {

    .split-image-half,
    .split-content-half {
        width: 100%;
    }

    .split-content-half {
        padding: 60px 20px;
    }

    .serpentine-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, #006fa7, var(--secondary), transparent);
        transform: translateX(-50%);
        z-index: 0;
        opacity: 0.6;
    }

    .process-visual-card {
        padding: 1.5rem;
        border-radius: 20px;
        text-align: center;
    }

    .process-step-pill {
        justify-content: center;
        width: 100%;
    }

    .serpentine-container {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 768px) {
    .nav-actions .btn-premium {
        display: none;
        visibility: hidden;
    }

    .hero-premium {
        padding-top: 100px;
    }

    .nav-container {
        align-items: flex-start;
        /* background-color: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none; */
    }

    .capabilities-image-stack {
        text-align: center;
    }

    h2.display-6.fw-bold.text-dark.mb-4 {
        /* display: flex; */
        /* gap: 12px; */
    }

    /* .glass-navbar{
    background-color: #fff;
} */
    .split-row.reverse .split-image-half {
        left: 0%;
    }
}

@media screen and (max-width: 576px) {
    .trust-indicators .d-flex.align-items-center.gap-4.justify-content-center.justify-content-lg-start {
        flex-direction: column;
    }

    .bento-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
        display: flex;
    }

    .g-5,
    .gx-5 {
        --bs-gutter-x: 0;
    }

    .container.ic-content-wrap p.text-muted.lead.mb-5 {
        margin-bottom: 0 !important;
    }

    .process-premium-section {
        padding: 65px 0;
    }

    .ftr-head {
        font-size: 20px;
        margin-bottom: 10px !important;
    }

    .footer-corporate .col-lg-2.col-md-6 {
        margin-top: 20px !important;
    }

    .footer-corporate .col-lg-4 {
        margin-top: 20px !important;
    }

    html,
    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .section-padding,
    .inner-hero {
        overflow: hidden;
    }

    .breadcrumb-premium {
        padding: 8px 14px;
        /* font-size: 14px; */
        border-radius: 50px;
        justify-content: center;
        text-align: center;
    }

    .breadcrumb-premium a,
    .breadcrumb-premium .current {
        white-space: nowrap;
    }

    /* .breadcrumb-premium .current {
        max-width: 140px;  
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: bottom;
    } */

    .breadcrumb-premium .separator {
        margin: 0 6px;
    }

    .bento-icon-wrap.mb-0 {
        padding: 18px;
    }
}

@media (max-width: 425px) {
    section#process .row.mb-5 {
        margin-bottom: 0 !important;
    }

    .contact-info-clean .ci-item {
        margin-bottom: 15px;
    }

    a.btn.btn-light.btn-lg.rounded-pill.px-5.py-3.fw-bold.shadow {
        font-size: 16px !important;
    }

    .text-stroke-industrial {
        font-size: 36px;
        -webkit-text-stroke: 1px rgb(255, 255, 255);
    }

    .quality-card-wrapper {
        padding: 25px;
    }

    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    h3 {
        font-size: 28px !important;
    }

    .col-lg-2.text-center.position-relative.order-1.order-lg-2.mb-4.mb-lg-0 {
        margin-top: 45px !important;
    }

    .serpentine-container.py-5 {
        padding-top: 0 !important;
    }
}

@media (max-width: 320px) {
    .section-padding {
        padding: 50px 0;
    }

    .breadcrumb-premium {
        font-size: 14px;
    }
}

/* ==========================================================================
   Road Safety Specific Components
   ========================================================================== */
.feature-list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-clean li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.feature-list-clean li:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
    border-color: var(--primary);
}

.fl-icon {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.app-row-modern {
    transition: var(--transition-smooth);
    cursor: default;
}

.app-row-modern:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

.app-num-modern {
    background: rgba(0, 136, 204, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary);
}

.gradient-1 i {
    color: #F7941D;
}

.prd-ul li {
    color: #000000 !important;
}

/* Product Page Extensions */
.color-dot-large {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: help;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Product Grid Custom Styles */
.prd-grid-img-wrap {
    background: #fff;
    min-height: 280px;
}

.prd-grid-img {
    max-height: 220px;
    object-fit: contain;
}

.dustbin-card-wrap {
    min-height: 300px;
}

.dustbin-card-img {
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
}

.card-hover-translate {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-translate:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

.pc-overlay a.btn-primary {
    background: var(--primary);
    color: #fff;
}
.bg-orange{
    background-color: #F7941D;
}