@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');


.source-sans-3 {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.onest {
    font-family: "Onest", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.reddit-sans{
    font-family: "Reddit Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn i {
    margin-left: 8px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1001;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Search Button (Hidden on mobile) */
.search-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none; /* Hidden by default, shown on desktop */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 10px 0 0;
    position: relative;
    z-index: 1002;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Ensure header stays above dropdown */
    padding: 1px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: transparent;
    transform: translateZ(0); /* Force hardware acceleration */
    will-change: background-color; /* Optimize for animation */
}

.header.scrolled,
.header.has-dropdown-open {
    background-color: #0072bc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 8px;
    padding: 10px 40px 0 60px;
}

.logo img {
    width: 180px;
    height: 43px;
    object-fit: contain;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    padding: 10px 15px;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 70px; /* Height of header */
    left: 0;
    border-radius: 0 0 20px 20px;
    width: 100%;
    height: 286px;
    background-color: #0072bc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    padding: 0;
    margin: 0;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    pointer-events: none;
    /* Ensure dropdown stays in place during scroll */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Allow scrolling when dropdown is open */
body.dropdown-open {
    overflow: auto;
    height: 100%;
}

/* Ensure header stays above dropdown */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    /* Prevent layout shift */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dropdown-menu .container {
    max-width: 1440px;
    width: 100%;
    margin: -7px auto;
    padding: 80px 90px 0px;
    height: 100%;
    box-sizing: border-box;
    background-color: #0072bc;
    border-radius: 0 0 8px 8px;
}

.dropdown-grid {
    display: flex;
    gap: 40px;
    height: 100%;
}

.dropdown-column {
    flex: 1;
    padding-right: 20px;
    border-right: 1px solid #0072bc;
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Source Sans 3', sans-serif;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li {
    margin-bottom: 12px;
}

.dropdown-column ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Source Sans 3', sans-serif;
    transition: color 0.3s ease;
}

.dropdown-column ul li a:hover {
    color: #dadee4;
    text-decoration: none;
    background-color: transparent;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.main-nav ul {
    display: flex;
    gap: 1px;
    margin-top: 8px;
}

.main-nav a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Source Sans 3', sans-serif;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #38D58C;
}

.header-actions {
    display: flex;
    align-items: center; 
    gap: 15px;
    margin-top: 8px;
}

.search-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
}

.btn-contact {
    background: linear-gradient(90deg, #00BA71, #38D58C);
    color: #fff;
    font-size: 11px;
    width: 134px;
    margin-top: -5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    padding-top: 106px; /* Height of header + padding */
    margin-top: -106px; /* Offset the padding */
}

.hero-slides {
    position: relative;
    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 1s ease-in-out;
    display: flex;
    align-items: center;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.4);*/
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    color: #fff;
    text-align: left;
}

.hero h1 {
    font-size: 75px;
    font-weight: 700;
    font-family: 'onest', sans-serif;
    margin-left: -30px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out; 
}

.hero p {
    font-size: 18px;
    font-family: "Reddit Sans", sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-left: -20px;
    max-width: 900px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

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

/* About Cromatex Section */
.about-cromatex {
    padding: 70px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-direction: row-reverse; /* This will reverse the order of flex items */
    align-items: top;
    gap: 1px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 19px;
    margin-top: 40px;
    color: #3a3a3a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: left;
    margin-left: 17px;
}

.about-text h2 span {
    color: #3a3a3a  /*#3ab7f1; */
}

.about-text p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
    margin-left: 18px;
}

.about-image {
    flex: 1;
    text-align: left; /* Align image to the left */
}

.about-image img {
    width: 542px;
    height: 286px;
    object-fit: cover;
    border-radius: 34px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column; /* Keep image on top on mobile */
        text-align: center;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-image {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
}
/* Products & Industries Section */

.products-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.products-section {
    padding: 60px 0;
    background-color: #F9F9F9;
}

.section-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.products-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 60px;
    position: relative;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 297px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 94%;
    object-fit: cover;
    display: block;
}

.product-info-box {
    position: relative;
    margin: -70px 0 0 0;
    padding: 10px 10px 5px 15px;
    height: 256px;
    width: 355px;
    margin-left: 16px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.7) 60px,  
        white 60px,       
        white 100%
    );
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    z-index: 2;
    overflow: hidden;
}

.product-info-content {
    margin-top: 0;
    height: 100%;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Remove scroll */
}

