:root {
    --bg-color: #f0f4f8;
    --primary-color: #002BB8;
    --primary-hover: #001f85;
    --primary-light: #e6ecf5;
    --text-dark: #121c2d;
    --text-light: #505050;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #f4f7f9; /* Light background for the sections below banner */
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.hero-wrapper {
    background-image: url('img/imgi_48_bg_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    min-height: 100vh; /* Banner takes full screen height */
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* HEADER */
.header-container {
    background-color: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header-container.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
    transition: padding 0.4s ease;
}

.header-container.scrolled .header {
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    border-radius: 4px;
    line-height: 1;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-color);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.navbar a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.navbar a:hover, .navbar a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-link {
    color: var(--text-dark);
    font-size: 18px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

.cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HERO SECTION */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5%; 
    position: relative;
    z-index: 10;
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15); /* Modern glass effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 204, 162, 0.4); /* Glow effect using mint green */
}

.hero-content {
    max-width: 600px;
    z-index: 20;
    text-align: left; /* Ensures text is aligned to the left */
}

.subtitle {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 204, 162, 0.3);
}

.btn-primary:hover {
    background-color: #0973ff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #242a42;
    transform: translateY(-2px);
}

/* FEATURES BAR */
.features-bar {
    background-color: var(--white);
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 20;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1700px;
    margin: 40px auto; /* Added margin to push it below the banner slightly */
    width: 100%; /* slightly less than 100% on mobile so it doesn't touch edges */
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 50, 150, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color); /* Blue color matching the image icons */
    font-size: 20px;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-light);
}

/* INTRO SECTION */
.intro-section {
    max-width: 1700px;
    margin: 80px auto;
    padding: 0 5%;
    width: 100%;
}

.intro-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.intro-image-wrapper {
    width: 45%;
    position: relative;
    border-radius: 12px;
}

