/* =========================================
   HYDRO CHEM - Global Styles
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {

    /* Core Brand */
    --primary-color: #0f172a;
    --secondary-color: #132238;

    /* Accent */
    --accent-color: #38bdf8;
    --accent-soft: #7dd3fc;

    /* Backgrounds */
    --dark-bg: #06111f;
    --dark-surface: rgba(255, 255, 255, 0.06);

    --light-bg: #f3f7fb;

    /* Text */
    --white: #ffffff;
    --dark-text: #0f172a;

    --gray-text: rgba(255, 255, 255, 0.72);
    --light-text: #cbd5e1;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(56, 189, 248, 0.35);

    /* Shadows */
    --shadow-lg:
        0 20px 60px rgba(0, 0, 0, 0.35);

    --shadow-md:
        0 10px 30px rgba(0, 0, 0, 0.2);

    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

/* Custom Cursor */
.custom-cursor {
    width: 12px;
    height: 12px;
    background-color: #3b82f6;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background-color 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: #3b82f6;
}

.custom-cursor.header-hover {
    transform: translate(-50%, -50%) scale(8);
    background-color: white;
}

@media (max-width: 991px) {
    .custom-cursor {
        display: none !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Global Video Styles */
video {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-user-select: none;
    user-select: none;
}

video[autoplay] {
    -webkit-appearance: none;
    appearance: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 15px;
    user-select: none;
    cursor: default;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--gray-text);
    margin-top: 5px;
}

.section-tag.text-center::after {
    margin: 5px auto 0;
}

.section-title {

    font-size: 48px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;
}

.our-products .section-title {
    color: rgb(45, 39, 39);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: #ffffff;
    color: #0a1123;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.18);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1.5px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    padding: 14px 32px;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.btn-dark i {
    transition: transform 0.3s ease;
}

.btn-dark:hover i {
    transform: translateX(3px);
}

.btn-light {
    background-color: var(--white);
    color: #111;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn-light:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 75px;
    transition: background 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img, .logo video {
    height: 147px;
    max-width: 320px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.logo img:hover, .logo video:hover {
    transform: scale(1.1);
    filter: brightness(1.15) drop-shadow(0 0 12px rgba(143, 167, 255, 0.7));
}

.nav {
    margin-left: auto;
    margin-right: -20px;
    padding-right: 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links>li>a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    opacity: 0.8;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-text);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* === Mega Dropdown (Products) === */
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 200;
    min-width: 680px;
}

.dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mega-tile {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.mega-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.mega-tile-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.mega-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-tile:hover .mega-tile-img img {
    transform: scale(1.08);
}

.mega-tile-label {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    line-height: 1.3;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

@media (max-width: 991px) {
    .header-actions {
        display: flex;
    }
}

.icon-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: none;
    /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Hero Banner (Slideshow)
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.55;
    transition: opacity 0.5s ease;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: opacity 0.4s ease, transform 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: left;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: opacity 0.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero .btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: none !important;
}

.hero .btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.hero-stats-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 15;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.hero-stat-box {
    text-align: center;
    color: #ffffff;
}

.hero-stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-stat-box p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}


.stats-container {
    position: absolute;
    bottom: -60px;
    right: 10%;
    display: flex;
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-box {
    padding: 40px;
    width: 250px;
}

.stat-box h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.8),
        2px 2px 6px rgba(0, 0, 0, 0.9),
        -1px -1px 4px rgba(0, 0, 0, 0.7);
}

.stat-box p {
    font-size: 14px;
    color: var(--white);
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.8),
        1px 1px 4px rgba(0, 0, 0, 0.9);
}

.box-white {
    background-color: transparent;
}

.box-green {
    background-color: transparent;
}

/* =========================================
   About Us Section
   ========================================= */
.about-us {
    padding: 120px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    color: #3e3a3a;
    /*var(--gray-text);*/
    margin-bottom: 40px;
    font-size: 16px;
}

.progress-container {
    margin-bottom: 40px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--light-bg);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #d1d8cb;
    /* Greenish gray */
    border-radius: 2px;
}

.about-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.about-image-container img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.about-image-container video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.image-overlay-text h3 {
    font-size: 48px;
    margin-bottom: 5px;
}

.image-overlay-text p {
    font-size: 18px;
    max-width: 250px;
}

/* =========================================
   Our Products Section
   ========================================= */