.product-info-content::-webkit-scrollbar {
    width: 4px;
}

.product-info-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.product-info-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.product-info-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product-info-box h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 22px;
    font-weight: 450;
    color: #000;
    margin: 0 0 15px 0;
}

.product-info-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
    flex-grow: 1;
    overflow: hidden; /* Hide any overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    margin-top: auto;
    margin-left: auto; /* Push to the right */
    padding-bottom: 0px;
    width: fit-content;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: #004d99;
    border-bottom-color: #004d99;
}

.view-all-btn .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover .arrow {
    transform: translateX(3px);
}

.product-info-box p {
    margin: 0;
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}

/* Sustainability Section */
.sustainability-section {
    padding: 20px 0 80px 0;
    background-color: #f8f9fa;
}

.sustainability-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sustainability-text {
    flex: 1;
    max-width: 600px;
}

.sustainability-text h2 {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-family: 'Source Sans 3', sans-serif;
}

.sustainability-text h3 {
    font-size: 25px;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
    font-family: 'Onest', sans-serif;
}

.sustainability-text p {
    font-size: 17px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 24px;
    font-family: 'Source Sans 3', sans-serif;
}

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

.sustainability-image img {
    max-width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    background-color: #EEEEEE;
    padding: 40px 0;
    color: #333;
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #000;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3ab7f1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    text-decoration: none;
}

.social-links a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-links a:hover {
    background-color: #3ab7f1;
    color: #fff;
}

.social-links a:hover img {
    filter: brightness(0) invert(1);
}

.social-links a i {
    font-size: 20px;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3ab7f1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}
@media (min-width: 2000px) {

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: #333;
    }
    
    .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1600px;
        color: #fff;
        text-align: left;
        margin-left: -330px;
    }
    
    .logo img {
        width: 180px;
        height: 43px;
        object-fit: contain;
        margin-left: -300px;
    }

    .main-nav a {
        color: #fff;
        font-weight: 600;
        font-size: 21px;
        font-family: 'Source Sans 3', sans-serif;
        transition: color 0.3s ease;
    }

    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 11px;
        width: 134px;
        margin-top: -5px;
        height: 40px;
        margin-right: -250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 100px;
        font-weight: 700;
        font-family: 'onest', sans-serif;
        margin-left: -30px;
        margin-bottom: 20px;
        line-height: 1.2;
        animation: fadeInUp 1s ease-out; 
    }
    
    .hero p {
        font-size: 26px;
        font-family: "Reddit Sans", sans-serif;
        line-height: 1.6;
        margin-bottom: 30px;
        margin-left: -20px;
        max-width: 1100px;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .dropdown-menu {
        position: fixed;
        top: 80px; /* Height of header */
        left: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
        height: 286px;
        background-color: #0072bc;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 999;
        padding: 0;
        margin: 0;
        border: none !important;
        outline: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        pointer-events: none;
        /* Ensure dropdown stays in place during scroll */
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .about-cromatex {
    padding: 70px 0;
    background-color: #fff;
    }
    
    .about-content {
    display: flex;
    flex-direction: row-reverse; /* This will reverse the order of flex items */
    align-items: top;
    gap: 1px;
    }
    
    .about-text {
    flex: 1;
    max-width: 600px;
    }
    
    .about-text h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 50px;
    margin-top: 50px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #3a3a3a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: left;
    margin-left: 17px;
    }
    
    .about-text h2 span {
    color: #3a3a3a /*#3ab7f1; */
    }
    
    .about-text p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 27px;
    width: 900px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
    margin-left: 18px;
    margin-right: -30px;
    }
    
    .about-image {
    flex: 1;
    text-align: left; /* Align image to the left */
    }
    
    .about-image img {
    width: 750px;
    height: 500px;
    object-fit: cover;
    border-radius: 34px;
    margin-left: -320px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 992px) {
    .about-content {
    flex-direction: column; /* Keep image on top on mobile */
    text-align: center;
    }
    
    .about-text {
    max-width: 100%;
    }
    
    .about-image {
    margin-bottom: 40px;
    text-align: center;
    }
    
    .about-text h2 {
    font-size: 36px;
    }
    }
    

    /* Sustainability Section */
    .sustainability-section {
    padding: 20px 0 80px 0;
    background-color: #f8f9fa;
    }
    
    .sustainability-content {
    display: flex;
    align-items: center;
    gap: 40px;
    }
    
    .sustainability-text {
    flex: 1;
    max-width: 600px;
    margin-right: -111px;
    }
    
    .sustainability-text h2 {
    font-size: 59px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    font-family: 'Source Sans 3', sans-serif;
    }
    
    .sustainability-text h3 {
    font-size: 32px;
    font-weight: 500;
    width: 900px;
    color: #333;
    margin-bottom: 24px;
    font-family: 'Onest', sans-serif;
    }
    
    .sustainability-text p {
    font-size: 27px;
    width: 800px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 24px;
    font-family: 'Source Sans 3', sans-serif;
    }
    
    .sustainability-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    .sustainability-image img {
    max-width: 790px;
    height: auto;
    margin-left: -390px;
    border-radius: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Footer Styles */
    .footer {
    background-color: #EEEEEE;
    padding: 80px 0;
    color: #333;
    }
    
    .footer .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 80px;
    }
    
    .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    }
    
    .footer-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
    }
    
    .footer-section ul li {
    margin-bottom: 16px;
    }
    
    .footer-section a {
    color: #000;
    font-size: 20px;
    transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
    color: #3ab7f1;
    }
    
    .social-links {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    }
    
    .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 28px;
    }
    
    .social-links a:hover {
    background-color: #3ab7f1;
    color: #fff;
    transform: translateY(-5px);
    }
    
    .footer-bottom {
    border-top: 2px solid #e1e1e1;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 20px;
    }
    
    .footer-links {
    display: flex;
    gap: 40px;
    }
    
    .footer-links a {
    color: #666;
    font-size: 20px;
    transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
    color: #3ab7f1;
    }
    

