/* OMRAXIS Modern Premium Design System & Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --primary: #134074;
    --primary-dark: #0b2545;
    --primary-light: #1d4e89;
    --secondary: #0062ff;
    --accent: #00c2ff;
    --bg-dark: #07162c;
    --bg-light: #f4f7fa;
    --text-dark: #1e293b;
    --text-light: #576880;
    --text-white: #ffffff;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --error: #ef4444;
    --success: #10b981;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(7, 22, 69, 0.06);
    --shadow-lg: 0 16px 40px rgba(7, 22, 69, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Layout & Spacing */
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --max-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-dark h2 {
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.section-dark .section-subtitle {
    color: var(--slate-gray-blue);
}

/* Grid & Flex Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Buttons styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 98, 255, 0.25);
}

.btn-primary:hover {
    background-color: #0052d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 255, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Header & Navbar navigation */
.header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.logo-separator {
    width: 2px;
    height: 32px;
    background-color: var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    border-radius: var(--border-radius-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
    background-color: transparent !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 24px;
}

.btn-nav {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(11, 37, 69, 0.15);
}

.btn-nav:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 98, 255, 0.25);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    list-style: none;
    z-index: 1100;
    border: 1px solid var(--border-color);
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-item a:hover {
    background-color: var(--bg-light);
    color: var(--secondary);
    padding-left: 24px;
}

/* Mobile Menu Drawer Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1200;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section style */
.hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 90px;
    position: relative;
    background-color: #e6e8eb; /* Light gray background matching the mockup! */
    color: #0b2e59; /* Dark blue/navy text color */
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-line-indicator {
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.hero-tagline-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    vertical-align: middle;
}

.hero-title {
    font-size: 3.1rem;
    color: #0b2e59 !important; /* Dark blue/navy color */
    font-weight: 800 !important;
    margin: 20px 0 24px 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #475569; /* Slate gray text color for contrast on light background */
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero .btn-outline-white {
    color: #0b2e59 !important;
    border-color: rgba(11, 46, 89, 0.6) !important;
}

.hero .btn-outline-white:hover {
    border-color: #0b2e59 !important;
    background-color: rgba(11, 46, 89, 0.08) !important;
    color: #0b2e59 !important;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: var(--white);
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
    background-color: var(--white);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

/* Features Row Banner styling */
.features-banner {
    background-color: var(--primary-dark);
    padding: 30px 0;
    border-bottom: 4px solid var(--secondary);
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    padding: 0 10px;
}

.feature-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon-wrapper {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* Product Cards style */
.product-range-title-container {
    text-align: center;
    margin-bottom: 56px;
}

.product-range-title-container h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.product-range-title-container p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.product-grid-wrap {
    margin-bottom: 50px;
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 32px 24px;
    border: 1px solid rgba(19, 64, 116, 0.08);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 98, 255, 0.15);
}

.product-card:hover::before {
    width: 60px;
}

.product-card-image {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

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

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-divider {
    width: 30px;
    height: 2px;
    background-color: var(--border-color);
    margin: 12px 0 8px 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-card-divider {
    background-color: var(--secondary);
    width: 50px;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* About Us homepage section styling */
.about-section {
    padding: 95px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: stretch;
}

.about-text-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.about-text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.about-text-content p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-factory-img-wrap {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 240px;
}

.about-factory-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-factory-img-wrap:hover img {
    transform: scale(1.04);
}

/* Stats Box styling */
.stats-box {
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.stat-info p {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Inner Page Layout & Styles */
.inner-page-header {
    padding: 120px 0 60px 0;
    background: linear-gradient(135deg, #05162a 0%, #134074 100%);
    text-align: center;
}

.inner-page-header h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.inner-page-header p {
    color: #b0c2de;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Products Page Tabs Container */
.catalogue-container {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(10, 77, 206, 0.02);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Redesigned 2-column layout */
.catalogue-grid-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

.product-nav-sidebar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(10, 77, 206, 0.02);
    position: sticky;
    top: 100px;
    z-index: 10;
}

.product-nav-sidebar h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F2D5C;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-nav-sidebar .nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-nav-sidebar .tab-btn {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #1A2E49;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    display: block;
    box-sizing: border-box;
}

.product-nav-sidebar .tab-btn:hover {
    color: #2563EB;
    background-color: rgba(37, 99, 235, 0.04);
    border-left-color: rgba(37, 99, 235, 0.4);
    transform: translateX(4px);
}

.product-nav-sidebar .tab-btn.active {
    color: #2563EB;
    border-left-color: #2563EB;
    background-color: rgba(37, 99, 235, 0.06);
    font-weight: 700;
}

.right-content-pane {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(10, 77, 206, 0.02);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.product-header-block {
    margin-bottom: 36px;
}

.product-header-block h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0F2D5C;
    margin-top: 0;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.product-header-block .product-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #1A2E49;
    margin: 0;
}

/* 4 specs top row cards */
.top-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.top-spec-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(15, 32, 92, 0.01);
    transition: transform 0.3s ease;
}

.top-spec-card:hover {
    transform: translateY(-2px);
}

.top-spec-card h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 8px;
}

.top-spec-card p {
    font-size: 0.94rem;
    line-height: 1.4;
    font-weight: 600;
    color: #0F2D5C;
    margin: 0;
}

.product-description-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #1A2E49;
    margin-bottom: 40px;
}

/* Detail Specs Premium Info Cards */
.detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.detail-spec-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 32, 92, 0.02);
}

.detail-spec-card h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 12px;
}

.detail-spec-card p {
    font-size: 0.94rem;
    line-height: 1.5;
    color: #1A2E49;
    margin: 0;
}

/* Applications modern icon cards */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.app-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 32, 92, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 24px rgba(10, 77, 206, 0.06);
}

.app-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.app-card:hover .app-card-icon {
    transform: scale(1.08);
}

.app-card p {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0F2D5C;
    margin: 0;
}

/* Searchable Table Controls */
.table-header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.table-header-block h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0F2D5C;
    margin: 0;
}

.table-search-box {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.table-search-box input, .table-search input {
    width: 100%;
    padding: 12px 18px 12px 42px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.table-search-box input:focus, .table-search input:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.table-search-box svg, .table-search::before {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 2;
}

.table-search::before {
    content: '🔍';
    font-size: 0.9rem;
    opacity: 0.5;
}

.premium-data-table-container, .table-container {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(15, 32, 92, 0.02);
    width: 100%;
    overflow-x: auto;
}

.premium-data-table, table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.premium-data-table th, th {
    background-color: #f8fafc;
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F2D5C;
    border-bottom: 1px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.premium-data-table td, td {
    padding: 16px 20px;
    font-size: 0.92rem;
    color: #1A2E49;
    border-bottom: 1px solid #e2e8f0;
}

.premium-data-table tr:last-child td, tr:last-child td {
    border-bottom: none;
}

.premium-data-table tr:nth-child(even), tr:nth-child(even) {
    background-color: #f8fafc;
}

.premium-data-table tr:hover, tr:hover {
    background-color: rgba(37, 99, 235, 0.04);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.available {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

/* Bottom CTA Card styling */
.bottom-cta-card {
    background: #0F2D5C;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(15, 32, 92, 0.1);
}

.bottom-cta-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 12px;
    color: #ffffff;
}

.bottom-cta-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 28px auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-actions .btn {
    padding: 12px 28px;
    font-size: 0.94rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background: #2563EB;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-actions .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-actions .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjust */
@media (max-width: 1200px) {
    .top-spec-grid, .detail-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .catalogue-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-nav-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .top-spec-grid, .detail-spec-grid, .apps-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Process (Ordering) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-dark);
    z-index: 10;
    font-size: 1.05rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-marker {
    background-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 98, 255, 0.2);
}

.timeline-content {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 98, 255, 0.2);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Forms & Inputs styling */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--bg-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 98, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Contact Info Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.contact-info-text p, .contact-info-text a {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

/* Alert Boxes style */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.92rem;
    display: none;
    border-left: 4px solid transparent;
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-color: var(--success);
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: var(--error);
}

/* Footer style */
.footer {
    background-color: var(--bg-dark);
    color: #94a3b8;
    padding: 80px 0 40px 0;
    border-top: 4px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-col h4 {
    color: var(--white) !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #cbd5e1;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
    color: #cbd5e1;
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Animations declarations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Media Queries rules */
@media screen and (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .feature-item:nth-child(3) {
        border-right: none;
    }
    .feature-item:nth-child(4), .feature-item:nth-child(5) {
        grid-row: 2;
    }
    .feature-item:nth-child(4) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 70px 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        border-right: none !important;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Mobile Navigation menu */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        box-shadow: -6px 0 24px rgba(7, 22, 69, 0.08);
        flex-direction: column;
        align-items: stretch;
        padding: 40px 24px;
        transition: var(--transition-normal);
        z-index: 999;
        gap: 16px;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-item {
        height: auto;
        display: block;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav {
        margin-top: 12px;
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        display: none;
        padding-left: 20px;
        margin-top: 8px;
        border-top: none;
        border-left: 2px solid var(--secondary);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 2px;
    }
}

@media screen and (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .tab-pane {
        padding: 24px 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* New Redesigned Layout Styles - Matching Mockup Screenshot */

/* Hero tag & title */
.hero-subtitle-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
    display: inline-block;
}

/* Floating Features Banner (Overlapping the Hero) */
.features-banner {
    background-color: transparent;
    padding: 0;
    margin-top: -65px; /* Overlaps hero */
    position: relative;
    z-index: 10;
}

.features-container {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(7, 22, 69, 0.08);
    padding: 32px 24px;
    border: 1px solid rgba(19, 64, 116, 0.06);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 10px;
}

.feature-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.feature-icon-wrapper {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Product Section Left aligned title, right view all, blue bottom line */
.product-range-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 48px;
    position: relative;
}

.product-range-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--secondary);
}

.product-range-title span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 4px;
}

.product-range-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

/* Product Cards simple (white, borderless, rounded, shadow, no descriptions) */
.product-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.product-card-simple {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(7, 22, 69, 0.04);
    padding: 28px 16px;
    border: 1px solid rgba(19, 64, 116, 0.05);
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(7, 22, 69, 0.08);
    border-color: rgba(0, 98, 255, 0.1);
}

.product-card-simple svg, .product-card-simple .product-card-image {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.product-card-simple:hover svg, .product-card-simple:hover .product-card-image {
    transform: scale(1.06);
}

.product-card-simple h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

/* Engineering Trust Split Section (slanted edge overlap) */
.split-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    background-color: transparent;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-left {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 70px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.split-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -35px;
    width: 70px;
    height: 100%;
    background-color: var(--primary-dark);
    transform: skewX(-7deg);
    z-index: 1;
}

.split-right {
    position: relative;
    overflow: hidden;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-left-content {
    position: relative;
    z-index: 2;
}

.split-left-content span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.split-left-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 12px 0 20px 0;
    letter-spacing: -0.5px;
}

.split-left-content p {
    font-size: 0.95rem;
    color: #b0c2de;
    line-height: 1.65;
    margin-bottom: 24px;
}

.split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--white);
}

.split-list-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Stats card banner (floating below split section) */
.stats-card-banner {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(7, 22, 69, 0.08);
    padding: 32px 48px;
    margin-top: -36px;
    position: relative;
    z-index: 5;
    border: 1px solid rgba(19, 64, 116, 0.06);
}

.stats-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card-item {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.stat-card-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.stat-card-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-card-info h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.stat-card-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 2px;
}

/* Our Process timeline sequence */
.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 48px;
    position: relative;
    gap: 16px;
}

.process-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.process-circle {
    width: 64px;
    height: 64px;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
    transition: var(--transition-normal);
    z-index: 2;
}

.process-node:hover .process-circle {
    background-color: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 98, 255, 0.35);
}

.process-node h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 16px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-node p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.35;
}

.process-arrow {
    position: absolute;
    top: 32px;
    right: -10%;
    color: var(--border-color);
    font-size: 1.1rem;
    font-weight: bold;
    z-index: 1;
    width: 20%;
    text-align: center;
    pointer-events: none;
}

/* Ready to Source CTA banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.96) 0%, rgba(19, 64, 116, 0.85) 100%),
                url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 56px 0;
    color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-text h2 {
    font-size: 2.1rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-text p {
    color: #b0c2de;
    font-size: 0.98rem;
}

.cta-btn {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 98, 255, 0.25);
    border: none;
    outline: none;
}

.cta-btn:hover {
    background-color: #0052d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 255, 0.35);
}

/* Footer bottom layout and social media links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive Overrides */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .feature-item:nth-child(3) {
        border-right: none;
    }
    .feature-item:nth-child(4), .feature-item:nth-child(5) {
        grid-row: 2;
    }
    .feature-item:nth-child(4) {
        border-right: 1px solid var(--border-color);
    }
    .stats-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-card-item:nth-child(2) {
        border-right: none;
    }
    .stat-card-item:nth-child(3), .stat-card-item:nth-child(4) {
        grid-row: 2;
    }
    .stat-card-item:nth-child(3) {
        border-right: 1px solid var(--border-color);
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-item {
        border-right: none !important;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-color);
    }
    .feature-item:last-child {
        border-bottom: none;
    }
    .features-banner {
        margin-top: -30px;
    }
    .product-range-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-left::after {
        display: none;
    }
    .split-left {
        padding: 48px 32px;
    }
    .split-right {
        height: 240px;
    }
    .stats-card-banner {
        margin-top: -20px;
        padding: 24px;
    }
    .stats-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat-card-item {
        border-right: none !important;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-color);
        justify-content: flex-start;
    }
    .stat-card-item:last-child {
        border-bottom: none;
    }
    .process-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .process-arrow {
        display: none;
    }
    .cta-container {
        padding: 0 24px;
        text-align: center;
        justify-content: center;
    }
    .cta-text {
        width: 100%;
    }
    .cta-btn {
        width: 100%;
    }
}

/* New Mockup Redesign Styles - Layout 3 */

/* 5 Column Product Cards with gray bottom strip */
.product-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.product-card-strip {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px rgba(7, 22, 69, 0.04);
    border: 1px solid rgba(19, 64, 116, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

/* Scroll Entrance Animation State */
.product-grid-4.animate-in .product-card-strip {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease-in-out,
                border-color 0.35s ease-in-out;
}

/* Stagger delays for 8 cards */
.product-grid-4.animate-in .product-card-strip:nth-child(1) { transition-delay: 0ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(2) { transition-delay: 80ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(3) { transition-delay: 160ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(4) { transition-delay: 240ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(5) { transition-delay: 320ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(6) { transition-delay: 400ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(7) { transition-delay: 480ms; }
.product-grid-4.animate-in .product-card-strip:nth-child(8) { transition-delay: 560ms; }

.product-card-strip:hover {
    transform: translateY(-9px);
    box-shadow: 0 12px 32px rgba(0, 98, 255, 0.18);
    border-color: rgba(0, 98, 255, 0.2);
}

.product-card-strip-img {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    aspect-ratio: 1.25 / 1;
    overflow: hidden;
}

.product-card-strip-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease-in-out;
    transform: scale(var(--base-scale, 1));
    pointer-events: none;
}

.product-card-strip:hover .product-card-strip-img img {
    transform: scale(calc(var(--base-scale, 1) * 1.05));
}

.product-card-strip-footer {
    background-color: #f1f5f9;
    padding: 12px 16px;
    border-top: 1px solid rgba(19, 64, 116, 0.04);
    text-align: left;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-strip-footer h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    transition: color 0.35s ease-in-out;
}

.product-card-strip:hover .product-card-strip-footer h3 {
    color: var(--secondary);
}

.product-card-strip-desc {
    font-size: 0.68rem;
    color: var(--text-light);
    line-height: 1.35;
    margin-top: 2px;
    margin-bottom: 6px;
}

.product-card-strip-details {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    width: fit-content;
    transition: color 0.3s ease-in-out;
}

.product-card-strip-details span {
    display: inline-block;
}

.product-card-strip-details .arrow {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.product-card-strip:hover .product-card-strip-details {
    color: var(--secondary);
}

.product-card-strip:hover .product-card-strip-details .arrow {
    transform: translateX(4px);
}

/* Our Strength split section */
.strength-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-dark);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.strength-left {
    padding: 56px 48px;
    color: var(--white);
}

.strength-left span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strength-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 8px 0 24px 0;
}

.strength-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #b0c2de;
}

.strength-item svg {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.strength-right {
    position: relative;
}

.strength-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Industries We Serve Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.industries-grid-row-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
}

.industry-card-item {
    background-color: var(--white);
    border: 1px solid rgba(19, 64, 116, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(7, 22, 69, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.industry-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 22, 69, 0.06);
    border-color: rgba(0, 98, 255, 0.1);
}

.industry-icon {
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

/* About Section Redesign - Layout 4 */
.about-section-dark {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 64px 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Equal-ish columns */
    gap: 48px;
    align-items: stretch;
}

.about-dark-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-dark-left h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.about-dark-left p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #b0c2de;
    margin-bottom: 28px;
}

.vision-mission-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.vision-mission-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vision-mission-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 98, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.vision-mission-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.vision-mission-text p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.about-dark-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.about-dark-right-img-container {
    width: 100%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    aspect-ratio: 2 / 1;
}

.about-dark-right-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-dark-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.about-dark-card-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 16px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: var(--transition-normal);
}

.about-dark-card-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.about-dark-card-icon {
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-dark-card-item h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #38bdf8; /* light blue */
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.about-dark-card-item p {
    font-size: 0.68rem;
    color: #94a3b8;
    line-height: 1.35;
    margin: 0;
}

/* Our Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.client-card {
    background-color: var(--white);
    border: 1px solid rgba(19, 64, 116, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-shadow: 0 4px 10px rgba(7, 22, 69, 0.02);
    transition: var(--transition-normal);
}

.client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(7, 22, 69, 0.05);
}

.client-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Latest Blogs Grid & Horizontal Cards */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.blog-card-horizontal {
    background-color: var(--white);
    border: 1px solid rgba(19, 64, 116, 0.05);
    border-radius: var(--border-radius-md, 10px);
    box-shadow: 0 4px 14px rgba(7, 22, 69, 0.04);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 130px;
    height: 215px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.blog-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 98, 255, 0.12);
    border-color: rgba(0, 98, 255, 0.22);
}

.blog-content-left {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.blog-content-left h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin: 0;
    transition: color 0.35s ease;
}

.blog-card-horizontal:hover .blog-content-left h3 {
    color: var(--secondary);
}

.blog-meta-row {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 6px;
    margin-bottom: 0;
}

.blog-readmore {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: auto;
}

.blog-readmore .arrow {
    display: inline-block;
    transition: transform 0.35s ease;
}

.blog-card-horizontal:hover .blog-readmore .arrow {
    transform: translateX(5px);
}

.blog-image-right {
    height: 100%;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-left: 1px solid rgba(19, 64, 116, 0.03);
}

.blog-image-right img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
    transform: scale(var(--base-img-scale, 1.12));
}

.blog-card-horizontal:hover .blog-image-right img {
    transform: scale(calc(var(--base-img-scale, 1.12) * 1.05)) rotate(0.8deg);
}

/* FAQ Accordion Elements */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(19, 64, 116, 0.08);
    border-radius: var(--border-radius-sm);
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
    user-select: none;
    background-color: #f8fafc;
}

.faq-header:hover {
    background-color: rgba(0, 98, 255, 0.04);
}

.faq-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-content {
    padding: 16px 24px;
    border-top: 1px solid rgba(19, 64, 116, 0.08);
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive updates */
@media screen and (max-width: 1024px) {
    .product-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-grid-row-2 {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    .about-section-dark {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .product-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .strength-section {
        grid-template-columns: 1fr;
    }
    .strength-left {
        padding: 32px 24px;
    }
    .strength-right {
        height: 240px;
    }
    .industries-grid, .industries-grid-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card-horizontal {
        grid-template-columns: 1fr 100px;
    }
}

@media screen and (max-width: 480px) {
    .product-grid-5 {
        grid-template-columns: 1fr;
    }
    .product-grid-4 {
        grid-template-columns: 1fr;
    }
    .industries-grid, .industries-grid-row-2 {
        grid-template-columns: 1fr;
    }
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Layout 5 - New Strength and CTA Banner styles */
.new-strength-section {
    padding-top: 60px;
}

.new-strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.new-strength-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(7, 22, 69, 0.02);
    text-align: left;
    transition: var(--transition-normal);
}

.new-strength-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(7, 22, 69, 0.06);
    border-color: rgba(0, 98, 255, 0.1);
}

.new-strength-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #e0f2fe; /* Light blue circular bg */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1; /* Navy icon */
    flex-shrink: 0;
}

.new-strength-card-text {
    display: flex;
    flex-direction: column;
}

.new-strength-card-title-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.new-strength-card-title-sub {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.new-strength-card-desc {
    font-size: 0.74rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* CTA Banner Section styling */
/* CTA Banner Section styling */
.cta-banner-section {
    position: relative;
    background-color: #0b1a30; /* Premium fallback background */
    color: var(--white);
    border-radius: 24px; /* Premium 24px radius */
    margin-top: 48px;
    overflow: hidden;
    padding: 0;
    min-height: 700px; /* Increased height to 700px */
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(11, 26, 48, 0.12);
}

.cta-banner-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.cta-banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transform: translateY(var(--parallax-y, 0px));
    animation: kenBurns 24s ease-in-out infinite; /* Slow zoom of 2-3% over time */
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(var(--parallax-y, 0px));
    }
    50% {
        transform: scale(1.03) translateY(var(--parallax-y, 0px));
    }
    100% {
        transform: scale(1) translateY(var(--parallax-y, 0px));
    }
}

/* Background overlay gradient: navy-to-transparent + subtle vignette */
.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 26, 48, 0.65) 0%, rgba(11, 26, 48, 0.55) 40%, rgba(11, 26, 48, 0.2) 70%, rgba(11, 26, 48, 0) 100%);
    box-shadow: inset 0 0 120px rgba(11, 26, 48, 0.6); /* Subtle vignette */
    pointer-events: none;
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    max-width: 750px; /* Aligned left, centered vertically */
    padding: 80px 60px 80px 90px; /* Generous whitespace */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-headline-glow {
    font-size: 3.1rem; /* Premium big headline */
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.8px;
    position: relative;
    display: inline-block;
}

/* Subtle radial glow behind the headline only */
.cta-headline-glow::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-banner-left-line {
    width: 64px;
    height: 4px;
    background-color: #2563EB; /* Brand Blue accent line */
    margin-bottom: 28px;
    border-radius: 2px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.75;
    margin: 0 0 36px 0;
}

/* Elegant trust badge chips as glass/outline chips */
.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.trust-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05); /* Semi-transparent glass */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Thin outline */
    border-radius: 30px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    backdrop-filter: blur(4px);
    transition: all 0.250s ease;
}

.trust-badge-chip svg {
    color: #3b82f6; /* Accent color for icons */
}

.trust-badge-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--white);
}