.intro-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.intro-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.intro-floating-card h4 {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.intro-floating-card .card-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.intro-floating-card .card-icon i {
    font-size: 20px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    padding: 5px;
}

.intro-content {
    width: 50%;
}

.intro-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.intro-list {
    list-style: none;
    margin: 25px 0;
}

.intro-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.intro-list li i {
    color: var(--text-dark);
    font-size: 18px;
}

.intro-action-area {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.intro-contact-card {
    background-color: #f4f7f9;
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.intro-contact-card .contact-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    font-size: 20px;
}

.intro-contact-card .contact-text h5 {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.intro-contact-card .contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* PRODUCT CATEGORIES SECTION */
.product-categories {
    max-width: 1700px;
    margin: 60px auto;
    padding: 0 5%;
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left h2 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.header-left p {
    color: var(--text-light);
    font-size: 15px;
}

.view-all-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.view-all-btn:hover {
    opacity: 0.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background-color: var(--white);
    border: 1px solid #edf1f5;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transform: translateY(-5px);
}

.category-image {
    background-color: #f7f9fb;
    border-radius: 6px;
    height: 180px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.cat-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cat-text span {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.cat-text small {
    color: var(--text-light);
    font-weight: 500;
    font-size: 13px;
}

.category-info i {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 2px;
}

/* MANUFACTURING SECTION */
.manufacturing-section {
    max-width: 1700px;
    margin: 60px auto;
    padding: 60px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: var(--primary-light);  */
    border-radius: 12px;
    gap: 50px;
}

.manufacturing-content {
    flex: 1;
    max-width: 550px;
}

.manufacturing-content h2 {
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.manufacturing-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-specific {
    display: inline-block;
    background-color: var(--primary-color); /* Blue matching the button */
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-specific i {
    margin-left: 8px;
}

.btn-specific:hover {
    background-color: var(--primary-hover);
}

.manufacturing-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.visual-image-placeholder {
    width: 450px;
    height: 400px;
    background-color: #e2e8f0;
    border-radius: 12px;
    /* add actual background-image url here when available */
}

.visual-checklist {
    position: absolute;
    right: -30px; /* Overlaps slightly outside the placeholder */
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.visual-checklist ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visual-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
}

.visual-checklist li i {
    color: var(--primary-color);
    font-size: 20px;
}

/* WHY US SECTION */
.why-us-section {
    max-width: 1700px;
    margin: 80px auto 80px auto;
    padding: 0 5%;
    width: 100%;
}

.why-us-header {
    margin-bottom: 35px;
}

.why-us-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.why-us-header p {
    color: var(--text-light);
    font-size: 15px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    border: 1px solid #edf1f5;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    color: var(--primary-color);
    font-size: 28px;
}

.why-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* PROCESS SECTION */
.process-section {
    max-width: 1700px;
    margin: 80px auto;
    padding: 70px 5%;
    width: 100%;
    background-color: var(--primary-light); /* Very light blue background */
    border-radius: 12px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: #6486a6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.process-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.process-header p {
    color: var(--text-light);
    font-size: 16px;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px; /* Align with icons */
    color: #a0aec0;
    font-size: 14px;
}

.process-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px auto;
}

.process-icon {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(7, 83, 166, 0.08);
}

.step-number {
    position: absolute;
    top: 0;
    left: -5px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    border: 3px solid var(--primary-light);
}

.process-step h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ABOUT SECTION */
.about-section {
    max-width: 1700px;
    margin: 80px auto;
    padding: 0 5%;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.about-image-wrapper {
    height: 100%;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-color: #e2e8f0;
    border-radius: 12px;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.about-content h2 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-content .btn-specific {
    align-self: flex-start;
    margin-top: 10px;
}

.about-sidebar {
    background-color: var(--primary-light);
    padding: 40px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.about-sidebar h3 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-sidebar p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.sidebar-checklist {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.sidebar-checklist li i {
    color: var(--primary-color);
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

/* BLOG SECTION */
.blog-section {
    max-width: 1700px;
    margin: 80px auto;
    padding: 0 5%;
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid #edf1f5;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* To keep image border radius aligned with card */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.blog-image {
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.read-more {
    margin-top: auto;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* TRUSTED SECTION */
.trusted-section {
    max-width: 1700px;
    margin: 80px auto 40px auto;
    padding: 0 5%;
    width: 100%;
}

.trusted-header {
    margin-bottom: 35px;
}

.trusted-header h2 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.trusted-header p {
    color: var(--text-light);
    font-size: 15px;
}

.trusted-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

.logo-placeholder {
    font-size: 22px;
    font-weight: 800;
    color: #64748b; 
    text-transform: uppercase;
    font-family: Arial, sans-serif; 
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-placeholder:hover {
    opacity: 1;
}

/* CTA SECTION */
.cta-section {
    max-width: 1700px;
    margin: 60px auto 100px auto;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 50px 5%;
    width: 100%;
}

.cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-button {
    position: relative;
    z-index: 2;
    margin-right: 15%; 
}

.cta-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(to right, var(--primary-light) 0%, transparent 100%), #cbd5e1; /* Placeholder for the image fade effect */
    z-index: 1;
}

/* FOOTER SECTION */
.footer {
    background-color: var(--primary-light);
    padding-top: 80px;
    position: relative;
    border-top: 1px solid #eef2f6;
}

.footer-top {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 0 5% 60px 5%;
}

.footer-col-1 p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-ae {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    font-style: italic;
    letter-spacing: -2px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-text small {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #475569;
    color: var(--white);
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-col h4 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #64748b;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    gap: 15px;
    color: #64748b;
    font-size: 15px;
    align-items: flex-start;
    line-height: 1.5;
}

.contact-list li i {
    color: #475569;
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom-wrapper {
    background-color: var(--primary-light);
    padding: 20px 5%;
}

.footer-bottom {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(7, 83, 166, 0.3);
    transition: transform 0.3s, background-color 0.3s;
    z-index: 100;
}

.scroll-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .navbar ul {
        gap: 20px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .features-bar {
        justify-content: center;
        gap: 25px;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-sidebar {
        grid-column: span 2;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .cta-button {
        margin-right: 0;
    }
    
    .cta-bg-image {
        width: 100%;
        background: linear-gradient(to bottom, var(--primary-light) 0%, transparent 100%), #cbd5e1;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .process-grid {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .process-step {
        flex: 0 0 40%;
    }
    
    .process-arrow {
        display: none; /* Hide arrows when wrapped */
    }
    
    .manufacturing-section {
        flex-direction: column;
        padding: 50px 5%;
        gap: 40px;
    }
    
    .manufacturing-content {
        max-width: 100%;
        text-align: center;
    }
    
    .manufacturing-visuals {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .visual-image-placeholder {
        width: 100%;
        max-width: 450px;
    }
    
    .visual-checklist {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-top: -40px; /* Overlaps the image slightly from bottom instead */
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 5%;
        flex-wrap: wrap;
    }
    .navbar {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }
    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero-section {
        padding: 0 12%;
    }
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    .prev-btn { left: 2%; }
    .next-btn { right: 2%; }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .logo-text { font-size: 24px; }
    
    .hero-content h1 { font-size: 28px; }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .features-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 10%;
        gap: 25px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .header-left h2 {
        font-size: 26px;
    }
    
    .manufacturing-content h2 {
        font-size: 28px;
    }
    
    .visual-checklist {
        width: 100%;
        padding: 25px 20px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar {
        grid-column: span 1;
    }
    
    .about-image-placeholder {
        min-height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        justify-content: center;
    }
    
    .process-header h2 {
        font-size: 26px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



.product-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.product-header-right {
    margin-bottom: 10px;
}
.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: border-color 0.3s;
}
.view-all-link:hover {
    border-color: var(--primary-color);
}

.products-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-new-card {
    background: var(--white);
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product-new-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.prod-image {
    background: #f7f9fc;
    border-radius: 6px;
    overflow: hidden;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.prod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.prod-text h4 {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.prod-text p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.prod-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 10px;
    margin-bottom: 2px;
}

/* INDUSTRIES SECTION */
.industries-section {
    width: 100%;
    margin: 80px 0;
    background-color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle background texture/overlay for the container */
.industries-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 1;
}

.industries-container {
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.industries-content {
    flex: 0 0 35%;
    position: relative;
    z-index: 2;
}

.industries-content .section-badge {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.industries-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.industries-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-cyan {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.3s;
    gap: 8px;
}

.btn-cyan:hover {
    opacity: 0.9;
}

.industries-cards-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 2;
    /* optional fade masks to make edges smooth */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.industries-cards {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-industries 20s linear infinite;
}

.industries-cards:hover {
    animation-play-state: paused;
}

@keyframes scroll-industries {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* 10px is half of the 20px gap */
}

.industry-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    width: 210px; /* Fixed width for slider items */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.ind-img {
    height: 160px;
    width: 100%;
}

.ind-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind-text {
    padding: 15px 10px;
    text-align: center;
    background: var(--white);
}

.ind-text h4 {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 1200px) {
    .industries-container {
        flex-direction: column;
        padding: 40px 5%;
        align-items: flex-start;
    }
    .industries-content {
        text-align: left;
        margin-bottom: 30px;
        width: 100%;
    }
    /* Let the slider stretch and remain a continuous line */
    .industries-cards-wrapper {
        width: 100%;
    }
}

.hero-content { transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; }
.hero-content.fade-out { opacity: 0; transform: translateY(20px); }

/* Responsive Navbar Styles */
.hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }
@media (max-width: 991px) {
    .hamburger { display: block; }
    .header { position: relative; }
    .navbar { display: none !important; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 20px 0; z-index: 1000; margin-top: 0 !important; }
    .navbar.active { display: block !important; }
    .navbar ul { flex-direction: column !important; align-items: center; gap: 20px !important; }
    .header-actions { gap: 15px; }
}

/* Products Section Responsive */
@media (max-width: 1200px) {
    .products-4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .product-section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .products-4-grid { grid-template-columns: 1fr; }
}

/* Intro Section Responsive */
@media (max-width: 991px) {
    .intro-grid { flex-direction: column-reverse; gap: 40px; }
    .intro-image-wrapper { width: 100%; max-width: 600px; margin: 0 auto; min-height: 200px; }
    .intro-content { width: 100%; text-align: left; }
    .intro-action-area { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 576px) {
    .intro-content h2 { font-size: 28px; }
    .intro-floating-card { padding: 15px; left: 10px; right: auto; bottom: -20px; width: max-content; }
    .intro-floating-card h4 { font-size: 16px; }
}

/* Manufacturing Requirements Section Responsive */
@media (max-width: 991px) {
    .manufacturing-container { flex-direction: column !important; padding: 50px 5% !important; gap: 30px !important; }
    .manufacturing-content { max-width: 100% !important; text-align: left; }
    .manufacturing-content h2 { font-size: 32px !important; }
    .manufacturing-content p { font-size: 15px !important; }
    .manufacturing-visuals { max-width: 100% !important; justify-content: flex-start !important; }
    .manufacturing-bg { width: 100% !important; }
    .manufacturing-overlay { background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 50%, rgba(0,204,162,0.8) 100%) !important; }
}

@media (max-width: 991px) {
    .visual-checklist { margin-top: 0 !important; position: relative !important; transform: none !important; }
}

/* Dropdown CSS */
.navbar li.dropdown { position: relative; }
.navbar ul.dropdown-menu { position: absolute; top: 100%; left: 0; background-color: var(--white); min-width: 230px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 8px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease; z-index: 100; display: flex; flex-direction: column; gap: 0 !important; }
.navbar li.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.navbar ul.dropdown-menu li { width: 100%; margin: 0; padding: 0; }
.navbar ul.dropdown-menu li a { display: block; padding: 10px 20px !important; color: var(--text-dark) !important; font-size: 14px !important; transition: background-color 0.3s; margin: 0; }
.navbar ul.dropdown-menu li a:hover { background-color: #f4f7f9; color: var(--primary-color) !important; }
@media (max-width: 991px) {
    .navbar ul.dropdown-menu { position: static; box-shadow: none; background-color: #f4f7f9; transform: none; opacity: 1; visibility: visible; display: none; padding: 10px 0; margin-top: 10px; width: 100%; align-items: flex-start; gap: 0 !important; }
    .navbar li.dropdown { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .navbar li.dropdown:hover .dropdown-menu { display: flex; }
    .navbar ul.dropdown-menu li a { text-align: center; }
}

/* PRODUCT QUICK VIEW MODAL */
.product-quick-view-modal .modal-content {
    border-radius: 12px;
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background-color: var(--white);
    opacity: 0.8;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.modal-close-btn:hover {
    opacity: 1;
}

.qv-image-col {
    background-color: #f8f9fa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.qv-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.qv-image-wrapper img {
    max-width: 80%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}
.qv-slider-btn {
    background: var(--white);
    border: 1px solid #edf1f5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.qv-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.qv-prev { left: 0; }
.qv-next { right: 0; }

.qv-pagination {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}
.qv-dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
}
.qv-dot.active {
    background-color: #64748b;
}

.qv-specs-text {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}
.qv-colors {
    display: flex;
    gap: 10px;
}
.qv-color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.qv-content-col {
    padding: 50px 50px 50px 40px;
    background: var(--white);
    max-height: 85vh;
    overflow-y: auto;
}
.qv-breadcrumbs {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}
.qv-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
}
.qv-badge {
    color: #ef4444;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
#qv-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}
.qv-rating {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.qv-rating-text {
    color: #64748b;
    font-size: 13px;
}
.qv-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.qv-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.qv-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.qv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.qv-feature-icon {
    font-size: 24px;
    color: #64748b;
    margin-top: 2px;
}
.qv-feature-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.qv-feature-text p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.qv-action-area {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.qv-enquire-btn {
    flex: 1;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 15px;
}
.qv-wishlist-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}
.qv-wishlist-btn:hover {
    color: #ef4444;
    border-color: #ef4444;
}

.qv-logistics h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.qv-logistics ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.qv-logistics ul li {
    font-size: 13px;
    color: #64748b;
    position: relative;
    padding-left: 15px;
}
.qv-logistics ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #94a3b8;
}

@media (max-width: 991px) {
    .qv-content-col { padding: 40px 30px; }
    .qv-image-col { padding: 40px 20px; }
}

/* WISHLIST STYLES */
.wishlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #edf1f5;
}
.wishlist-item:last-child {
    border-bottom: none;
}
.wishlist-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.wishlist-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.wishlist-details {
    flex: 1;
}
.wishlist-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 3px 0;
}
.wishlist-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}
.wishlist-remove {
    color: #ef4444;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 14px;
    padding: 5px;
    transition: opacity 0.3s;
}
.wishlist-remove:hover {
    opacity: 0.7;
}

/* Manufacturing Parallax & Overlay */
.manufacturing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
}
.manufacturing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f4f7f9 0%, #f4f7f9 45%, rgba(244,247,249,0) 70%);
}

@media (max-width: 991px) {
    .manufacturing-bg {
        background-attachment: scroll !important;
        background-position: center !important;
    }
    .manufacturing-overlay {
        background: linear-gradient(180deg, #f4f7f9 0%, #f4f7f9 50%, rgba(244,247,249,0.7) 100%) !important;
    }
}