/* Products & Industries Section */
.products-section .container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 40px;
}

.products-section {
    padding: 60px 0;
    background-color: #F9F9F9;
}

.section-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.products-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1800px;
    margin: 0 auto;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 60px;
    position: relative;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 94%;
    object-fit: cover;
    display: block;
}

.product-info-box {
    position: relative;
        margin: -88px 0 0 0;
        padding: 10px 10px 5px 15px;
        height: 325px;
        width: 539px;
        margin-left: 19px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 60px, white 80px, white 100%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        z-index: 2;
        overflow: hidden;
    }

.product-info-content {
    margin-top: 0;
    height: 100%;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Remove scroll */
}

.product-info-content::-webkit-scrollbar {
    width: 4px;
}

.product-info-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.product-info-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.product-info-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product-info-box h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 30px;
    font-weight: 450;
    color: #000;
    margin: 0 0 15px 0;
}

.product-info-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
    flex-grow: 1;
    overflow: hidden; /* Hide any overflow */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
    margin-top: auto;
    margin-left: auto; /* Push to the right */
    padding-bottom: 0px;
    width: fit-content;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: #004d99;
    border-bottom-color: #004d99;
}

.view-all-btn .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover .arrow {
    transform: translateX(3px);
}

.product-info-box p {
    margin: 0;
    margin-top: 7px;
    font-size: 22px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}

}

