:root {
    --primary-red: #ff0055;
    --primary-red-hover: #cc0044;
    --dark-bg: #1A1A1A;
    --text-dark: #22252A;
    --text-light: #F8F9FA;
    --text-gray: #D1D5DB;
    --transition: all 0.3s ease-in-out;
    --header-height: 80px;
}

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

html {
    overscroll-behavior-y: none;
}


/*fix for the 125% scale screen size */

/* Maintain 100% visual appearance at 125% system/browser scaling */
@media screen and (resolution: 1.25dppx),
screen and (resolution: 120dpi) {
    html {
        zoom: 0.8;
    }

    /* Compensate for zoom: 0.8 which scales down vh units */
    .hero-section {
        min-height: calc(125vh - var(--header-height)) !important;
    }
}



body {
    padding-top: var(--header-height);
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: #FAFAFA;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================================
   Header Styles
================================== */
.main-header {
    background: #ffffff;
    height: var(--header-height);
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1496px;
    margin: 0 auto;
    height: 100%;
}

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

.logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a233a;
    letter-spacing: 0.5px;
}

.main-nav,
.main-nav .nav-links {
    height: 100%;
}

.main-nav .nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li a {
    font-weight: 600;
    font-size: 20px;
    color: #4A5568;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-red);
}

/* Simple Dropdown Styles */
.has-simple-dropdown {
    position: relative;
}

.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: #ffffff;
    border-bottom: 3px solid var(--primary-red);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.has-simple-dropdown:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, visibility 0s linear 0.15s;
}

.simple-dropdown ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.simple-dropdown ul li a {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    transition: all 0.2s ease;
    width: 100%;
    white-space: nowrap;
    gap: 1.5rem;
}

.simple-dropdown ul li a:hover {
    color: var(--primary-red);
    background-color: rgba(0, 0, 0, 0.05);
}

.simple-dropdown ul li a .arrow {
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.8;
    transform: translateY(1.5px);
    display: inline-block;
}

/* Mega Menu Styles */
.has-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 3px solid var(--primary-red);
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, visibility 0s linear 0.15s;
}

.mega-menu-col {
    flex: 1;
    max-width: 320px;
}

.mega-menu-col h4 {
    color: #111111;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    padding: 0 1.5rem;
}

.mega-menu-col .mt-4 {
    margin-top: 2rem;
}

.mega-menu-col ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.mega-menu-col ul li a {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    transition: all 0.2s ease;
    width: 100%;
}

.mega-menu-col ul li a:hover {
    color: var(--primary-red);
    background-color: rgba(0, 0, 0, 0.05);
}

.mega-menu-col ul li a .arrow {
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.8;
    transform: translateY(1.5px);
    display: inline-block;
}

/* Desktop Mega Menu Layout */
.mobile-menu {
    display: none !important;
}

@media (min-width: 769px) {
    .desktop-menu {
        display: flex !important;
    }
}

.desktop-menu-left {
    width: 250px;
    border-right: 1px solid #eaeaea;
    padding-right: 1.5rem;
}

.desktop-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-category-list li {
    margin-bottom: 0;
}

.desktop-category-list li a {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
}

.desktop-category-list li a .arrow {
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.8;
    transform: translateY(1.5px);
    display: inline-block;
    margin-left: auto;
}

.desktop-category-list li:hover a,
.desktop-category-list li.active a {
    color: var(--primary-red);
    background-color: rgba(0, 0, 0, 0.05);
}

.desktop-menu-right {
    flex: 1;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
}

.desktop-product-preview {
    width: 100%;
}

.mega-menu-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.mega-menu-product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}

.mega-menu-product-card:hover {
    transform: translateY(-5px);
}

.mega-menu-img-wrapper {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 0.75rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.mega-menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.mega-menu-empty {
    text-align: center;
    color: #666;
    font-style: italic;
    width: 100%;
    margin-top: 2rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.3);
}

.btn-primary-blue {
    background-color: #1a64f0;
    color: white;
    border: 2px solid #1a64f0;
}

.btn-primary-blue:hover {
    background-color: #0f4fc8;
    border-color: #0f4fc8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 100, 240, 0.3);
}