.btn-cta-quote {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); /* Premium blue gradient */
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25); /* Soft shadow */
    transition: all 0.250s cubic-bezier(0.16, 1, 0.3, 1); /* 250ms transition */
    text-decoration: none;
}

.btn-cta-quote svg {
    transition: transform 0.250s ease;
}

.btn-cta-quote:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    transform: translateY(-3px); /* Hover lift */
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.38); /* Shadow increase */
    color: var(--white) !important;
}

.btn-cta-quote:hover svg {
    transform: translateX(4px); /* Arrow slide */
}

/* Responsive updates for Strength & CTA */
@media screen and (max-width: 1024px) {
    .new-strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner-section {
        min-height: auto;
    }
    .cta-banner-content {
        padding: 60px 40px;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .new-strength-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner-content {
        padding: 48px 24px;
    }
    .cta-headline-glow {
        font-size: 2.1rem;
    }
}

/* Home Features Horizontal Banner Styling */
.home-features-banner {
    background-color: #f8fafc; /* Very light gray-blue background */
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.home-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 10px;
}

.home-feature-item:not(:last-child) {
    border-right: 1px solid #cbd5e1;
}

.home-feature-icon {
    color: #0b2e59; /* Navy blue icon color matching the theme */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.home-feature-title {
    font-size: 0.76rem;
    font-weight: 800;
    color: #0b2e59;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.home-feature-desc {
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.35;
    margin: 0;
}

/* Responsive updates for Home Features */
@media screen and (max-width: 1100px) {
    .home-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }
    .home-feature-item:nth-child(3):not(:last-child) {
        border-right: none;
    }
}