/* .our-products {
    background-color: var(--light-bg);
    padding: 100px 0 60px;
} */

.our-products {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(0, 183, 255, 0.15),
            transparent 40%),
        linear-gradient(135deg,
            #fbfcfd 0%,
            #f1f4f9 50%,
            #f8f9fa 100%);

    padding: 120px 0 80px;
}

.our-products::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background:
        radial-gradient(rgba(56, 189, 248, 0.15),
            transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.products-header-top {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.products-header-top .section-tag::after {
    margin: 5px auto 0;
}

.products-desc {
    color: rgba(43, 40, 40, 0.72);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.products-cta {
    text-align: center;
    margin-top: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease,
        background 0.5s ease;
}


.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.04),
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-card-image::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(15, 23, 42, 0.95),
            rgba(15, 23, 42, 0.1));
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(0.95) saturate(1.1);
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
    filter:
        brightness(1.05) saturate(1.2);
}

.icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px auto 20px;
    font-size: 22px;
    color: #123f53;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.product-card:hover .icon-container {
    transform:
        rotate(8deg) scale(1.08);
    border-color:
        rgba(56, 189, 248, 0.4);
    background:
        rgba(56, 189, 248, 0.12);
}

.product-card h3 {
    color: #3e3a3a;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
    margin-bottom: 10px;
}

.product-card p {
    color: rgba(49, 44, 44, 0.72);
    font-size: 12px;
    text-align: center;
    padding: 0 10px 20px;
    line-height: 1.4;
}

/* =========================================
   Supply Chain & Logistics Section
   ========================================= */
.supply-logistics {
    background: linear-gradient(135deg, #f7fbff 0%, #eef4fa 100%);
    padding: 90px 0;
}

.supply-logistics .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.supply-logistics .section-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.supply-logistics .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.supply-logistics .section-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(15, 23, 42, 0.75);
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logistics-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logistics-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.1);
}

.logistics-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.logistics-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(15, 23, 42, 0.75);
}

@media (max-width: 992px) {
    .logistics-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .supply-logistics {
        padding: 60px 0;
    }

    .supply-logistics .section-title {
        font-size: 32px;
    }

    .logistics-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Industries We Serve Section
   ========================================= */
.industries-serve {
    background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
    padding: 80px 0;
}

.industries-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.industries-header .section-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.industries-header .section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.industries-desc {
    font-size: 16px;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(2,6,23,0.06);
    border: 1px solid rgba(15,23,42,0.04);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(56,189,248,0.04));
    color: var(--accent-color);
    font-size: 22px;
}

.industry-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Background image layer for industry cards */
.industry-card {
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transition: opacity 0.35s ease, transform 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.industry-card:hover::before {
    opacity: 0.22;
    transform: scale(1.03);
}

/* assign images per card (use existing images in src/images) */
.industries-grid .industry-card:nth-child(1)::before { background-image: url("../images/ptoducttileOil.jfif"); }
.industries-grid .industry-card:nth-child(2)::before { background-image: url("../images/waterchemicals.jfif"); }
.industries-grid .industry-card:nth-child(3)::before { background-image: url("../images/banner_chemical_1777610643865.png"); }
.industries-grid .industry-card:nth-child(4)::before { background-image: url("../images/media__1777610356356.png"); }
.industries-grid .industry-card:nth-child(5)::before { background-image: url("../images/middle-east.png"); }
.industries-grid .industry-card:nth-child(6)::before { background-image: url("../images/media__1777609095777.png"); }
.industries-grid .industry-card:nth-child(7)::before { background-image: url("../images/agrichemicals.jpg"); }

/* ensure content sits above the bg */
.industry-card .industry-icon,
.industry-card h3 {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .industries-serve { padding: 50px 0; }
    .industries-header .section-title { font-size: 28px; }
}

/* =========================================
   Trade Map Section
   ========================================= */
.trade-map-section {
    padding: 60px 20px;
    background-color: var(--white);
    width: 100%;
    height: auto;
}

.trade-map-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 24px;
}

.trade-map-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    position: relative;
}

.header-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    z-index: 3;
}

.market-cards-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px;
    pointer-events: auto;
    z-index: 2;
    gap: 24px;
}