.btn-secondary-dark {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary-dark:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ==================================
   Hero Section Styles
================================== */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

/* Background setup mimicking screenshot: 
   industrial background with dark red gradient overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top !important;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(20, 0, 0, 0.9) 0%, rgba(150, 0, 50, 0.65) 50%, rgba(255, 0, 85, 0.5) 100%);
}

.hero-overlay-red-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(20, 0, 0, 0.9) 0%, rgba(180, 0, 60, 0.65) 50%, rgba(255, 0, 85, 0.5) 100%);
}

.hero-overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(5, 15, 45, 0.9) 0%, rgba(15, 45, 120, 0.65) 50%, rgba(40, 90, 200, 0.5) 100%);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    padding-top: clamp(4rem, 10vh, 8rem);
    padding-bottom: clamp(4rem, 10vh, 8rem);
    gap: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
    flex: 1 1 500px;
}

.hero-right-card {
    flex: 1 1 450px;
    background: white;
    border-radius: 16px;
    min-height: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .hero-right-card {
        flex-basis: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-right-card {
        min-height: 220px;
    }
}

.hero-video-card {
    flex: 1 1 450px;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto !important;
}

@media (max-width: 992px) {
    .hero-video-card {
        flex-basis: 100% !important;
        margin-top: -1rem; /* Adjust gap on mobile */
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 0, 85, 0.5);
    background: rgba(255, 0, 85, 0.15);
    color: #ffffff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.badge-blue {
    border: 1px solid rgba(133, 186, 255, 0.5);
    background: rgba(40, 90, 200, 0.2);
    color: #85BAFF;
}

.badge-gray {
    border: 1px solid rgba(203, 213, 225, 0.5);
    background: rgba(203, 213, 225, 0.15);
    color: #E2E8F0;
}


.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(180, 0, 60, 0.3);
    border: 1px solid rgba(255, 0, 85, 0.6);
    color: #FFFFFF;
    text-transform: none;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0055;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 0, 85, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 0, 85, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.5rem, 6vw + 1rem, 5.5rem);
    font-weight: 900;
    color: var(--text-light);
    line-height: 0.90;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.text-highlight {
    color: var(--primary-red);
}

.text-highlight-blue {
    color: #ff0055;
}