@media screen and (max-width: 768px) {
    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-feature-item {
        border-right: none !important;
        padding-bottom: 16px;
        border-bottom: 1px solid #e2e8f0;
    }
    .home-feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ==========================================
   Megamenu / Products Dropdown Styles
   ========================================== */

/* Desktop view: 993px and up */
@media (min-width: 993px) {
    .megamenu-dropdown {
        position: relative;
    }
    
    .megamenu-panel {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px); /* Starts 8px lower for smooth upward motion */
        width: 1110px; /* Keep exact column width */
        background: linear-gradient(to bottom, #ffffff 0%, #fbfcfe 100%); /* Solid white to very soft grey vertical gradient */
        background-size: 100% 100%;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(226, 232, 240, 0.8); /* Very soft border */
        border-radius: 22px; /* Border radius 22px */
        box-shadow: 0 20px 60px rgba(15,23,42,0.10); /* Single elegant shadow */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease-out, transform 0.25s ease-out, visibility 0.25s ease-out; /* Smooth upward slide + fade */
        z-index: 1200;
        padding: 34px 36px 32px 36px; /* Spacing down by 20px */
        box-sizing: border-box;
        overflow: visible; /* Show carets */
    }
    
    /* CAD-style engineering circular floating decors (Hidden for minimal layout) */
    .megamenu-bg-decor {
        display: none !important; /* Hide background decorative shapes */
    }
        pointer-events: none;
        z-index: -1;
    }
    .decor-1 {
        width: 160px;
        height: 160px;
        top: -30px;
        right: 25%;
        border-width: 1.5px;
    }
    .decor-2 {
        width: 90px;
        height: 90px;
        bottom: 20px;
        left: 15%;
        border-style: solid;
        border-color: rgba(11, 61, 145, 0.02);
    }
    
    /* Center Caret/Triangle on Top */
    .megamenu-panel::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 8px;
        border-style: solid;
        border-color: transparent transparent rgba(226, 232, 240, 0.8) transparent;
        z-index: 1200;
        pointer-events: none;
    }
    
    .megamenu-panel::after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 7px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent; /* Pure white triangle overlay */
        z-index: 1201;
        pointer-events: none;
        margin-bottom: -1px; /* Overlap border */
    }
    
    .megamenu-dropdown:hover .megamenu-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    
    /* Large transparent background watermark */
    .megamenu-watermark {
        display: none !important; /* Hide watermark to maximize clean readability */
    }
    
    /* Top Header Section */
    .megamenu-header {
        text-align: left;
        margin-bottom: 2px; /* Reduced to pull content up */
    }
    
    .megamenu-label {
        font-size: 0.7rem;
        font-weight: 800;
        color: var(--secondary);
        letter-spacing: 1px;
        display: block;
        margin-bottom: 2px;
        text-transform: uppercase;
    }
    
    .megamenu-header h3 {
        font-size: 26px; /* Slightly larger heading */
        font-weight: 700; /* Bold */
        color: #0F2747;
        margin: 0 0 2px 0;
    }
    
    .megamenu-header p {
        font-size: 14px;
        font-weight: 400;
        color: #6B7280; /* Medium gray color */
        margin: 0;
    }
    
    /* Thin divider below the header */
    .megamenu-divider {
        height: 1px;
        background-color: rgba(11, 61, 145, 0.08);
        margin: 4px 0 12px 0; /* Reduced to pull content up */
        width: 100%;
    }
    
    /* Body layout: 100% width grid for product columns */
    .megamenu-body {
        display: grid;
        grid-template-columns: 1fr; /* Full width */
        gap: 0;
        text-align: left;
        width: 100%;
    }
    
    /* Left Side: 4 Columns with equal gaps and perfect alignment */
    .megamenu-left {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Support 4 columns */
        gap: 0; /* Gaps handled by padding for perfect border alignment */
    }
    
    .megamenu-col {
        display: flex;
        flex-direction: column;
        border-right: none; /* No vertical separator lines (separated by whitespace only) */
        padding-left: 20px; /* Symmetric padding on left */
        padding-right: 20px; /* Symmetric padding on right */
        box-sizing: border-box;
    }
    
    .megamenu-col:first-child {
        padding-left: 0; /* Align left edge of first category perfectly with header text */
    }
    
    .megamenu-col:last-child {
        border-right: none; /* No separator on the last column */
        padding-right: 0; /* Align right edge of last category perfectly */
    }
    /* Column Header */
    .megamenu-col-header {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center perfectly above category title */
        text-align: center;
        gap: 4px; /* Reduce vertical spacing between the icon and category title */
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(11, 61, 145, 0.08); /* Thin dividers */
        margin-bottom: 8px; /* Reduce gap below heading before product list */
        color: #0F2747;
        transition: color 0.25s ease;
        width: 100%;
    }
    
    .category-header-title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    
    .megamenu-col-header h4 {
        font-size: 1.05rem; /* Category heading slightly larger than product names */
        font-weight: 700; /* Bold */
        margin: 0;
        color: #0F4CBA; /* Brand Blue */
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block; /* Allow scaling */
        transform-origin: center;
        transition: color 0.2s ease, transform 0.2s ease; /* Smooth 0.2s transition */
    }
    
    .megamenu-col:hover .megamenu-col-header h4 {
        color: #0F4CBA; /* Brand Blue */
        transform: scale(1.03); /* Slight scale (1.03) */
    }
    
    .col-icon {
        color: #0B3D91; /* Metallic blue outline */
        stroke: #0B3D91;
        stroke-width: 1.8px;
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Category product thumbnails: minimal transparent layout */
    .category-thumbnail {
        width: 30px;
        height: 30px;
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px; /* Consistent spacing below icon before category heading */
        box-sizing: border-box;
        flex-shrink: 0;
        transition: transform 0.25s ease;
    }
    
    .megamenu-col:nth-child(1) .category-thumbnail { animation: none; }
    .megamenu-col:nth-child(2) .category-thumbnail { animation: none; }
    .megamenu-col:nth-child(3) .category-thumbnail { animation: none; }
    .megamenu-col:nth-child(4) .category-thumbnail { animation: none; }
    
    .category-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.25s ease;
    }
    
    /* Category thumbnail hover effect: minimal zoom */
    .megamenu-col:hover .category-thumbnail img {
        transform: scale(1.05); /* Slight zoom on icon hover */
    }
    
    /* Product Links inside rounded list items */
    .megamenu-links {
        display: flex;
        flex-direction: column;
        gap: 0; /* Handled by 1px margin-bottom on cards */
    }
    
    /* Clean typography list link instead of visual card */
    .megamenu-item-card {
        display: flex;
        align-items: center;
        padding: 4px 8px; /* Compact padding to save height space inside columns */
        font-size: 15px; /* Font size explicitly 15px */
        font-weight: 500; /* Items font weight: 500 */
        color: #1F2937; /* Dark gray product names (#1F2937) */
        border-radius: 6px;
        text-decoration: none;
        line-height: 1.4; /* Reduced line-height */
        transition: transform 0.2s ease, color 0.2s ease; /* 0.2s ease transition */
        background: transparent;
        border: none;
        box-shadow: none;
        margin-bottom: 2px; /* Compact vertical spacing */
        position: relative;
        cursor: pointer;
        opacity: 0;
        transform: translateY(6px);
        box-sizing: border-box;
        height: auto;
        white-space: nowrap; /* Prevent unnecessary text wrapping */
    }
    
    /* Disable left blue accent line */
    .megamenu-item-card::before {
        display: none !important;
    }
    
    /* Hide the small blue dot on list links to keep it minimal and corporate */
    .megamenu-item-card .item-dot {
        display: none !important;
    }
    
    /* Disable right arrow from card list link */
    .megamenu-item-card .item-arrow {
        display: none !important;
    }
    
    /* Hover state for product list links */
    .megamenu-item-card:hover {
        background: transparent !important; /* No background change */
        color: #0F4CBA !important; /* Brand Blue text (#0F4CBA) */
        transform: translateX(4px) !important; /* Smooth 4px slide to the right */
        box-shadow: none !important;
        border: none !important;
        cursor: pointer;
        transition: transform 0.2s ease, color 0.2s ease !important; /* 0.2s ease transition */
    }
    
    /* Staggered load delays for column entry */
    .megamenu-col {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 400ms ease, transform 400ms ease;
    }
    
    .megamenu-dropdown:hover .megamenu-col {
        opacity: 1;
        transform: translateY(0);
    }
    .megamenu-dropdown:hover .megamenu-col:nth-child(1) { transition-delay: 50ms; }
    .megamenu-dropdown:hover .megamenu-col:nth-child(2) { transition-delay: 100ms; }
    .megamenu-dropdown:hover .megamenu-col:nth-child(3) { transition-delay: 150ms; }
    .megamenu-dropdown:hover .megamenu-col:nth-child(4) { transition-delay: 200ms; }
    
    /* Staggered card fade-in on dropdown hover */
    .megamenu-dropdown:hover .megamenu-item-card {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Column 1 Delays */
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(1) { transition: opacity 300ms ease 100ms, transform 300ms ease 100ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(2) { transition: opacity 300ms ease 130ms, transform 300ms ease 130ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(3) { transition: opacity 300ms ease 160ms, transform 300ms ease 160ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(4) { transition: opacity 300ms ease 190ms, transform 300ms ease 190ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(5) { transition: opacity 300ms ease 220ms, transform 300ms ease 220ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(6) { transition: opacity 300ms ease 250ms, transform 300ms ease 250ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(1) .megamenu-item-card:nth-child(7) { transition: opacity 300ms ease 280ms, transform 300ms ease 280ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    
    /* Column 2 Delays */
    .megamenu-col:nth-child(2) .megamenu-item-card:nth-child(1) { transition: opacity 300ms ease 150ms, transform 300ms ease 150ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(2) .megamenu-item-card:nth-child(2) { transition: opacity 300ms ease 180ms, transform 300ms ease 180ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(2) .megamenu-item-card:nth-child(3) { transition: opacity 300ms ease 210ms, transform 300ms ease 210ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(2) .megamenu-item-card:nth-child(4) { transition: opacity 300ms ease 240ms, transform 300ms ease 240ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(2) .megamenu-item-card:nth-child(5) { transition: opacity 300ms ease 270ms, transform 300ms ease 270ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(2) .megamenu-item-card:nth-child(6) { transition: opacity 300ms ease 300ms, transform 300ms ease 300ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    
    /* Column 3 Delays */
    .megamenu-col:nth-child(3) .megamenu-item-card:nth-child(1) { transition: opacity 300ms ease 200ms, transform 300ms ease 200ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(3) .megamenu-item-card:nth-child(2) { transition: opacity 300ms ease 230ms, transform 300ms ease 230ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(3) .megamenu-item-card:nth-child(3) { transition: opacity 300ms ease 260ms, transform 300ms ease 260ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(3) .megamenu-item-card:nth-child(4) { transition: opacity 300ms ease 290ms, transform 300ms ease 290ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(3) .megamenu-item-card:nth-child(5) { transition: opacity 300ms ease 320ms, transform 300ms ease 320ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    
    /* Column 4 Delays */
    .megamenu-col:nth-child(4) .megamenu-item-card:nth-child(1) { transition: opacity 300ms ease 250ms, transform 300ms ease 250ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }
    .megamenu-col:nth-child(4) .megamenu-item-card:nth-child(2) { transition: opacity 300ms ease 280ms, transform 300ms ease 280ms, background 250ms ease 0s, border-color 250ms ease 0s, box-shadow 250ms ease 0s; }

    /* Right Side: Premium Product Showcase Card (180px wide, height reduced by 20%) */
    /* Right Side: Premium Product Showcase Card (Hidden to maximize category columns space) */
    .megamenu-featured {
        display: none !important; /* Hide completely to maximize category columns space */
    }
    
    .megamenu-featured:hover {
        transform: translateY(-6px); /* Card hover: translateY -6px */
        border-color: rgba(11, 61, 145, 0.15);
        box-shadow: 0 20px 45px rgba(10, 30, 70, 0.12); /* Shadow increases */
    }
    
    /* Image Showcase container: houses the collage */
    /* Image Showcase container: houses the collage with soft blue glow */
    .featured-img-container {
        height: 110px; /* Reduced from 160px (saves space) */
        border-radius: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle, rgba(11, 61, 145, 0.08) 0%, transparent 75%); /* Soft blue glow */
        border: none;
        padding: 4px;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
    }
    
    .featured-collage {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float-collage 4s ease-in-out infinite alternate; /* Subtle floating effect */
    }
    
    @keyframes float-collage {
        0% { transform: translateY(0); }
        100% { transform: translateY(-5px); }
    }
    
    .collage-card {
        position: absolute;
        background-color: transparent; /* No white background */
        border: none; /* No border */
        border-radius: 0;
        padding: 0;
        box-shadow: none; /* No box-shadow */
        display: flex;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0 6px 12px rgba(10, 30, 70, 0.08)); /* Soft shadow on the transparent image itself */
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .collage-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .card-left {
        width: 52px; /* Enlarged from 48px */
        height: 52px;
        left: 10px; /* Centered in narrower card space */
        transform: rotate(-10deg);
        z-index: 1;
    }
    
    .card-center {
        width: 64px; /* Enlarged from 58px */
        height: 64px;
        z-index: 2;
        filter: drop-shadow(0 8px 16px rgba(10, 30, 70, 0.12));
    }
    
    .card-right {
        width: 52px; /* Enlarged from 48px */
        height: 52px;
        right: 10px; /* Centered in narrower card space */
        transform: rotate(10deg);
        z-index: 1;
    }
    
    /* Hover micro-interactions for collage elements */
    .megamenu-featured:hover .card-left {
        transform: rotate(-14deg) translateX(-4px) scale(1.05);
    }
    
    .megamenu-featured:hover .card-center {
        transform: translateY(-3px) scale(1.08);
    }
    
    .megamenu-featured:hover .card-right {
        transform: rotate(14deg) translateX(4px) scale(1.05);
    }
    
    .featured-content-compact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        padding: 12px 4px 0 4px;
        box-sizing: border-box;
        flex-grow: 1; /* Stretch to fill available vertical space */
        justify-content: space-between; /* Space out elements nicely */
    }
    
    .featured-content-compact h5 {
        font-size: 0.92rem;
        font-weight: 700;
        color: #0F2747;
        margin: 0 0 6px 0;
    }
    
    .featured-content-compact p {
        font-size: 0.78rem;
        color: #64748B;
        margin: 0 0 14px 0;
        line-height: 1.4;
    }
    
    /* Short feature lines on the right-side preview card */
    .featured-features {
        list-style: none;
        padding: 0;
        margin: 0 0 16px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .featured-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #1E293B; /* High contrast text */
    }
    
    .featured-features li svg {
        flex-shrink: 0;
    }
    
    /* View All Products CTA Button in dark navy blue */
    .featured-card-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 10px 16px;
        background: #0B3D91; /* Dark navy blue */
        border: 1px solid #0B3D91;
        border-radius: 8px;
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        box-sizing: border-box;
        transition: all 250ms ease;
    }
    
    .featured-card-cta .cta-arrow {
        transition: transform 250ms ease;
    }
    
    .megamenu-featured:hover .featured-card-cta {
        background: #0F2747; /* Slightly darker navy highlight */
        border-color: #0F2747;
        color: #ffffff;
        transform: translateY(-2px); /* Lift */
        box-shadow: 0 4px 15px rgba(11, 61, 145, 0.3); /* Glow */
    }
    
    .megamenu-featured:hover .featured-card-cta .cta-arrow {
        transform: translateX(4px); /* Arrow slides */
    }

    /* Hide mobile structures on desktop */
    .mobile-megamenu-accordion {
        display: none !important;
    }
}

/* Mobile view: 992px and down */
@media (max-width: 992px) {
    /* Hide desktop structure */
    .megamenu-panel {
        display: none !important;
    }
    
    .mobile-megamenu-accordion {
        display: none;
        padding-left: 16px;
        margin-top: 8px;
        border-left: 2px solid var(--secondary);
        width: 100%;
    }
    
    .megamenu-dropdown.active .mobile-megamenu-accordion {
        display: block;
    }
    
    .mobile-category-group {
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        padding-bottom: 8px;
    }
    
    .mobile-category-group:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .mobile-category-title {
        font-size: 0.88rem;
        font-weight: 700;
        color: #0F2747;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        padding: 8px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.2s ease;
    }
    
    .mobile-category-group.active .mobile-category-title {
        color: var(--secondary);
    }
    
    .mobile-category-products {
        display: none;
        flex-direction: column;
        gap: 6px;
        padding-left: 12px;
        margin-top: 4px;
        padding-bottom: 4px;
    }
    
    .mobile-product-link {
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text-light);
        padding: 6px 0;
        display: block;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .mobile-product-link:hover {
        color: var(--secondary);
    }
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs-wrapper {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    margin-bottom: 35px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: #cbd5e1;
    font-size: 0.8rem;
}

.breadcrumbs .active-crumb {
    color: #0F2747;
    font-weight: 600;
}

/* Product Hero Section */
.product-hero-section {
    padding-bottom: 50px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.main-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.main-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* Disable pointer events globally on all product images to prevent browser extensions from overlaying search/zoom icons */
.kb-img-container img,
.related-grid img,
.card img,
.thumbnail-card img {
    pointer-events: none;
}

.thumbnail-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.thumbnail-card {
    width: 76px;
    height: 76px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.thumbnail-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-card.active, .thumbnail-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(0, 98, 255, 0.12);
}

/* Product Info */
.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info-col h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0F2747;
    margin: 0;
    line-height: 1.2;
}

.product-info-col .standard-label {
    display: inline-flex;
    background: #F5F9FF;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    width: fit-content;
    border: 1px solid rgba(0, 98, 255, 0.15);
}

.product-info-col .description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.product-meta-list {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-meta-item {
    display: flex;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-meta-item strong {
    width: 160px;
    color: #0f2747;
    flex-shrink: 0;
}

.product-meta-item span {
    color: var(--text-light);
}

.product-hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .product-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .product-hero-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Tab details and content blocks */
.product-content-block {
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
}

.product-content-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0F2747;
    margin-bottom: 24px;
}

.product-content-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Related Products */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Premium Searchable Dropdown Form Component (Contact Page RFQ Form)
   ========================================================================== */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary-dark);
    background-color: var(--bg-light);
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.custom-select-container.active .custom-select-trigger {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 98, 255, 0.1);
}

.trigger-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.trigger-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--text-light);
}

.custom-select-container.active .trigger-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu Panel */
.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 420px;
    background-color: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-sizing: border-box;
}

.custom-select-container.active .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search Box Container */
.dropdown-search-wrapper {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    background-color: #f8fafc;
}

.dropdown-search-wrapper .search-icon {
    color: #94a3b8;
    margin-right: 10px;
    flex-shrink: 0;
}

.dropdown-search-input {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    outline: none !important;
    width: 100% !important;
    color: var(--primary-dark) !important;
    box-shadow: none !important;
}

/* Scrollable Options list */
.dropdown-options-list {
    overflow-y: auto;
    flex-grow: 1;
    max-height: 360px; /* Space for search */
}

/* Sticky Category Header */
.dropdown-category-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: var(--white);
    padding: 12px 16px 6px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

/* Option Row */
.dropdown-option {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 16px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: background-color 0.15s ease, color 0.15s ease;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
}

.dropdown-option:hover {
    background-color: #f0f7ff; /* Light blue background */
    color: var(--secondary);
}

.dropdown-option.selected {
    background-color: #0b3d91 !important; /* Brand Blue background */
    color: var(--white) !important;
}

/* Option Icon */
.dropdown-option .option-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 12px;
    flex-shrink: 0;
}

.dropdown-option .option-icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    stroke: currentColor;
}

.dropdown-option.selected .option-icon-svg {
    stroke: var(--white);
}

/* No results state */
.dropdown-no-results {
    padding: 24px 16px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
}