@media (max-width: 425px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Products Section */
    .products-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .products-grid {
        flex-direction: column;
        gap: 40px;
        padding: 0 10px;
    }
    
    .product-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-info-box {
        width: calc(100% - 30px);
        margin: -40px auto 0;
        padding: 15px;
        height: auto;
        min-height: 220px;
    }
    
    .product-info-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .product-info-content p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .view-all-btn {
        font-size: 16px;
        padding: 8px 0;
    }
    
    /* Adjust the gradient overlay for mobile */
    .product-info-box {
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.7) 0%, 
            rgba(255, 255, 255, 0.7) 50px,  
            white 50px,       
            white 100%
        );
    }
    
    body {
        font-family: 'Source Sans 3', sans-serif;
        line-height: 1.6;
        color: #333;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    ul {
        list-style: none;
    }
    
    .btn {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }
    
    .btn i {
        margin-left: 8px;
    }
    
    /* Header Styles */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001; /* Ensure header stays above dropdown */
        padding: 1px 0;
        transition: background-color 0.3s ease, transform 0.3s ease;
        background-color: transparent;
        transform: translateZ(0); /* Force hardware acceleration */
        will-change: background-color; /* Optimize for animation */
    }
    
    .header.scrolled,
    .header.has-dropdown-open {
        background-color: #0072bc;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 8px;
        padding: 10px 0px 0 0px;
    }
    
    .logo img {
        width: 138px;
        height: 32px;
        object-fit: contain;
    }
    
    .main-nav > ul > li {
        position: relative;
    }
    
    .main-nav > ul > li > a {
        padding: 10px 15px;
        display: inline-block;
    }
    
    /* Dropdown Menu */
    .dropdown-menu {
        position: fixed;
        top: 70px; /* Height of header */
        left: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
        height: 286px;
        background-color: #0072bc;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 999;
        padding: 0;
        margin: 0;
        border: none !important;
        outline: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        pointer-events: none;
        /* Ensure dropdown stays in place during scroll */
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* Allow scrolling when dropdown is open */
    body.dropdown-open {
        overflow: auto;
        height: 100%;
    }
    
    /* Ensure header stays above dropdown */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 425px;
        right: 0;
        z-index: 1001;
        /* Prevent layout shift */
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .dropdown-menu .container {
        max-width: 1440px;
        width: 100%;
        margin: -7px auto;
        padding: 80px 90px 0px;
        height: 100%;
        box-sizing: border-box;
        background-color: #0072bc;
        border-radius: 0 0 8px 8px;
    }
    
    .dropdown-grid {
        display: flex;
        gap: 40px;
        height: 100%;
    }
    
    .dropdown-column {
        flex: 1;
        padding-right: 20px;
        border-right: 1px solid #0072bc;
    }
    
    .dropdown-column:last-child {
        border-right: none;
    }
    
    .dropdown-column h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Source Sans 3', sans-serif;
    }
    
    .dropdown-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    } 
    
    .dropdown-column ul li {
        margin-bottom: 12px;
    }
    
    .dropdown-column ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        font-family: 'Source Sans 3', sans-serif;
        transition: color 0.3s ease;
    }
    
    .dropdown-column ul li a:hover {
        color: #dadee4;
        text-decoration: none;
        background-color: transparent;
    }
    
    .dropdown > a {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .dropdown > a i {
        font-size: 10px;
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover > a i {
        transform: rotate(180deg);
    }
    
    .main-nav ul {
        display: flex;
        gap: 1px;
        margin-top: 8px;
    }
    
    .main-nav a {
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        font-family: 'Source Sans 3', sans-serif;
        transition: color 0.3s ease;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        color: #38D58C;
    }
    
    .header-actions {
        display: flex;
        align-items: center; 
        gap: 2px;
        margin-top: 8px;
    }
    
    .search-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        padding: 8px;
    }
    
    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 9px;
        padding: 0;
        width: 105px;
        margin-top: -5px;
        height: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
        color: #fff;
        overflow: hidden;
        padding-top: 106px; /* Height of header + padding */
        margin-top: -106px; /* Offset the padding */
    }
    
    .hero-slides {
        position: relative;
        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 1s ease-in-out;
        display: flex;
        align-items: center;
    }
    
    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }
    
    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: rgba(0, 0, 0, 0.4);*/
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 950px;
        color: #fff;
        text-align: left;
    }
    
    .hero h1 {
        font-size: 20px;
        font-weight: 700;
        font-family: 'onest', sans-serif;
        margin-bottom: 20px;
        margin-top: 60px;
        line-height: 1.2;
        margin-left: 0px;
        animation: fadeInUp 1s ease-out; 
    }
    
    .hero p {
        font-size: 12px;
        font-family: "Reddit Sans", sans-serif;
        line-height: 1.6;
        margin-bottom: 30px;
        margin-left: 0px;
        max-width: 900px;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    
    /* Hero Dots */
    .hero-dots {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        gap: 10px;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .hero-dot.active {
        background: #ffffff;
        transform: scale(1.3);
    }
    
    .hero-dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }
  
    /* About Cromatex Section */
    .about-cromatex {
        padding: 0px 0;
        background-color: #fff;
    }
    
    .about-content {
        display: flex;
        flex-direction: row-reverse; /* This will reverse the order of flex items */
        align-items: top;
        gap: 1px;
    }
    
    .about-text {
        flex: 1;
        max-width: 600px;
    }
    
    .about-text h2 {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 38px;
        font-weight: 500;
        margin-bottom: 19px;
        margin-right: 17px;
        margin-top: 40px;
        color: #3a3a3a;
        line-height: 1.2;
        letter-spacing: -0.5px;
        text-align: left;
        margin-left: 17px;
    }
    
    .about-text h2 span {
        color: #3a3a3a  /*#3ab7f1; */
    }
    
    .about-text p {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 17px;
        line-height: 1.4;
        text-align: left;
        color: #000;
        margin-bottom: 30px;
        font-weight: 400;
        margin-left: 18px;
        margin-right: 18px;
    }
    
    .about-image {
        flex: 1;
        text-align: left; /* Align image to the left */
    }
    
    .about-image img {
        width: 312px;
        height: 165px;
        object-fit: cover;
        border-radius: 34px;
        margin-left: -8px;
        margin-top: 0px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column; /* Keep image on top on mobile */
            text-align: center;
        }
        
        .about-text {
            max-width: 100%;
        }
        
        .about-image {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .about-text h2 {
            font-size: 36px;
        }
    }
    /* Products & Industries Section */
    
    .products-section .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .products-section {
        padding: 0px 0;
        background-color: #F9F9F9;
    }
    
    .section-title {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .products-grid {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0px;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .product-card {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 60px;
        position: relative;
    }
    
    .product-image-container {
        position: relative;
        width: 100%;
        height: 297px;
        overflow: hidden;
    }
    
    .product-image {
        width: 100%;
        height: 70%;
        object-fit: cover;
        display: block;
    }
    
    .product-info-box {
        position: relative;
        margin: -135px 0 0 0;
        padding: 10px 10px 5px 15px;
        height: 220px;
        width: 290px;
        margin-left: 16px;
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0.7) 0%, 
            rgba(255, 255, 255, 0.7) 60px,  
            white 60px,       
            white 100%
        );
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        z-index: 2;
        overflow: hidden;
    }
    
    .product-info-content {
        margin-top: 0;
        height: 100%;
        padding-right: 5px;
        display: flex;
        flex-direction: column;
        overflow: hidden; /* Remove scroll */
    }
    
    .product-info-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .product-info-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .product-info-content::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }
    
    .product-info-content::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    
    .product-info-box h3 {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 18px;
        font-weight: 450;
        color: #000;
        margin: 0 0 15px 0;
    }
    
    .product-info-content p {
        margin: 0 0 20px 0;
        font-size: 16px;
        line-height: 1.5;
        color: #555;
        font-weight: 400;
        flex-grow: 1;
        overflow: hidden; /* Hide any overflow */
        text-overflow: ellipsis; /* Add ellipsis for overflow text */
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
    
    .view-all-btn {
        display: inline-flex;
        align-items: center;
        color: #0066cc;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        margin-top: auto;
        margin-left: auto; /* Push to the right */
        padding-bottom: 0px;
        width: fit-content;
        transition: all 0.3s ease;
    }
    
    .view-all-btn:hover {
        color: #004d99;
        border-bottom-color: #004d99;
    }
    
    .view-all-btn .arrow {
        margin-left: 5px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .view-all-btn:hover .arrow {
        transform: translateX(3px);
    }
    
    .product-info-box p {
        margin: 0;
        margin-top: 7px;
        font-size: 13px;
        line-height: 1.5;
        color: #000;
        font-weight: 400;
    }
    
    /* Sustainability Section */
    .sustainability-section {
        padding: 20px 0 80px 0;
        background-color: #f8f9fa;
    }
    
    .sustainability-content {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        gap: 0px;
    }
    
    .sustainability-text {
        flex: 1;
        max-width: 600px;
    }
    
    .sustainability-text h2 {
        font-size: 42px;
        font-weight: 600;
        margin-left: 17px;
        color: #333;
        margin-bottom: 24px;
        font-family: 'Source Sans 3', sans-serif;
    }
    
    .sustainability-text h3 {
        font-size: 25px;
        font-weight: 500;
        margin-left: 17px;
        color: #333;
        margin-bottom: 24px;
        font-family: 'Onest', sans-serif;
    }
    
    .sustainability-text p {
        font-size: 17px;
        line-height: 1.5;
        color: #000;
        margin-left: 17px;
        margin-bottom: 24px;
        font-family: 'Source Sans 3', sans-serif;
    }
    
    .sustainability-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .sustainability-image img {
        max-width: 82%;
        height: auto;
        border-radius: 36px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Footer Styles */
    .footer {
        background-color: #EEEEEE;
        padding: 40px 0;
        color: #333;
    }
    
    .footer .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #222;
        font-weight: 700;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        color: #000;
        transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
        color: #3ab7f1;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        background-color: #fff;
        border-radius: 50%;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        text-decoration: none;
    }
    
    .social-links a img {
        width: 14px;
        height: 14px;
        object-fit: contain;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .social-links a:hover {
        background-color: #3ab7f1;
        color: #fff;
    }
    
    .social-links a:hover img {
        filter: brightness(0) invert(1);
    }
    
    .social-links a i {
        font-size: 15px;
        line-height: 1;
    }
    
    .footer-bottom {
        border-top: 1px solid #e1e1e1;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-links {
        display: flex;
        gap: 20px;
    }
    
    .footer-links a {
        color: #666;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #3ab7f1;
    }
 
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }
    
    .main-nav {
        display: block !important; /* Ensure nav is visible for mobile */
    }
    
    .search-btn {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0072bc;
        padding: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        transform: translateY(0);
        margin-top: -12px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .nav-links > li {
        width: 100%;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
    }
    
    .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 8px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.open > a::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0 20px;
        transition: all 0.3s ease-in-out;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 15px 20px;
        background-color: rgba(0, 0, 0, 0.1);
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu .container {
        padding: 0;
    }

    .dropdown-grid {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-column {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 0;
        margin: 0;
    }

    .dropdown-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .dropdown-column h3 {
        margin: 0 0 10px 0;
        font-size: 16px;
    }
    
    .dropdown-column h3 a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        display: block;
        padding: 5px 0;
    }
    
    .dropdown-column ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .dropdown-column ul li a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        line-height: 1.5;
        display: block;
        padding: 8px 0;
        transition: color 0.2s ease;
    }
    
    .dropdown-column ul li a:hover {
        color: #fff;
    }

    .dropdown-column h3 {
        margin: 0 0 10px 0;
        font-size: 16px;
    }
    
    .dropdown-column h3 a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }
    
    .dropdown-column ul {
        margin: 0;
        padding: 0;
    }
    
    .dropdown-column ul li a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        line-height: 1.4;
        padding: 5px 0;
        display: block;
    }
}