.trade-map-wrapper .trade-map-header {
    position: static;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trade-map-wrapper .trade-map-header .section-tag,
.trade-map-wrapper .trade-map-header .section-title,
.trade-map-wrapper .trade-map-header .section-description {
    color: #ffffff;
}

.trade-map-wrapper .trade-map-header .section-title {
    margin: 0 auto;
}

.trade-map-wrapper .trade-map-header .section-description {
    max-width: 760px;
    margin: 12px auto 0;
}

.trade-map-wrapper .trade-map-header .section-tag,
.trade-map-wrapper .trade-map-header .section-title,
.trade-map-wrapper .trade-map-header .section-description {
    color: #ffffff;
}

.trade-map-wrapper .trade-map-header .section-description {
    max-width: 760px;
    margin: 12px auto 0;
}

.trade-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.4s ease;
    opacity: 0.75;
}

.trade-map-image:hover {
    transform: scale(1.02);
}

/* =========================================
   Capabilities Section
   ========================================= */
.capabilities-section {
    padding: 60px 20px 80px;
    background: rgba(10, 17, 35, 0.95);
}

.capabilities-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.capability-hero {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 260px;
}

.capability-hero-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(13, 33, 60, 0.98), rgba(5, 13, 27, 0.95));
    border: 1px solid rgba(96, 165, 250, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    box-shadow: inset 0 20px 50px rgba(10, 45, 75, 0.25);
}

.capability-hero-circle span {
    color: #7dd3fc;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;
}

.capability-panel-list {
    flex: 1 1 520px;
    display: grid;
    gap: 16px;
}

.capability-panel {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 24px 24px 100px;
    min-height: 120px;
    background: rgba(10, 18, 35, 0.92);
    border: 1px solid rgba(96, 165, 250, 0.14);
    border-radius: 18px;
    overflow: hidden;
}

.capability-panel::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(14, 165, 233, 0.85));
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.18);
}

.capability-icon {
    position: absolute;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 1.15rem;
}

.capability-panel h3 {
    margin: 0 0 10px;
    color: #e2f1ff;
    font-size: 1.1rem;
}

.capability-panel p {
    margin: 0;
    color: rgba(226, 241, 255, 0.78);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .capabilities-inner {
        flex-direction: column;
        align-items: center;
    }

    .capability-panel-list {
        width: 100%;
    }

    .capability-panel {
        padding-left: 92px;
        padding-top: 28px;
    }
}

@media (max-width: 620px) {
    .capability-panel {
        padding-left: 76px;
        padding-top: 24px;
        min-height: auto;
        align-items: flex-start;
    }

    .capability-panel::before {
        left: 18px;
        width: 52px;
        height: 52px;
    }

    .capability-icon {
        left: 26px;
        font-size: 1rem;
    }

    .capability-panel h3 {
        font-size: 0.95rem;
    }

    .capability-panel p {
        font-size: 0.85rem;
    }

    .capability-hero-circle {
        width: 240px;
        height: 240px;
        padding: 22px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .capability-panel {
        position: relative;
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 12px;
        padding: 16px;
        padding-left: 16px;
        min-height: auto;
    }

    .capability-panel::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 12px;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(14, 165, 233, 0.85));
        box-shadow: 0 20px 40px rgba(14, 165, 233, 0.18);
    }

    .capability-icon {
        position: absolute;
        left: 20px;
        top: 16px;
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        color: #ffffff;
        font-size: 0.9rem;
    }

    .capability-panel h3 {
        margin: 0 0 6px;
        color: #e2f1ff;
        font-size: 0.9rem;
        grid-column: 2;
        grid-row: 1;
    }

    .capability-panel p {
        margin: 0;
        color: rgba(226, 241, 255, 0.78);
        line-height: 1.5;
        font-size: 0.8rem;
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .capabilities-section {
        padding: 40px 16px 60px;
    }

    .capability-hero-circle {
        width: 180px;
        height: 180px;
        padding: 16px;
        font-size: 0.85rem;
    }
}

/* =========================================
   Trusted Us (Marquee)
   ========================================= */