.long-highlight {
    display: inline-block;
    white-space: normal;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 750px;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 22px;
    border-radius: 12px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==================================
   Features Section Styles
================================== */
.features-section {
    position: relative;
    z-index: 10;
    width: 100%;
    flex-shrink: 0;
    /* Prevent the container from shrinking on mobile flex layouts */
    background: linear-gradient(to bottom, transparent 150px, #ffffff 150px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    background-color: #FCE8E9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card .feature-icon img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
}

/* ==================================
   About Section Styles
================================== */
.about-section {
    padding: 6rem 0;
    background-color: #FAFAFA;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image-col {
    flex: 1;
    position: relative;
    padding-left: 2rem;
    padding-top: 2rem;
}

.image-wrapper {
    position: relative;
}

.bg-circle {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background-color: #E2E8F0;
    border-radius: 50%;
    z-index: 1;
}

.main-about-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    background-color: var(--primary-red);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(255, 0, 85, 0.3);
}

.stats-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-card p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.about-content-col {
    flex: 1;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D3748;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-features-list {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: #4A5568;
    font-size: 1.05rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-red-hover);
    gap: 0.8rem;
}

/* ==================================
   Products Section Styles
================================== */
.products-section {
    padding: 6rem 0;
    background-color: #F8F9FA;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.products-section .section-header {
    max-width: 900px;
}

.products-section .section-subtitle {
    font-size: 1rem;
    font-weight: 700;
}

.products-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.products-section .section-desc {
    font-size: 1.25rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    /* Makes them square */
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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



.btn-hover-pdf {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #111;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    transition: max-width 0.4s ease, padding 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 4;
    opacity: 0;
    transform: translateX(10px);
    overflow: hidden;
    max-width: 48px;
    height: 48px;
    white-space: nowrap;
}

.product-card:hover .btn-hover-pdf {
    opacity: 1;
    transform: translateX(0);
}

.btn-hover-pdf:hover {
    max-width: 300px;
    padding-right: 16px;
    background: #f8f9fa;
}

.btn-hover-pdf img {
    flex-shrink: 0;
}

.pdf-text {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hover-pdf:hover .pdf-text {
    opacity: 1;
    transition-delay: 0.1s;
}

@media (max-width: 991px) {
    .btn-hover-pdf {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-overlay p {
    font-size: 0.9rem;
    margin-top: 0;
    color: #E2E8F0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.product-card:hover .product-overlay p {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.5rem;
}

/* ==================================
   Trusted Section Styles
================================== */
.trusted-section {
    padding: 4.5rem 0;
    background-color: #FFFFFF;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
}

.trusted-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #A0AEC0;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
}

.logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scrollLogos 80s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

.logo-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-item img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
}

.brand-lifelong {
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2D3748;
    letter-spacing: -1px;
}

.brand-dmart {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1A365D;
    letter-spacing: 0.5px;
}

.brand-dmart .tree {
    color: #2B6CB0;
    font-size: 1.1rem;
    margin: 0 1px;
}

.brand-flipkart {
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: #2874F0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.brand-reliance {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2D3748;
}

.brand-reliance .green {
    color: #38A169;
    font-weight: 600;
    font-style: italic;
}

.brand-reliance .icon {
    font-size: 0.95rem;
    margin-right: 4px;
    color: #3182CE;
}

/* ==================================
   Contact Section Styles
================================== */
.contact-section {
    padding: 6rem 0;
    background-color: #FAFAFA;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.contact-info-col {
    flex: 1;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDF2F7;
    border-radius: 14px;
}

.contact-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.35rem;
}

.contact-text p,
.contact-text a {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--primary-red);
}

.contact-map-col {
    flex: 1.2;
    height: 450px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ==================================
   Footer Styles
================================== */
.main-footer {
    background-color: #42525D;
    color: #CBD5E0;
    padding: 5rem 0 3rem 0;
}

.footer-top-grid {
    display: flex;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-left-col {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 380px;
}

.footer-card {
    background-color: #476274;
    border-radius: 4px;
    padding: 2rem;
}

.help-card h4,
.follow-card h4 {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.help-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #CBD5E0;
    margin-bottom: 1.8rem;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.help-link:hover {
    color: var(--primary-red);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.social-icon[aria-label="Facebook"]:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.social-icon[aria-label="YouTube"]:hover {
    background-color: #FF0000;
    border-color: #FF0000;
}

.social-icon[aria-label="LinkedIn"]:hover {
    background-color: #0A66C2;
    border-color: #0A66C2;
}

/* Right Links: 2 Columns Structure */
.footer-links-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-link-block h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
}

.link-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 0.6rem 0 1.2rem 0;
    width: 100%;
}

.footer-link-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-block a {
    color: #CBD5E0;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link-block a:hover {
    color: #FFFFFF;
}

.footer-bottom-bar {
    padding-top: 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.footer-bottom-left {
    flex: 1.1;
    max-width: 380px;
}

.footer-bottom-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.copyright {
    font-size: 0.88rem;
    color: #A0AEC0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.footer-brand .logo {
    max-height: 85px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
}

.brand-tagline {
    color: #CBD5E0;
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

/* ==================================
   Expertise Section Styles
================================== */
.expertise-section {
    background-color: #FAFAFA;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    padding: 4rem 0;
}

.expertise-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 3.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.expertise-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.card-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.card-icon {
    margin-bottom: 2rem;
}

.card-icon img {
    height: 48px;
    width: auto;
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 1rem;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.expertise-card hr {
    border: none;
    border-top: 1px solid #cbd5e1;
    margin-bottom: 1.5rem;
}

.card-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.card-link:hover {
    color: #1a64f0;
}

.card-link .arrow {
    font-size: 1.2rem;
}

/* ==================================
   Materials Section Styles
================================== */
.materials-section {
    background-color: #3F4E5A;
    padding: 6rem 0;
    color: #F8FAFC;
}

.materials-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.materials-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 800px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.materials-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.15);
}

.materials-table th,
.materials-table td {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
}

.materials-table th {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 500;
    color: #f1f5f9;
}



/* ==================================
   Robotic Section Styles
================================== */
.robotic-section {
    background-color: #FFFFFF;
    padding: 8rem 0;
}

.robotic-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.robotic-image-col {
    flex: 1;
    position: relative;
}

.robotic-image-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.bg-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: #e5e7eb;
    border-radius: 50%;
    z-index: 0;
}

.robotic-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 12px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #586c7b;
    padding: 2.5rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-subtitle {
    color: #F8FAFC;
    font-size: 1rem;
    font-weight: 500;
}

.robotic-content-col {
    flex: 1;
}

.robotic-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.robotic-desc {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.robotic-divider {
    border: none;
    border-top: 1px solid #cbd5e1;
    margin-bottom: 2.5rem;
}

.robotic-metrics {
    display: flex;
    gap: 4rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* ==================================
   Facilities Section Styles
================================== */
.facilities-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.facility-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}

.facility-content {
    padding: 3rem;
    flex-grow: 1;
}

.facility-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 1.5rem;
}

.facility-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

.facility-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    padding: 0 3rem 3rem 3rem;
}

/* ==================================
   Engineering Section Styles
================================== */
.engineering-section {
    background-color: #3F4E5A;
    padding: 4rem 0;
    color: #F8FAFC;
}

.engineering-header {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.engineering-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.engineering-desc {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.engineering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.engineering-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.eng-card-tag {
    font-size: 0.75rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.eng-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.eng-card-desc {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.format-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.format-badge {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    border-radius: 4px;
}

/* ==================================
   Metrics Section Styles
================================== */
.metrics-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 3rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    margin-bottom: 1.5rem;
}

.stat-icon img {
    height: 48px;
    width: auto;
}

.stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #3F4E5A;
    margin-bottom: 0.75rem;
}

.stat-sub {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* ==================================
   Projects Category Bar
================================== */
.category-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
}

.category-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-links::-webkit-scrollbar {
    display: none;
}

.category-links li a {
    display: block;
    padding: 1.5rem 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.category-links li a:hover,
.category-links li a.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

/* ==================================
   Projects Catalog Section
================================== */
.catalog-section {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.catalog-header {
    margin-bottom: 4rem;
}

.catalog-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 1.5rem;
}

.catalog-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 900px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.catalog-card {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.catalog-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.catalog-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.8rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-heavy {
    background-color: #ff0055;
}

.badge-ergo {
    background-color: #f97316;
}

.badge-mod {
    background-color: #64748b;
}

.badge-security {
    background-color: #dc2626;
}

.badge-ultra {
    background-color: #475569;
}

.badge-safety {
    background-color: #16a34a;
}

.catalog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.catalog-card-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.catalog-specs {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.catalog-specs li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.catalog-specs li:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: #475569;
}

.spec-value {
    color: #0f172a;
}

.btn-download-spec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.85rem;
    background-color: #f8f9fa;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.btn-download-spec:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

/* ==================================
   Modular Engineering Section
================================== */
.modular-section {
    padding: 2rem 0 6rem 0;
    background-color: #ffffff;
}

.modular-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 5rem;
}

.modular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.modular-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 2rem;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
    border-left: 3px solid #cbd5e1;
}

.feature-box .feature-icon {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.modular-finishes {
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    background-color: #ffffff;
}

.finishes-title {
    font-size: 1rem;
    font-weight: 800;
    color: #475569;
    margin-bottom: 2rem;
}

.swatches-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.swatch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.swatch-color {
    width: 80px;
    height: 80px;
    border: 1px solid #e2e8f0;
}

.swatch-label {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

.finishes-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin: 0;
}

.port-section {
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

.port-map-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 981 / 640;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FAFAFA;
}

.port-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ==================================
   Exports Page Styles
================================== */
.exports-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.exports-hero-container .hero-content {
    flex: 1 1 500px;
    width: 100%;
    max-width: 720px;
}

.exports-badge {
    border: 1px solid rgba(138, 175, 255, 0.4);
    background: transparent;
    color: rgba(180, 210, 255, 0.9);
    display: flex;
    align-items: center;
    width: fit-content;
}

/* We let .hero-buttons handle the layout, so we don't force column layout on desktop */
.exports-buttons .btn {
    flex: 1 1 auto;
    max-width: 450px;
    justify-content: center;
}

.hero-glass-card {
    flex: 0 1 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.glass-stat {
    display: flex;
    flex-direction: column;
}

.glass-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.glass-value {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.glass-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ==================================
   Export Logistics Section
================================== */
.export-logistics-section {
    padding: 6rem 0;
    background-color: #f4f5f7;
}

.logistics-top-row {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.compliance-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.compliance-icon {
    margin-bottom: 1.5rem;
}

.compliance-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 1.5rem;
}

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

.compliance-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #475569;
}

.compliance-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ff0055;
}

.logistics-eng-card {
    background: #0f172a;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.eng-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.eng-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.eng-desc {
    font-size: 0.95rem;
    color: #60a5fa;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.eng-stats {
    margin-top: auto;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

.stat-val {
    font-size: 0.8rem;
    color: #94a3b8;
}

.eng-visuals {
    width: 280px;
    padding: 0;
    margin: 0 3rem 0 0;
    background: transparent;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: center;
    flex-shrink: 0;
}

.visual-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #64748b;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    width: 100%;
    aspect-ratio: 1.2;
}

.visual-box-full {
    grid-column: span 2;
    aspect-ratio: 3.5 / 1;
}

.packaging-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
}

.pkg-header {
    display: flex;
    flex-direction: column;
}

.pkg-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 0.5rem;
}

.pkg-subtitle {
    font-size: 0.9rem;
    color: #64748b;
}

.pkg-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pkg-item {
    display: flex;
    flex-direction: column;
}

.pkg-icon {
    margin-bottom: 1rem;
}

.pkg-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
}

.pkg-item-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ==================================
   Global Markets Section
================================== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.equipment-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.equipment-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.equipment-card:hover .btn-hover-pdf {
    opacity: 1;
    transform: translateX(0);
}

.eq-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

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

.eq-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.eq-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
}

.eq-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0055;
}

