* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:math;
            background-color: #fafafa;
        }

        hr{
            color:#000;
            border: 1px solid #000;
        }

        /* ============ TOP HEADER ============ */
        .top-header {
            background: white;
            padding: 10px 0;
            border-bottom: 1px solid #e8e8e8;
            position: sticky;
            top: 0;
            z-index: 99;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .top-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .search-wrapper {
            flex: 1;
            max-width: 380px;
        }

        .search-box {
            position: relative;
            color: #ffffff;
            font-size: 13px;
            padding: 8px 0;
        }

        .search-box input {
            width: 100%;
            padding: 11px 16px;
            border: 1.5px solid #e0e0e0;
            border-radius: 8px;
            font-size: 10px;
        }

        .search-box input:focus {
            outline: none;
            border-color: #000;
        }

        .search-box a{
            text-decoration: none;
            color: #ffffff;
        }

        .search-box a:hover{
            text-decoration: none;
            color: #7cbf8f;
            transition: color 0.3s ease;
            padding-right: 5px;
        }
        

        .search-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 15px;
        }

        .logo {
            text-align: center;
            flex: 1;
        }

        .logo-text {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: #000;
            margin: 0;
            text-transform: uppercase;
        }

        .logo-subtitle {
            font-size: 10px;
            letter-spacing: 1px;
            color: #999;
            margin-top: 2px;
            text-transform: uppercase;
        }

        .header-icons-wrapper {
            display: flex;
            align-items: center;
            gap: 25px;
            flex: 1;
            justify-content: flex-end;
        }

        .icon-btn {
            position: relative;
            background: none;
            border: none;
            color: #333;
            font-size: 18px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .icon-btn:hover {
            background-color: #f0f0f0;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #000;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            border: 2px solid white;
        }

        /* ============ NAVIGATION BAR ============ */
        .navbar-section {
            background: white;
            border-bottom: 1px solid #e8e8e8;
        }

        .nav-container {
            display: flex;
            align-items: center;
            padding: 0 15px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            margin-right: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.8px;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            border-bottom: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #386548;
            border-bottom-color:#386548;
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* ============ DESKTOP DROPDOWN ============ */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-top: 2px solid #000;
            border-bottom: 1px solid #e8e8e8;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-category {
            padding: 0;
        }

        .dropdown-category-title {
            font-size: 11px;
            font-weight: 700;
            color: #999;
            padding: 10px 20px 8px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .dropdown-item {
            color: #555;
            padding: 11px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background-color: #f8f8f8;
            color: #000;
            border-left-color: #000;
            padding-left: 24px;
        }

      
        @media (min-width: 769px) {
            .nav-item:hover .dropdown-menu {
                display: block;
            }
        }

        /* ============ MOBILE STYLES ============ */
        @media (max-width: 768px) {
            .top-header {
                padding: 0px 0;
            }

            .top-header-content {
                flex-direction: column;
                gap: 15px;
            }

            .search-wrapper {
                width: 100%;
                max-width: 100%;
            }

            .logo {
                order: 2;
            }

            .header-icons-wrapper {
                width: 100%;
                justify-content: flex-end;
            }

            .logo-text {
                font-size: 20px;
            }

            .mobile-menu-btn {
                display: block;
                order: 1;
            }

            /* Mobile Menu */
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                gap: 0;
                justify-content: flex-start;
                padding: 80px 0 30px 0;
                transition: left 0.4s ease;
                z-index: 999;
                border-right: 1px solid #e8e8e8;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-link {
                padding: 16px 20px;
                border: none;
                border-left: 3px solid transparent;
                font-size: 12px;
            }

            .nav-link:hover {
                background: #f8f8f8;
                border-left-color: #000;
                border-bottom: none;
            }

            /* MOBILE DROPDOWN - This is the key fix */
            .dropdown-menu {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: #f0f0f0 !important;
                border: none !important;
                border-top: 1px solid #e0e0e0 !important;
                min-width: auto !important;
                box-shadow: none !important;
                padding: 0 !important;
                max-height: 0 !important;
                overflow: hidden !important;
                transition: max-height 0.4s ease !important;
                z-index: auto !important;
            }

            .dropdown-menu.show {
                max-height: 1000px !important;
                padding: 10px 0 !important;
                overflow: visible !important;
            }

            .dropdown-category {
                padding: 8px 0;
            }

            .dropdown-category-title {
                padding: 12px 20px 8px 20px !important;
                font-size: 11px !important;
            }

            .dropdown-item {
                padding: 12px 20px 12px 40px !important;
                font-size: 12px !important;
                border: none !important;
            }

            .dropdown-item:hover {
                background: #e8e8e8 !important;
                border: none !important;
                padding-left: 44px !important;
            }

            .utility-bar {
                padding: 8px 0;
            }

            .utility-links {
                gap: 20px;
            }

            .utility-link {
                font-size: 11px;
            }
        }

        /* FIX: Mobile header single-row alignment */
        @media (max-width: 768px) {
            .top-header-content {
                flex-direction: row;
                align-items: center;
            }

            .logo {
                order: 1;
                text-align: left;
            }

            .mobile-menu-btn {
                order: 2;
                margin-left: auto;
            }
        }


        @media (max-width: 576px) {
            .logo-text {
                font-size: 16px;
            }

            .logo-subtitle {
                display: none;
            }

            .nav-link {
                font-size: 11px;
                padding: 14px 16px;
            }

            .icon-btn {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .utility-link {
                font-size: 10px;
            }

            .utility-link i {
                display: none;
            }
        }

        .topbar{
            background-color: #386548;
        }

        .top-header {
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }

        .top-header {
            position: relative;
            overflow: hidden;
            background: #ffffff;
        }

       

        /* LEFT diagonal shape */
        .top-header::after {
            content: "";
            position: absolute;
            top: -197px;
            left: -219px;
            width: 500px;
            height: 500px;
            background: #386548;
            transform: rotate(45deg);
            border-radius: 5px;
            z-index: 0;
        }

        /* Keep header content above shapes */
        .top-header-content {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .top-header::before,
            .top-header::after {
                width: 240px;
                height: 120px;
            }
        }

        .mySlides {display: none}
        img {vertical-align: middle;}
        a{text-decoration: none;}
        /* Slideshow container */
        .slideshow-container {
        position: relative;
        margin: auto;
        }

        /* Next & previous buttons */
        .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        }

        /* Position the "next button" to the right */
        .next {
        right: 0;
        border-radius: 3px 0 0 3px;
        }

        /* On hover, add a black background color with a little bit see-through */
        .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
        }

        /* Caption text */
        .text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 50%;
        width: 100%;
        text-align: center;
        }

        .text span{
            font-size:30px;
            padding: 25px;
            backdrop-filter: blur(20px);
            font-weight: 700;
        }

        /* Number text (1/3 etc) */
        .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
        }

        /* The dots/bullets/indicators */
        .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
        }

        .active, .dot:hover {
        background-color: #717171;
        }

      

        /* On smaller screens, decrease text size */
        @media only screen and (max-width: 300px) {
        .prev, .next,.text {font-size: 11px}
        }

         .slideshow-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
        }

        .mySlides {
            display: none;
            width: 100%;
        }

        .mySlides.active {
            display: block;
        }

        .mySlides img {
            width: 100%;
            height: auto;
            display: block;
        }

        .particles-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        .numbertext {
            color: #f1f1f1;
            font-size: 12px;
            padding: 8px 12px;
            position: absolute;
            top: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 16px;
            color: white;
            background: rgba(0, 0, 0, 0.5);
            font-weight: bold;
            font-size: 18px;
            transition: 0.3s ease;
            border-radius: 3px;
            user-select: none;
            z-index: 15;
        }

        .next {
            right: 0;
        }

        .prev {
            left: 0;
        }

        .prev:hover, .next:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        /* about-page-css */

        .about-section{text-align: center;}

        .section-title span{
            font-size:35px;
            color: #052651;
            font-weight: 700;
            transition: cubic-bezier(0.075, 0.82, 0.165, 1);
        }
        
        .section-subtitle span{
            font-size:19px;
            font-weight: 600;
        }

        .floating-image {
            float: left;
            width: 50%;
            margin: 0 50px 20px 0;
        }
        
        .floating-image img {
            width: 100%;
            height: auto;
        }
        
        .content-text p{
            text-align: justify;
            line-height: 1.8;
            color: #333;
            font-size: 16px;
        }
        
        .highlight {
            color: #000;
            font-weight: 600;
        }
        
        .content-text::after {
            content: "";
            display: table;
            clear: both;
        }
        
        @media (max-width: 768px) {
            .floating-image {
                float: none;
                width: 100%;
                margin: 0 0 20px 0;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .badge {
            display: inline-block;
            background: linear-gradient(135deg, #386548 0%, #000000 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

         .section-header .badge:hover {
            background: linear-gradient(135deg, #000000 0%, #386548 100%);
         }

        .section-header span {
            font-size: clamp(32px, 5vw, 40px);
            font-weight: 800;
            color: #386548cd;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-header span:hover {
            color:#386548;
        }

        .section-header p {
            font-size: 18px;
            color: #828282;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            border-bottom: 2px solid #000;

        }

        /* Breadcrumb-css */


        .breadcrumb-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .background-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 38, 81, 0.6);
            display: flex;
            align-items: center;
            padding-left: 50px;
        }
        
        .breadcrumb-nav {
            font-size: 18px;
            font-weight: 500;
        }
        .title-head{
            font-size: 50px;
        }
        .breadcrumb-nav a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumb-nav a:hover {
            color: #b6b6b6;
            text-decoration: underline;
        }
        
        .breadcrumb-separator {
            color: #ffffff;
            margin: 0 12px;
            font-weight: 300;
        }
        
        .breadcrumb-current {
            color: #052651;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* products-css */


        /* Product card */
        .product-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #e5e5e5;
            background: #fff;
        }

        /* Fixed image area */
        .product-img {
            width: 100%;
            height: 260px; /* adjust if needed */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #f8f8f8;
        }

        /* Image behavior */
        .product-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; /* VERY IMPORTANT */
        }

        /* Content area */
        .product-body {
            flex: 1;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-body span{
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            padding-bottom: 10px;
        }

        /* Button alignment */
        .product-body .product-btn {
            margin-top: auto;
        }

        .product-btn{
            padding: 10px;
            background: linear-gradient(135deg, #000000 0%, #386548 100%);
            text-align: center;
            color: #fff;
        }

        .product-btn:hover{
            padding: 10px;
            background: linear-gradient(135deg, #386548 0%, #000000 100%);
            text-align: center;
            color: #fff;
        }


     /* Owl Carousel Navigation */
        .owl-carousel .owl-nav {
            position: absolute;
            top: -70px;        /* adjust vertical position */
            right: 10px;       /* move to right */
            display: flex;
            gap: 10px;
        }

        /* Nav buttons */
        .owl-carousel .owl-nav button {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #386548 !important;  /* brand color */
            color: #ffffff !important;
            font-size: 20px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        .owl-carousel .owl-nav button:hover {
            background: #ccc !important;
            transform: scale(1.08);
        }

        /* Arrow icon */
        .owl-carousel .owl-nav span {
            font-size: 22px;
            line-height: 1;
        }

        /* Disabled state */
        .owl-carousel .owl-nav button.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* Mobile adjustment */
        @media (max-width: 767px) {
            .owl-carousel .owl-nav {
                top: -55px;
            }

            .owl-carousel .owl-nav button {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }
        }

        .owl-carousel .owl-dot{
            display: none !important;
        }

        .hot-products{
            padding: 50px;
            background-image: linear-gradient(135deg, #0000005d 0%, #00000044 100%), url(../image/img/111.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .service-section{
            padding: 50px 0;
            overflow: hidden;
        }

        .service-inner-section {
            display: flex;
            justify-content: space-between;
            gap: 18px;
        }

        .service-box{
            background-color: #006a2638;
            padding: 20px;
            height: 250px;
            position: relative;
            width: 100%;
        }

        .service-detail {
            background-color: #f5f5f5;
            border: 5px solid #fff;
            height: 100%;
            z-index: 2;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .service-img {
            width: 40%;
            margin: 2rem auto;
            opacity: 0.99;
        }

        .service-card{
            width: 60%;
            padding-top: 32px;
            padding-left: 10px;
        }

        .service-card span{
            font-size: 23px;
        }

        @media (max-width: 992px) {
            .service-inner-section {
                flex-direction: column;
                gap: 50px;
            }
        }

        .decorative-section{
            /* padding: 50px 0; */
            position: relative;
        }

        .decorative-banner{
            background-image: url('../image/img/decotative-bg.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            width: 100%;
        }

        .decorative-box{
            padding: 20px 0;
            /* height: 375px; */
            width: 100%;
            object-fit: contain;
            text-align: center;
            vertical-align: middle;
        }

        .decorative-box span{
            font-size: 28px;
            color: #000;
            font-weight: 600;
        }

        .decorative-box p{
            font-size: 15px;
            color: #838383;
            padding: 20px 0;
        }

        .prim-btn{
            background: transparent;
            border: 2px dashed #386548;
            padding: 5px 15px ;
            color: #386548;
        }

        .prim-btn:hover{
            background: #386548;
            border: 2px dashed #386548;
            padding: 5px 15px ;
            color: #fff;
        }

        .hygiene-section {
            position: relative;
            background: #f2f2f2;
            /* padding: 60px 0; */
            overflow: hidden;
            }

            /* LEFT BLUE SHAPE */
            .blue-shape {
            position: absolute;
            left: 0;
            top: 0;
            width: 25px;
            height: 100%;
            background: #386548;
            z-index: 1;
            }

            /* TOP ANGLE */
            .blue-shape::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 300px;
            height: 25px;
            background: #386548;
            clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
            }

            /* BOTTOM ANGLE */
            .blue-shape::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 800px;
            height: 25px;
            background: #386548;
            clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
            }

            /* CONTENT ABOVE SHAPE */
            .hygiene-section .container {
            position: relative;
            z-index: 2;
            }

            .bg-section{
                padding: 50px 0;
            }

            .counter-box {
                display: block;
                background: #38654839;
                padding: 60px 30px;
                text-align: center;
                border-radius: 50%;
            }

            .counter-box p {
                margin: 5px 0 0;
                padding: 0;
                color: #ffffff;
                font-size: 18px;
                font-weight: 500;
            }

            .counter-box i {
                font-size: 60px;
                margin: 0 0 15px;
                color: #ffffff;
                
            }

            .counter {
                display: block;
                font-size: 32px;
                font-weight: 700;
                color: #3b3b3b;
                line-height: 28px
            }

            .counter-box.colored {
                background: #3acf87
            }

            .counter-box.colored p,
            .counter-box.colored i,
            .counter-box.colored .counter {
                color: #fff
            }

            .why-choose-us{
                padding: 50px 0;
                background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.829) 0%, rgba(0, 0, 0, 0.79) 100%), url(../image/img/whybg2.png);
                background-position: center;
                background-attachment: fixed;
                background-repeat: no-repeat;
                background-size: cover;
            }

            .why-choose-box {
            }
            
            .why-head span{
                font-size: 35px;
                font-weight: 900;
                color: #fff;
            }

            .why-feature span{
                font-size: 22px;
                font-weight: 600;
                color: #fff;
            }

            .why-feature p{
                color: #fff;
            }

            .icon-bg{
                background-color: #0dff0052;
                color: #fff;
            }
            
            .icon-bg svg path{
                fill: #fff;
            }

            .features-box{
                padding: 10px 00;
            }

            .why-us-img img{
                border-radius: 0 25% 0px 0px ;
            }

            .why-us-imgs img{
                height: 200px;
                margin-top: -223px;
                border-radius: 0 25% 0px 0px ;
                border: 5px solid #fff;
            }

            /* testimonail-css */

        .testimonial-section {
            max-width: 900px;
            margin: 0 auto;
            padding: 50px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }

        .why-choose-us .section-header span {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .why-choose-us .section-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            color: #fff;
        }

        .testimonial-carousel {
            position: relative;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .testimonial-wrapper {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .testimonial-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: #fff;
        }

        .testimonial-slide.active {
            opacity: 1;
        }

        .testimonial-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0px;
        }

        .testimonial-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #386548;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #333;
            font-style: italic;
            max-width: 600px;
            margin: 15px 0;
        }

        .testimonial-author {
            margin-top: 20px;
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .author-role {
            font-size: 0.95rem;
            color: #386548;
            font-weight: 500;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 10px;
            background: #f8f9fa;
            border-top: 1px solid #e0e0e0;
        }

        .nav-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid #386548;
            background: white;
            color: #386548;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: #386548;
            color: white;
            transform: scale(1.1);
        }

        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .dots-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 0 30px 0;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: #386548;
            transform: scale(1.3);
        }

        .dot:hover {
            background: #667eea;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .testimonial-slide {
                padding: 40px 25px;
                height: auto;
                min-height: 450px;
            }

            .testimonial-wrapper {
                height: auto;
                min-height: 450px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .testimonial-image {
                width: 80px;
                height: 80px;
            }

            .author-name {
                font-size: 1.1rem;
            }

            .carousel-nav {
                padding: 20px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .section-header p {
                font-size: 0.9rem;
            }

            .testimonial-slide {
                padding: 30px 15px;
                min-height: 400px;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            .testimonial-image {
                width: 70px;
                height: 70px;
            }

            .dots-container {
                gap: 6px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }
        }


        #dotsContainer{
            display: none;
        }


        /* best-selling */

        .best-sellings-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--best-sellings-light-bg);
            padding: 40px 0;
        }

        .best-sellings-header {
            text-align: center;
            margin-bottom: 50px;
            color: var(--best-sellings-primary-color);
        }

        .best-sellings-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .best-sellings-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
        }

        .best-sellings-card {
            background: white;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .best-sellings-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .best-sellings-image {
            width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            overflow: hidden;
            position: relative;
        }

        .best-sellings-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .best-sellings-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--best-sellings-accent-color);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .best-sellings-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .best-sellings-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--best-sellings-primary-color);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .best-sellings-description {
            font-size: 0.95rem;
            color: #7f8c8d;
            margin-bottom: 0px;
            flex-grow: 1;
            line-height: 1.5;
            
        }

        .best-sellings-rating {
            margin-bottom: 12px;
            color: #f39c12;
            font-size: 0.95rem;
        }

        .best-sellings-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #ecf0f1;
            margin-top: auto;
        }

        .best-sellings-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--best-sellings-accent-color);
        }

        .best-sellings-price-original {
            font-size: 0.9rem;
            color: #95a5a6;
            text-decoration: line-through;
            margin-right: 8px;
        }

        .best-sellings-btn-add-cart {
            background: var(--best-sellings-primary-color);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 0.9rem;
        }

        .best-sellings-btn-add-cart:hover {
            background: var(--best-sellings-accent-color);
            color: white;
        }

        @media (max-width: 768px) {
            .best-sellings-header h1 {
                font-size: 2rem;
            }

            .best-sellings-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .best-sellings-header h1 {
                font-size: 1.5rem;
            }

            .best-sellings-body {
                padding: 15px;
            }

            .best-sellings-title {
                font-size: 1rem;
            }
        }


        /* footer-css */

        .chem-company-content {
            flex: 1;
            padding: 60px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .chem-company-content .chem-title-main {
            color: #386548;
            text-align: center;
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 700;
        }

        /* Footer Styles */
        .chem-professional-footer {
            background: linear-gradient(135deg, #386548 0%, #2a4a37 100%);
            color: #e8f0ed;
            padding-top: 60px;
            padding-bottom: 20px;
            margin-top: 60px;
            position: relative;
        }

        .chem-footer-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .chem-footer-block {
            color: #e8f0ed;
        }

        .chem-footer-block-title {
            color: #fff;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 12px;
        }

        .chem-footer-block-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #5a9d6f;
            border-radius: 2px;
        }

        .chem-footer-list {
            list-style: none;
        }

        .chem-footer-list li {
            margin-bottom: 12px;
        }

        .chem-footer-list li a {
            color: #e8f0ed;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .chem-footer-list li a:hover {
            color: #5a9d6f;
            padding-left: 8px;
        }

        .chem-footer-block p {
            font-size: 14px;
            line-height: 1.8;
            color: #d4dfd9;
        }

        .chem-company-details-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .chem-company-details-row i {
            font-size: 20px;
            color: #5a9d6f;
            width: 30px;
        }

        .chem-company-details-row p {
            margin: 0;
            font-size: 14px;
            color: #d4dfd9;
        }

        /* Social Icons */
        .chem-social-links-container {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .chem-social-links-container a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(90, 157, 111, 0.2);
            color: #ffffff;
            border-radius: 50%;
            transition: all 0.3s ease;
            border: 1px solid #5a9d6f;
        }

        .chem-social-links-container a:hover {
            background-color: #5a9d6f;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Go to Top Button */
        #chem-go-to-top-button {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            width: 50px;
            height: 50px;
            background-color: #386548;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(56, 101, 72, 0.4);
        }

        #chem-go-to-top-button:hover {
            background-color: #5a9d6f;
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(56, 101, 72, 0.6);
        }

        #chem-go-to-top-button:active {
            transform: translateY(-2px);
        }

        /* Footer Bottom */
        .chem-footer-bottom-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 25px;
            font-size: 13px;
            color: #d4dfd9;
        }

        .chem-footer-bottom-section a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .chem-footer-bottom-section a:hover {
            color: #7cbf8f;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .chem-footer-grid-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .chem-footer-bottom-section {
                flex-direction: column;
                text-align: center;
            }

            #chem-go-to-top-button {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }

            .chem-company-content {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .chem-professional-footer {
                padding-top: 40px;
            }

            .chem-footer-block-title {
                font-size: 14px;
                margin-bottom: 18px;
            }

            .chem-social-links-container {
                gap: 12px;
            }

            .chem-social-links-container a {
                width: 36px;
                height: 36px;
            }

            #chem-go-to-top-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
                bottom: 15px;
                right: 15px;
            }
        }

        .best-sellings-card hr{
            margin: 0;
        }

        /* popups-css */


        .popup-demo-section {
            background: white;
            padding: 60px 40px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
        }

        .popup-demo-title {
            font-size: 28px;
            font-weight: 700;
            color: #386548;
            margin-bottom: 15px;
            text-align: center;
        }

        .popup-demo-subtitle {
            color: #666;
            text-align: center;
            margin-bottom: 40px;
            font-size: 14px;
        }

        .cta-buttons-demo {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            /* margin-bottom: 30px; */
            padding: 20px 0; 
        }

        .btn-get-quote {
            background-color: #c41e3a;
            color: white;
            border: none;
            padding: 12px 15px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .btn-get-quote:hover {
            background-color: #a01830;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
        }

        .btn-get-callback {
            background-color: #333;
            color: white;
            border: none;
            padding: 12px 15px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .btn-get-callback:hover {
            background-color: #555;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .btn-whatsapp-demo {
            background-color: #25d366;
            color: white;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 5px;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-whatsapp-demo:hover {
            background-color: #1ebc5f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        /* Modal Styles */
        .modal-content-custom {
            border: none;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .modal-header-quote {
            background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
            color: white;
            border-radius: 8px 8px 0 0;
            padding: 10px;
        }

        .modal-header-callback {
            background: linear-gradient(135deg, #386548 0%, #2a4a37 100%);
            color: white;
            border-radius: 8px 8px 0 0;
            padding: 25px;
        }

        .modal-title-text {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
        }

        .btn-close-custom {
            filter: brightness(0) invert(1);
        }

        .modal-body-custom {
            padding:15px 30px;
        }

        .form-group-custom {
            margin-bottom: 10px;
        }

        .form-label-custom {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }

        .form-input-custom {
            width: 100%;
            padding: 5px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-input-custom:focus {
            outline: none;
            border-color: #386548;
            box-shadow: 0 0 0 3px rgba(56, 101, 72, 0.1);
        }

        .form-textarea-custom {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
        }

        .form-textarea-custom:focus {
            outline: none;
            border-color: #386548;
            box-shadow: 0 0 0 3px rgba(56, 101, 72, 0.1);
        }

        .form-info-text {
            font-size: 13px;
            color: #666;
            margin-top: 8px;
        }

        .modal-footer-custom {
            padding: 10px 30px;
            border-top: 1px solid #eee;
        }

        .btn-submit-quote {
            background-color: #c41e3a;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit-quote:hover {
            background-color: #a01830;
        }

        .btn-submit-callback {
            background-color: #c41e3a;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit-callback:hover {
            background-color: #a01830;
        }

        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
            text-align: center;
        }

        .error-message {
            display: none;
            background-color: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
            text-align: center;
            font-size: 13px;
        }

        .modal-backdrop {
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal.show .modal-dialog {
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .popup-demo-section {
                padding: 40px 25px;
            }

            .popup-demo-title {
                font-size: 24px;
            }

            .modal-body-custom {
                padding: 10px;
            }

            .modal-header-quote, .modal-header-callback {
                padding: 20px;
            }

            .cta-buttons-demo {
                gap: 10px;
            }

            .btn-get-quote, .btn-get-callback {
                padding: 10px 18px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .popup-demo-section {
                padding: 30px 15px;
            }

            .popup-demo-title {
                font-size: 20px;
            }

            .cta-buttons-demo {
                flex-direction: column;
            }

            .btn-get-quote, .btn-get-callback {
                width: 100%;
                justify-content: center;
            }

            .modal-dialog {
                margin: 10px;
            }
        }


        /* Breadcrumb-css */


        .breadcrumb-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .background-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(3 3 4 / 60%);
            display: flex;
            align-items: center;
            padding-left: 50px;
        }
        
        .breadcrumb-nav {
            font-size: 18px;
            font-weight: 500;
        }
        .title-head{
            font-size: 50px;
        }
        .breadcrumb-nav a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumb-nav a:hover {
            color: #b6b6b6;
            text-decoration: underline;
        }
        
        .breadcrumb-separator {
            color: #ffffff;
            margin: 0 12px;
            font-weight: 300;
        }
        
        .breadcrumb-current {
            color: #052651;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .content-section {
            padding: 40px 50px;
            background: #f8f9fa;
        }
        
        .content-section h1 {
            color: #052651;
            margin-bottom: 15px;
            font-size: 32px;
        }
        
        .content-section p {
            color: #333;
            line-height: 1.6;
            font-size: 16px;
        }

        /* sitemap-section */

        .sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .sitemap-title {
            color: #2b2a28;
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .sitemap-card {
            background-color: white;
            border: 2px solid #386548;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: #2b2a28;
        }
        
        .sitemap-card:hover {
            background-color: #386548;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
            text-decoration: none;
        }
        
        .card-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .sitemap-card:hover .card-description {
            opacity: 1;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-header {
            color: #052651;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #052651;
        }
        
        .main-links {
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .sitemap-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .category-header {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .sitemap-card {
                padding: 15px;
            }
            
            .card-label {
                font-size: 1rem;
            }
        }

        .mission-vision-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        /* Cards */
        .mission-card, .vision-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(5, 38, 81, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(5, 38, 81, 0.2);
        }

        .card-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .mission-card:hover .card-image img,
        .vision-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 4px 15px rgba(5, 38, 81, 0.3);
        }

        .card-content {
            padding: 40px;
        }

        .card-content span {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .card-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Accent Line */
        .accent-line {
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px 0;
            border-radius: 2px;
        }

        /* Values Section */
        .values-section {
            padding: 50px 0;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            padding: 30px;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #30563f 0%, #000 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
        }

        .value-item span {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .value-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-header h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .mission-vision-section {
                padding: 50px 0;
            }
        }


        /* contact-css */
        
        .contact-section {
            /* background: linear-gradient(135deg, #001a4d 0%, #0033cc 50%, #001a66 100%); */
            background-image:linear-gradient(135deg, rgb(5 38 81 / 94%) 0%, rgb(5 38 81 / 65%) 100%), url(../image/img/bg6.jpg);
            background-size: cover;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 40px 20px;
        }

        .contact-title {
            text-align: center;
            color: white;
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 60px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info-col {
            color: white;
        }

        .contact-info-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            align-items: flex-start;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #ffffff;
            min-width: 30px;
            margin-top: 5px;
        }

        .contact-info-content {
            flex: 1;
        }

        .contact-info-label {
            color: #a0a0a0;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .contact-info-text {
            color: rgb(255, 255, 255);
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .contact-info-text a{
            color: #fff;
            text-decoration: none;
        }

        .contact-info-text a:hover{
            color: #ccc;
        }

        .form-col {
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .form-title {
            font-size: 2rem;
            font-weight: 400;
            color: #333;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-control {
            border: none;
            border-bottom: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 12px 0;
            font-size: 1rem;
            background: transparent;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-bottom-color: #0066ff;
            box-shadow: none;
            background: transparent;
        }

        .form-control::placeholder {
            color: #999;
        }

        textarea.form-control {
            resize: none;
            min-height: 120px;
        }

        .btn-send {
            background: linear-gradient(135deg, #000 0%, #30563f 100%);
            border: none;
            color: white;
            padding: 12px 40px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .btn-send:hover {
            background: linear-gradient(135deg, #30563f 0%, #000 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(15, 170, 69, 0.3);
            color: white;
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 30px 15px;
                min-height: auto;
            }

            .contact-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .contact-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .form-col {
                padding: 30px 20px;
            }

            .form-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .contact-info-item {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 20px 10px;
            }

            .contact-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .contact-row {
                gap: 30px;
            }

            .contact-info-title {
                font-size: 1.5rem;
            }

            .contact-info-text {
                font-size: 1rem;
            }

            .form-col {
                padding: 20px 15px;
            }

            .form-title {
                font-size: 1.3rem;
            }

            .form-group {
                margin-bottom: 18px;
            }
        }

        /* fixed contact nuttons */

        .fixed-contact-btns {
            position: fixed;
            left: 20px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }
        .fixed-contact-btns a:hover{
            transform: translateY(-4px);
        }


        /* Go to Top Button */
        #chem-go-to-top-button {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            width: 50px;
            height: 50px;
            background-color: #386548;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(56, 101, 72, 0.4);
        }

        #chem-go-to-top-button:hover {
            background-color: #5a9d6f;
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(56, 101, 72, 0.6);
        }

        #chem-go-to-top-button:active {
            transform: translateY(-2px);
        }