.trusted-us {
    padding: 40px 0 80px;
    background-color: var(--light-bg);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.logo-box {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 30px;
    margin: 0 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.logo-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.logo-box i {
    color: #888;
}

.logo-box img {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   Blog Section
   ========================================= */
.blog-section {
    padding: 100px 0;
}

.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #dbe0d6;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-text);
}

.blog-content {
    padding: 20px 0;
}

.blog-category {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 18px;
    line-height: 1.4;
}

/* =========================================
   Sustainability Page
   ========================================= */
.sustainability-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.sustainability-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sustainability-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.sustainability-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.sustainability-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.sustainability-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.sustainability-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.sustainability-breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

.sustainability-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sustainability-hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.sustainability-content {
    padding: 80px 0;
    background-color: var(--white);
}

.sustainability-intro {
    text-align: center;
    margin-bottom: 60px;
}

.sustainability-intro .section-tag {
    color: var(--gray-text);
}

.sustainability-intro .section-title {
    color: var(--dark-text);
    margin-bottom: 20px;
}

.sustainability-intro p {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.sustainability-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.sustainability-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.1);
}

.sustainability-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-soft));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.sustainability-card:hover .sustainability-card-icon {
    transform: scale(1.1);
}

.sustainability-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.sustainability-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.sustainability-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.sustainability-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.sustainability-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .sustainability-hero {
        height: 400px;
        min-height: 100vh;
    }

    .sustainability-hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .sustainability-hero-content p {
        font-size: 16px;
    }

    .sustainability-breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .sustainability-content {
        padding: 50px 0;
    }

    .sustainability-intro {
        margin-bottom: 40px;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sustainability-card {
        padding: 30px 20px;
    }

    .sustainability-cta {
        padding: 50px 0;
    }

    .sustainability-cta h2 {
        font-size: 28px;
    }

    .sustainability-cta p {
        font-size: 14px;
    }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #151515;
    /* Very dark background from mockup */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-heading {
    font-size: 24px;
    line-height: 1.4;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 90%;
}

.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    display: block;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    max-width: 300px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--white);
    flex-grow: 1;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.footer-legal a:hover {
    opacity: 0.7;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a,
.footer-widget p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

.footer-widget ul li a:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--white);
    color: #111;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 160px;
    object-fit: contain;
}

/* =========================================
   Inner Pages & About Us
   ========================================= */
.inner-page {
    background-color: var(--white);
    color: var(--text-color);
}

.solid-header {
    background-color: var(--primary-color) !important;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-spacing {
    height: 80px;
    /* spacing below solid header */
}

.story-header {
    margin-bottom: 50px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.story-main-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.story-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    display: none;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
}

/* =========================================
   Our History Section
   ========================================= */
.history-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 600;
}

.history-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.history-btn {
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 14px;
}

.history-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 40px 0;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.history-stat-card {
    background-color: #f4f7f8;
    padding: 25px 20px;
    border-radius: 8px;
}