.eq-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.eq-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex: 1;
}

.eq-features {
    display: flex;
    gap: 0.5rem;
}

.eq-feature-pill {
    font-size: 0.7rem;
    color: #475569;
    padding: 0.4rem 0.8rem;
    border: 1px solid #cbd5e1;
    background: #ffffff;
}

/* ==================================
   Initiate Procurement Section
================================== */
.diligence-section {
    background-color: #475569;
    padding: 3rem 0;
    margin-bottom: 0.5rem;
}

.diligence-content {
    display: flex;
    flex-direction: column;
}

.diligence-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.contact-boxes {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
}

.cb-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.cb-value {
    font-size: 1.1rem;
    color: #ffffff;
}

.diligence-action {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.diligence-action .btn {
    border-radius: 0;
    font-size: 0.85rem;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.action-note {
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* ==================================

   Responsive Styles
================================== */
@media (max-width: 1024px) {

    /* Tablet Header Static Downscale */
    .logo {
        max-width: 180px;
        height: auto;
    }

    /* Keep footer logo large on tablet and mobile */
    .footer-brand .logo {
        max-width: 340px;
        max-height: none;
        width: 100%;
    }

    .main-nav .nav-links {
        gap: 0.75rem;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .header-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    .footer-top-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-glass-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .footer-left-col {
        max-width: 100%;
        flex-direction: row;
    }

    .logistics-top-row {
        grid-template-columns: 1fr;
    }

    .packaging-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-card {
        flex: 1;
    }

    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-bottom-left .copyright {
        font-size: 0.75rem;
    }

    .footer-bottom-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40%;
    }

    .footer-bottom-right .empty-col {
        display: none !important;
    }



    .features-grid,
    .expertise-grid,
    .catalog-grid,
    .metrics-grid,
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .robotic-container {
        flex-direction: column;
        gap: 4rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-map-col {
        width: 100%;
        height: 380px;
    }

    .about-image-col {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding-left: 0;
        padding-top: 0;
    }

    .bg-circle {
        display: none;
    }

}

@media (max-width: 768px) {
    .footer-left-col {
        flex-direction: column;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 2.5rem;
        text-align: center;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
        padding-bottom: 1rem;
    }

    .footer-bottom-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex: none;
    }

    .footer-bottom-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-bottom-right .empty-col {
        display: none !important;
    }

    :root {
        --header-height: 70px;
    }

    .main-header {
        height: var(--header-height);
    }

    .logo {
        height: auto;
        max-width: 220px;
        width: 100%;
        object-fit: contain;
    }

    .container {
        padding: 0 1rem;
    }

    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        padding: 0;
        clip-path: circle(0% at 100% 0);
        transition: all 0.4s ease-out;
    }

    .main-nav.active {
        clip-path: circle(150% at 100% 0);
    }

    .main-nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-links>li {
        display: block;
        width: 100%;
        height: auto;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-links>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 1.5rem;
        font-weight: 500;
        color: #000000;
    }

    .nav-links>li>a:hover,
    .nav-links>li.active>a {
        color: #000000;
    }

    .has-dropdown>.dropdown-toggle::after,
    .has-simple-dropdown>.dropdown-toggle::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.3s;
    }

    .has-dropdown.active>.dropdown-toggle,
    .has-simple-dropdown.active>.dropdown-toggle {
        background-color: #f5f5f5;
    }

    .has-dropdown.active>.dropdown-toggle::after,
    .has-simple-dropdown.active>.dropdown-toggle::after {
        content: '\2212';
        /* minus sign */
    }

    /* Reset dropdown positioning for mobile */
    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        display: block !important;
    }

    .simple-dropdown,
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        background-color: #ffffff;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        padding: 0;
        margin: 0;
        display: block;
        width: 100%;
    }

    .has-simple-dropdown.active .simple-dropdown,
    .has-dropdown.active .mega-menu {
        max-height: 1500px;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0;
    }

    .mega-menu-col {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .mega-menu-col h4 {
        color: #000000;
        font-size: 1rem;
        background-color: #f5f5f5;
        margin: 0;
        padding: 1rem 1.5rem 1rem 2.5rem;
        border-bottom: 1px solid #e5e5e5;
        text-transform: none;
        opacity: 1;
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
        align-items: center;
        cursor: pointer;
    }

    .mega-menu-col .mt-4 {
        margin-top: 0;
    }

    .mega-menu-col h4::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.3s;
    }

    .mega-menu-col h4.active::after {
        content: '\2212';
    }

    .mega-menu-col ul {
        display: block;
        width: 100%;
        background-color: #ffffff;

        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .mega-menu-col h4.active+ul {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-col ul li a,
    .simple-dropdown ul li a {
        color: #000000;
        font-size: 0.95rem;
        display: block;
        padding: 0.75rem 1.5rem 0.75rem 3.5rem;
        border-bottom: 1px solid #f9f9f9;
        font-weight: 400;
        white-space: normal;
    }

    .mega-menu-col ul li a .arrow,
    .simple-dropdown ul li a .arrow {
        display: none;
    }

    .mega-menu-col ul li a:hover,
    .simple-dropdown ul li a:hover {
        color: #000000;
        background: transparent;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-actions .btn {
        display: none;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-bg {
        height: 100%;
        background-color: #0a0a0a;
    }

    .hero-img {
        height: 680px;
    }

    .index-hero-img {
        object-position: right center !important;
    }

    .hero-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw + 0.5rem, 2.5rem);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .badge {
        font-size: 14px;
        white-space: normal;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 95%;
    }

    .btn-lg {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }

    .exports-hero-container {
        gap: 2rem;
    }

    .exports-hero-container .hero-content,
    .hero-glass-card {
        flex: 1 1 100%;
    }

    .features-grid,
    .expertise-grid,
    .facilities-grid,
    .engineering-grid,
    .metrics-grid,
    .catalog-grid,
    .modular-grid,
    .products-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-card {
        right: 0;
        bottom: -20px;
        padding: 1.5rem 1.8rem;
    }

    .stats-card h3 {
        font-size: 2.2rem;
    }

    .glass-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pkg-features {
        grid-template-columns: 1fr;
    }

    .logistics-eng-card {
        flex-direction: column;
    }

    .eng-visuals {
        width: 100%;
        padding: 0 3rem 3rem 3rem;
    }
}

@media (max-width: 480px) {}

/* ==================================
   Facility Page Specific Styles
================================== */
.facility-about-section {
    background-color: #FFFFFF;
    padding: 8rem 0;
}

.facility-bg-circle {
    background-color: #F1F5F9;
}

.facility-stats-card {
    background-color: var(--primary-red);
    color: white;
    padding: 1.5rem 2rem;
}

.facility-stats-title {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.facility-stats-desc {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.facility-subtitle {
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: inline-block;
}

.facility-title {
    color: #334155;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.facility-desc {
    color: #4A5568;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.facility-desc-mt {
    margin-top: 1.5rem;
}

.facility-cards-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.facility-card-container {
    background-color: #EBF2F8;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    max-width: 1450px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.facility-card-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.facility-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 4rem 2rem 4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.facility-card-overlay h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}

.facility-card-content {
    padding: 4rem 6rem;
    color: #4A5568;
    font-size: 1.2rem;
    line-height: 1.8;
}

.facility-card-text-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.facility-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 2rem;
}

.facility-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.facility-features-list li:last-child {
    margin-bottom: 0;
}

.facility-features-list .feature-icon {
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.facility-features-list p {
    margin: 0;
}

.mb-2-5 {
    margin-bottom: 2.5rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Responsive Overrides for Facility Page */
@media (max-width: 992px) {
    .facility-about-section {
        padding: 4rem 0;
    }

    .facility-cards-section {
        padding: 4rem 1rem;
        gap: 3rem;
    }

    .facility-card-overlay {
        padding: 2rem 2rem 1.5rem 2rem;
    }

    .facility-card-overlay h2 {
        font-size: 2.2rem;
    }

    .facility-card-content {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .facility-about-section {
        padding: 3rem 0;
    }

    .facility-cards-section {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .facility-card-img {
        height: 250px;
    }

    .facility-card-overlay {
        padding: 1.5rem;
    }

    .facility-card-overlay h2 {
        font-size: 1.6rem;
    }

    .facility-card-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .facility-features-list li {
        margin-bottom: 1rem;
    }

    .facility-title {
        font-size: 2rem;
    }

    .facility-desc {
        font-size: 1.05rem;
    }

    .facility-stats-card {
        padding: 1rem 1.5rem;
    }

    .facility-stats-title {
        font-size: 1.8rem;
    }
}

/* ==================================
   Why Choose Section
================================== */
.why-choose-section {
    background-color: #F1F5F9;
    padding: 6rem 2rem;
}

.why-choose-title {
    text-align: center;
    font-size: 2.5rem;
    color: #334155;
    margin-bottom: 4rem;
    font-weight: 800;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

.why-choose-icon svg,
.why-choose-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.why-choose-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
}

@media (max-width: 1280px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-choose-section {
        padding: 3rem 1rem;
    }

    .why-choose-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .why-choose-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .why-choose-text {
        font-size: 1rem;
    }

    .why-choose-icon {
        width: 48px;
        height: 48px;
    }

    .why-choose-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* ==================================
   About Page Styles
================================== */
.about-page-section {
    padding: 6rem 0;
    background-color: #FFFFFF;
}

.bg-light-gray {
    background-color: #FAFAFA;
}

.about-page-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-page-content {
    flex: 1;
}

.about-section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.about-icon-box {
    width: 80px;
    height: 80px;
    background-color: #FCE8EC;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon-box img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.about-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #334155;
    margin: 0;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-list-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
}

.about-list-item p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.about-page-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-img {
    width: 100%;
    max-width: 747px;
    height: auto;
    aspect-ratio: 747 / 552;
    object-fit: contain;

    border-radius: 4px;
    border: 1px solid #E2E8F0;
    background: #fff;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail-wrapper .main-img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background-color: #ff0055;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background-color: #c82333;
}

.play-button svg {
    width: 30px;
    height: 30px;
    color: #fff;
    margin-left: 4px;
}

.about-hero-section {
    min-height: 80vh !important;
    height: 80vh;
}

.about-hero-container {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

@media (max-width: 992px) {
    .about-page-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-page-image {
        width: 100%;
        /* removed order: -1 so image goes below text */
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 50vh !important;
        height: auto;
    }

    .about-hero-container .hero-title {
        font-size: 2rem !important;
    }

    .about-hero-container .hero-description {
        font-size: 1rem !important;
    }

    .about-section-header h2 {
        font-size: 2rem;
    }

    .about-list-item h4 {
        font-size: 1.15rem;
    }

    .about-list-item p {
        font-size: 1rem;
    }

    .about-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        margin-bottom: 1rem;
    }

    .about-icon-box img {
        width: 30px;
        height: 30px;
    }

    .illustration-img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

/* ==================================
   OEM Reasons Section
================================== */
.oem-reasons-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 2px solid #e2e8f0;
}

.oem-header-subtitle {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.oem-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #334155;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.oem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.oem-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.oem-row-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 0 0 35%;
}

.oem-number {
    background-color: #d43e4f;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 500;
    flex-shrink: 0;
}

.oem-title {
    font-size: 1.125rem;
    color: #475569;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.oem-row-right {
    flex: 1;
    background-color: #f1f5f9;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.oem-desc {
    margin: 0;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .oem-row-left {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .oem-reasons-section {
        padding: 3.5rem 0;
    }
    
    .oem-header-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .oem-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .oem-row-left {
        flex: 1;
        gap: 1rem;
    }
    
    .oem-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .oem-title {
        font-size: 1.05rem;
    }
    
    .oem-row-right {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .oem-header-title {
        font-size: 1.75rem;
    }
    
    .oem-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .oem-title {
        font-size: 1rem;
    }
    
    .oem-desc {
        font-size: 0.95rem;
    }
}

/* ==================================
   End to End Section
================================== */
.e2e-section {
    background-color: #4a5b67;
    padding: 6rem 0;
}

.e2e-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.e2e-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

.e2e-desc {
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1.6;
    flex: 1;
    max-width: 600px;
}

.e2e-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.e2e-card {
    background-color: #556b7a;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
}

.e2e-card:hover {
    transform: translateY(-5px);
}

.e2e-number {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: block;
}

.e2e-card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.e2e-card-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1200px) {
    .e2e-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .e2e-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    .e2e-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .e2e-section {
        padding: 4rem 0;
    }
    .e2e-title {
        font-size: 2rem;
    }
    .e2e-desc {
        font-size: 1.1rem;
    }
}

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

/* ==================================
   Who We Build For Section
================================== */
.wwbf-section {
    background-color: #ffffff;
    padding: 6rem 0;
}

.wwbf-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.wwbf-left {
    flex: 1;
    max-width: 500px;
}

.wwbf-subtitle {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.wwbf-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #334155;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.wwbf-desc {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.wwbf-right {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.wwbf-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 4px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wwbf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.wwbf-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.75rem;
}

.wwbf-card-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .wwbf-grid {
        flex-direction: column;
        gap: 3rem;
    }
    .wwbf-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .wwbf-section {
        padding: 4rem 0;
    }
    .wwbf-right {
        grid-template-columns: 1fr;
    }
    .wwbf-title {
        font-size: 1.75rem;
    }
    .wwbf-desc {
        font-size: 1rem;
    }
}

/* ==================================
   Why Sameta Section
================================== */
.why-sameta-section {
    background-color: #f8fafc;
    padding: 6rem 0;
}

.why-sameta-subtitle {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3rem;
}

.why-sameta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background-color: #ffffff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.why-number {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 500;
}

.why-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 1rem;
}

.why-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .why-sameta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-sameta-section {
        padding: 4rem 0;
    }
    .why-sameta-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        padding: 1.5rem;
    }
}

/* ==================================
   What Sameta Is Not Section
================================== */
.what-not-section {
    background-color: #f8fafc; /* Keep same bg as above or use white */
    padding: 6rem 0;
    border-top: 1px solid #e2e8f0;
}

.what-not-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.what-not-left {
    flex: 0 0 auto;
}

.what-not-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #334155;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.what-not-right {
    flex: 0 1 auto;
    max-width: 800px;
}

.what-not-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.what-not-list li {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.red-dash {
    color: #dc2626;
    font-weight: 700;
}

@media (max-width: 992px) {
    .what-not-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .what-not-left {
        max-width: 100%;
    }
    .what-not-title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .what-not-section {
        padding: 4rem 0;
    }
    .what-not-title {
        font-size: 1.75rem;
    }
    .what-not-list li {
        font-size: 1rem;
    }
}
/* ==================================
   Diligence Button
================================== */
.btn-diligence {
    background-color: #475569;
    color: white;
    border: 2px solid white;
}

.btn-diligence:hover {
    background-color: white;
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(71, 85, 105, 0.4);
}