@media (max-width: 375px) {
    .header-actions {
        margin-right: 0px;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 360px;
        margin: 0 0 0 0;
        margin-bottom: 8px;
        padding: 10px 0px 0 0px;
    }
    
    .product-info-box {
        position: relative;
        margin: -135px 0 0 0;
        padding: 10px 10px 5px 15px;
        height: 210px;
        width: 267px;
        margin-left: 14px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 60px, white 60px, white 100%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        z-index: 2;
        overflow: hidden;
    }

    .product-info-box p {
        margin: 0;
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.5;
        color: #000;
        font-weight: 400;
    }

    .view-all-btn {
        font-size: 12px;
    }

    .products-grid {
        flex-direction: column;
        gap: 0px;
        padding: 0px;
    }
}

@media (max-width: 320px) {
    .header-actions {
        margin-right: 4px; 
    } 

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 312px;
        margin: 0 0px 0 10px;
        margin-bottom: 8px;
        padding: 10px 0px 0 0px;
    }


    .product-info-box {
        position: relative;
        margin: -135px 0 0 0;
        padding: 10px 10px 5px 15px;
        height: 210px;
        width: 267px;
        margin-left: 14px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 60px, white 60px, white 100%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        z-index: 2;
        overflow: hidden;
    }

    .product-info-box p {
        margin: 0;
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.5;
        color: #000;
        font-weight: 400;
    }

    .view-all-btn {
        font-size: 12px;
    }

    .products-grid {
        flex-direction: column;
        gap: 0px;
        padding: 0px;
    }

    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 8px;
        padding: 0;
        width: 85px;
        margin-top: -5px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 11px;
        cursor: pointer;
        padding: 8px;
    }

    .about-image img {
        width: 250px;
        height: 153px;
        object-fit: cover;
        border-radius: 34px;
        margin-left: -8px;
        margin-top: 0px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .section-title {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin-bottom: 40px;
    }

    .product-info-box {
        position: relative;
        margin: -135px 0 0 0;
        padding: 10px 10px 5px 15px;
        height: 201px;
        width: 223px;
        margin-left: 8px;
}

.product-info-box p {
    margin: 0;
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}

.product-info-box h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 450;
    color: #000;
    margin: 0 0 15px 0;
}

.product-info-box {
    position: relative;
    margin: -135px 0 0 0;
    margin-left: 8px;
    padding: 14px 10px 5px 15px;
}
.about-text h2 {
    font-size: 29px;
}


.about-text p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
}

.sustainability-text p {
    font-size: 15px;
}

.logo img {
    width: 100px;
    margin-top: 10px;
    height: 27px;
}

}

    