.history-stat-card h3 {
    font-size: 28px;
    color: #111;
    font-weight: 500;
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.history-stat-card p {
    font-size: 12px;
    color: #444;
    font-weight: 500;
}

.history-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================================
   Our Operations Section
   ========================================= */
.our-operations {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.operations-header {
    text-align: center;
    margin-bottom: 60px;
}

.operations-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.operation-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.operation-card:hover {
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.operation-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.operation-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.operation-capacity {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.operation-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* =========================================
   Specialization & Expertise Section
   ========================================= */
.specialization {
    padding: 80px 0;
}

.specialization-header {
    text-align: center;
    margin-bottom: 60px;
}

.specialization-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.specialty-card {
    background-color: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.specialty-card:hover {
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.specialty-icon {
    font-size: 44px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.specialty-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.specialty-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* =========================================
   Industries We Serve Section
   ========================================= */
.industries-serve {
    background: linear-gradient(135deg, #f7fbff 0%, #eef4fa 100%);
    padding: 100px 0;
}

.industries-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
    align-items: center;
}

.industries-info {
    max-width: 540px;
}

.industries-info .section-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
}

.industries-info .section-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.industries-desc {
    font-size: 18px;
    line-height: 1.85;
    color: rgba(15, 23, 42, 0.78);
}

.industries-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    grid-template-rows: repeat(3, minmax(140px, 1fr));
    gap: 20px;
    position: relative;
}

.industry-card {
    background-color: #ffffff;
    padding: 30px 24px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.industry-card.small-card {
    grid-column: span 1;
    min-height: 180px;
}

.industry-card.medium-card {
    grid-column: span 2;
    min-height: 220px;
}

.industries-cards .industry-card:nth-child(1) { grid-row: 1 / 2; grid-column: 2 / 3; }
.industries-cards .industry-card:nth-child(2) { grid-row: 1 / 2; grid-column: 3 / 4; }
.industries-cards .industry-card:nth-child(3) { grid-row: 2 / 3; grid-column: 1 / 2; }
.industries-cards .industry-card:nth-child(4) { grid-row: 2 / 3; grid-column: 2 / 4; }
.industries-cards .industry-card:nth-child(5) { grid-row: 3 / 4; grid-column: 1 / 2; }
.industries-cards .industry-card:nth-child(6) { grid-row: 3 / 4; grid-column: 2 / 4; }
.industries-cards .industry-card:nth-child(7) { grid-row: 1 / 2; grid-column: 1 / 2; }

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.industry-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-color);
    font-size: 22px;
}

.industry-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.4;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.72);
}

@media (max-width: 1100px) {
    .industries-content {
        grid-template-columns: 1fr;
    }

    .industries-cards {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        grid-template-rows: none;
    }

    .industries-cards .industry-card:nth-child(1),
    .industries-cards .industry-card:nth-child(2),
    .industries-cards .industry-card:nth-child(3),
    .industries-cards .industry-card:nth-child(4),
    .industries-cards .industry-card:nth-child(5),
    .industries-cards .industry-card:nth-child(6),
    .industries-cards .industry-card:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }

    .industry-card.medium-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .industries-serve {
        padding: 60px 0;
    }

    .industries-info .section-title {
        font-size: 32px;
    }

    .industries-cards {
        grid-template-columns: 1fr;
    }

    .industry-card.medium-card {
        grid-column: auto;
    }
}

/* =========================================
   Quality & Certifications Section
   ========================================= */
.quality-certifications {
    padding: 80px 0;
}

.quality-header {
    text-align: center;
    margin-bottom: 60px;
}

.quality-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cert-card:hover {
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.cert-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.cert-subtitle {
    font-size: 12px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* =========================================
   Trusted Us Enhanced
   ========================================= */
.trusted-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* =========================================
   Contact Us Page
   ========================================= */
.contact-header-section {
    padding: 80px 0;
}

.contact-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-channel-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.channel-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 16px;
}

.channel-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
}

.channel-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.contact-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.contact-social-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #111;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.social-row a:hover {
    background-color: var(--primary-color);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fafafa;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 42, 86, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 8px;
}

/* Form Error Styles */
.required {
    color: #e74c3c;
    margin-left: 4px;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    min-height: 18px;
}

.input-error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05) !important;
}

.input-error:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

/* =========================================
   Blog Page
   ========================================= */
.blog-page-section {
    padding: 80px 0;
}

.blog-page-header {
    margin-bottom: 50px;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-page-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.blog-page-card[data-page] {
    display: none;
}

.blog-page-card.visible {
    display: block;
}

.blog-page-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-page-card:hover .blog-page-image img {
    transform: scale(1.05);
}

.blog-page-content {
    padding: 25px;
}

.blog-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-text);
    display: block;
    margin-bottom: 10px;
}

.blog-page-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #111;
}

.blog-page-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 10px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--white);
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #111;
    color: var(--white);
    border-color: #111;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.page-number.active {
    background-color: #111;
    color: var(--white);
    border-color: #111;
}

.page-number:hover:not(.active) {
    background-color: var(--light-bg);
}

/* =========================================
   Product Category Pages
   ========================================= */

/* --- Category Hero Banner --- */
.category-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}

.category-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.category-hero:hover .category-hero-bg {
    transform: scale(1.04);
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 11, 18, 0.95) 0%,
            rgba(5, 11, 18, 0.7) 40%,
            rgba(5, 11, 18, 0.4) 100%);
}

.category-hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
    width: 100%;
    text-align: left;
}

.category-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.1;
}

.category-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    line-height: 1.7;
}

/* --- Breadcrumbs --- */
.category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.55);
}

.category-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.category-breadcrumb a:hover {
    color: var(--accent-color);
}

.category-breadcrumb .breadcrumb-sep {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.category-breadcrumb .breadcrumb-current {
    color: var(--accent-color);
    font-weight: 600;
}

/* --- Product Count Badge --- */
.category-product-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 18px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}

.category-product-count i {
    font-size: 14px;
}

/* --- Category Products Section --- */
.category-products {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(241, 245, 247, 0.08),
            transparent 30%),
        linear-gradient(135deg,
            #fdfefe 0%,
            #fdfefe 40%,
            #f9f9fa 100%);
    padding: 100px 0 80px;
}

.category-products::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background:
        radial-gradient(rgba(56, 189, 248, 0.12),
            transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.category-products::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background:
        radial-gradient(rgba(237, 238, 239, 0.08),
            transparent 70%);
    bottom: -100px;
    left: -50px;
    pointer-events: none;
}

/* --- Product Search --- */
.product-search-container {
    max-width: 650px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
}

.category-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto 24px;
}

.category-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 160px;
    text-align: center;
}

.category-nav-link:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

.category-nav-link.active {
    background: #38bdf8;
    color: #ffffff;
    border-color: transparent;
}

@media (max-width: 768px) {
    .category-nav-buttons {
        gap: 10px;
    }

    .category-nav-link {
        flex: 1 1 calc(50% - 10px);
        min-width: auto;
    }
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #c9cfd5;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #38bdf8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05), 0 0 15px rgba(56, 189, 248, 0.15);
    background: #ffffff;
}

.search-icon {
    color: #3e3a3a;
    font-size: 16px;
    margin-right: 12px;
}

.search-input-wrapper:focus-within .search-icon {
    color: var(--accent-color);
}

.product-search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #3e3a3a;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.product-search-input::placeholder {
    color: #3e3a3a;
}

.category-products-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.category-products-header .section-tag::after {
    margin: 5px auto 0;
}

.category-products-header .section-title {
    color: #3e3a3a;
}

.category-products-header p {
    color: #3e3a3a;
    font-size: 15px;
    line-height: 1.7;
}

/* --- Product Filters --- */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: transparent;
    color: #3e3a3a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #c9cfd5;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f8fafc;
    border-color: #38bdf8;
    color: #0f172a;
}

.filter-btn.active {
    background: #1e293b;
    border-color: #1e293b;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
}

/* --- Category Product Grid --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* --- Category Product Card --- */
.category-product-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #c9cfd5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 36px 30px 32px;
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease,
        background 0.5s ease,
        opacity 0.5s ease;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
}

.category-product-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #38bdf8;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(56, 189, 248, 0.1);
}

.category-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.03),
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.category-product-card:hover::before {
    opacity: 1;
}

/* Card number indicator */
.card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.5s ease;
}

.category-product-card:hover .card-number {
    color: rgba(56, 189, 248, 0.08);
}

/* Card icon */
.category-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 20px;
    margin-right: 20px;
    font-size: 24px;
    color: var(--accent-soft);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-product-card:hover .category-card-icon {
    transform: rotate(6deg) scale(1.06);
    border-color: rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-color);
}

.category-product-card h3 {
    color: #3e3a3a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.category-product-card p {
    color: #3e3a3a;
    font-size: 14px;
    line-height: 1.7;
    width: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-product-card:hover .category-card-link {
    opacity: 1;
    transform: translateY(0);
}

.category-card-link:hover {
    gap: 12px;
}

/* Accent stripe at bottom of card */
.category-product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-product-card:hover::after {
    opacity: 1;
}

/* --- CTA Section --- */
.category-cta {
    background: linear-gradient(135deg, #0b1622, #0f1d2e);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(rgba(56, 189, 248, 0.08), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ========================================
   TRADE ROUTES ANIMATION SECTION
   ======================================== */

.trade-routes-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trade-routes-header {
    text-align: center;
    margin-bottom: 60px;
}

.trade-routes-header .section-tag {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trade-routes-header .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.trade-routes-desc {
    font-size: 18px;
    color: rgba(15, 23, 42, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.trade-map-container {
    margin-bottom: 60px;
}

.trade-map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
    min-height: 240px;
    aspect-ratio: 16 / 9;
    height: auto;
}

.trade-map-image {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: block;
    object-fit: cover;
    opacity: 0.75;
}

.trade-routes-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Route Path Animations */
.shipping-route {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawShippingLine 4s ease-in-out infinite;
}

.shipping-route.route-delay-1 {
    animation-delay: 1.5s;
}

.trade-route {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawTradeLine 5s ease-in-out infinite;
}

.trade-route.route-delay-1 {
    animation-delay: 1.5s;
}

@keyframes drawShippingLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0.2;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
}

@keyframes drawTradeLine {
    0% {
        stroke-dashoffset: 500;
        opacity: 0.2;
    }
    20% {
        opacity: 0.9;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
}

/* Cargo Ship Animations */
.cargo-ship {
    animation: sailShip 8s ease-in-out infinite;
}

.ship-1 {
    animation-name: sailShip1;
    animation-duration: 8s;
    animation-delay: 0s;
}

.ship-2 {
    animation-name: sailShip2;
    animation-duration: 8s;
    animation-delay: 2s;
}

.ship-3 {
    animation-name: sailShip3;
    animation-duration: 8s;
    animation-delay: 4s;
}

@keyframes sailShip1 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translate(400px, -30px);
        opacity: 0;
    }
}

@keyframes sailShip2 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translate(400px, 30px);
        opacity: 0;
    }
}

@keyframes sailShip3 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translate(-100px, 150px);
        opacity: 0;
    }
}

/* Ship Pulse Animation */
.ship-pulse {
    animation: shipGlow 1.5s ease-in-out infinite;
}

@keyframes shipGlow {
    0%, 100% {
        r: 22px;
        opacity: 0.2;
    }
    50% {
        r: 32px;
        opacity: 0;
    }
}

/* Hub Marker Animations */
.hub-marker {
    z-index: 20;
}

.hub-pulse {
    animation: hubPulseGlow 2s ease-in-out infinite;
}

@keyframes hubPulseGlow {
    0%, 100% {
        r: 10px;
        stroke-width: 3;
        opacity: 0.6;
    }
    50% {
        r: 18px;
        stroke-width: 1.5;
        opacity: 0.1;
    }
}

.hub-label {
    font-size: 13px;
    font-weight: bold;
    fill: #00D9FF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* Legend Styles */
.routes-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.shipping {
    background: linear-gradient(90deg, #00D9FF, #0099CC);
}

.legend-color.trade {
    background: linear-gradient(90deg, #FFD700, #FF6B00);
}

.legend-color.hub {
    background: #FFD700;
    border-radius: 50%;
}

/* Statistics Cards */
.routes-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.route-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.route-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.route-stat-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.route-stat-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.route-stat-card p {
    font-size: 14px;
    color: rgba(15, 23, 42, 0.65);
    line-height: 1.5;
}

/* Responsive Trade Routes */
@media (max-width: 992px) {
    .trade-routes-section {
        padding: 60px 0;
    }

    .trade-routes-header .section-title {
        font-size: 36px;
    }

    .trade-routes-desc {
        font-size: 16px;
    }

    .routes-legend {
        gap: 20px;
    }

    .routes-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trade-routes-section {
        padding: 40px 0;
    }

    .trade-routes-header {
        margin-bottom: 40px;
    }

    .trade-routes-header .section-title {
        font-size: 28px;
    }

    .trade-routes-desc {
        font-size: 14px;
    }

    .trade-map-wrapper {
        aspect-ratio: auto;
        height: auto;
        min-height: 240px;
    }

    .routes-legend {
        gap: 15px;
        margin-top: 20px;
    }

    .legend-item {
        font-size: 12px;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }

    .routes-stats {
        gap: 15px;
        margin-top: 40px;
    }

    .route-stat-card {
        padding: 25px 15px;
    }

    .route-stat-card i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .route-stat-card h4 {
        font-size: 16px;
    }

    .route-stat-card p {
        font-size: 12px;
    }
}


.category-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.category-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.category-cta .btn {
    position: relative;
    z-index: 1;
    color: var(--white);
}

/* --- Other Category Links Section --- */
.category-others {
    padding: 80px 0;
    background: var(--light-bg);
}

.category-others-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-others-header .section-tag::after {
    margin: 5px auto 0;
}

.category-others-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-other-tile {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.category-other-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.category-other-tile-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.category-other-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-other-tile:hover .category-other-tile-img img {
    transform: scale(1.08);
}

.category-other-tile-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.category-other-tile-label i {
    font-size: 12px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.category-other-tile:hover .category-other-tile-label i {
    transform: translateX(4px);
}

/* Current category tile */
.category-other-tile.current {
    border-color: var(--accent-color);
    opacity: 0.5;
    pointer-events: none;
}

/* =========================================
   Scroll Animations
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-stats-container {
        gap: 30px;
    }

    .hero-stat-box h3 {
        font-size: 36px;
    }

    .stats-container {
        right: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:nth-child(7) {
        grid-column: auto;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-others-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    /* Mobile Video Styles */
    video {
        width: 100% !important;
        height: auto !important;
    }

    .hero-slide video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .about-image-container video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .sustainability-hero-bg video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Mobile Menu */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.98);
        padding: 20px 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 90;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .nav-links>li {
        width: 100%;
        text-align: center;
    }

    .dropdown-mega {
        position: static;
        min-width: 100%;
        transform: none;
        opacity: 0;
        visibility: hidden;
        display: none;
        padding: 15px 20px;
        box-shadow: none;
        border-radius: 0;
        background: rgba(15, 23, 42, 0.98);
        margin-top: 10px;
    }

    .dropdown:hover .dropdown-mega,
    .dropdown:active .dropdown-mega {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-tiles {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .icon-btn {
        display: flex;
    }

    /* Show hamburger on mobile */

    .header-actions .btn {
        display: none;
    }

    /* Hide 'Contact Us' on small screens if needed, or adjust padding */
    .header-actions .btn {
        display: inline-flex;
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Hero Responsive */
    .hero {
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        padding-bottom: 40px;
        height: auto;
        min-height: 100vh;
    }

    .hero-slides {
        height: 100%;
    }

    .hero-slide {
        height: 100%;
    }

    .hero-container {
        order: 1;
        margin-top: auto;
        margin-bottom: auto;
    }

    .hero-content {
        width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 11;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .hero-stats-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        order: 2;
        gap: 15px;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .hero-stat-box {
        width: 40%;
    }

    .hero-stat-box h3 {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .hero-stat-box p {
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
        margin-top: 10px;
        align-items: center;
    }

    .hero-buttons .btn {
        padding: 12px 22px;
        font-size: 14px;
        width: 280px;
        max-width: 90%;
        box-sizing: border-box;
    }

    .stats-container {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        flex-direction: row;
        margin-top: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .stat-box {
        width: 50%;
        height: auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .stat-box h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .stat-box p {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .trade-map-section {
        padding: 40px 0;
    }

    .trade-map-image {
        border-radius: 12px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-right {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image-container img {
        height: 400px;
    }

    .story-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-stats {
        grid-template-columns: 1fr;
    }

    .history-image img {
        height: 400px;
    }

    .contact-header-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }

    /* Category Pages Mobile */
    .category-hero {
        height: 320px;
    }

    .category-hero-content h1 {
        font-size: 28px;
    }

    .category-hero-content p {
        font-size: 14px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-others-grid {
        grid-template-columns: 1fr;
    }

    .category-cta h2 {
        font-size: 26px;
    }

    .category-products {
        padding: 60px 0 50px;
    }
}

/* =========================================
   Home Sustainability Section
   ========================================= */
.home-sustainability {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: var(--white);
}

.sustainability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustainability-left {
    padding-right: 20px;
}

.sustainability-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.esg-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.esg-card-row {
    display: flex;
    gap: 20px;
}

.esg-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.esg-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.3);
}

.full-width {
    width: 100%;
}

.half-width {
    flex: 1;
}

.esg-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.esg-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.esg-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.performance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.performance-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.performance-highlight {
    margin-bottom: 40px;
}

.performance-highlight h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
    display: flex;
    align-items: flex-start;
}

.performance-highlight h2 span {
    font-size: 2rem;
    margin-top: 5px;
    margin-left: 2px;
}

.performance-highlight p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
}

.download-btn {
    display: inline-flex;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    gap: 10px;
    align-items: center;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 992px) {
    .sustainability-container {
        grid-template-columns: 1fr;
    }
    .sustainability-left {
        padding-right: 0;
    }
}
@media (max-width: 768px) {
    .esg-card-row {
        flex-direction: column;
    }
}

/* =========================================
   Certifications Section
   ========================================= */
.certifications-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.certifications-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.certifications-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.certifications-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.cert-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #38bdf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 32px;
}

.cert-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.cert-subtitle {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cert-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .certifications-title {
        font-size: 32px;
    }
    .certifications-section {
        padding: 60px 0;
    }
}

/* Footer mobile logo visibility toggles */
.mobile-logo {
    display: none;
}

@media (max-width: 992px) {
    .desktop-logo {
        display: none !important;
    }
    .mobile-logo {
        display: block !important;
        margin-top: -15px !important;
        margin-bottom: -35px !important;
    }
}