@font-face {
    font-family: font-primary;
    src: url('../font/Teko-Medium.ttf');
}

@font-face {
    font-family: font-secondary;
    src: url('../font/Mulish-Regular.ttf');
}


:root {
    --primarycolor: #51AC5A;
    --secondarycolor: #444;
    --headblack: #212529;
    --thirdcolor: #ffffff;
    --fourcolor: #93C854;
    --bgcolor: #edf0f3;
    --font-primary: "font-primary";
    --font-secondary: "font-secondary";
    --hover: #68a819;
    --spacing: 16px;
    --line-height: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primarycolor);
    color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    /* font-weight: bold; */
    line-height: 1.2;
    margin-bottom: 8px;
}

li {
    font-family: var(--font-secondary);
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease-out;
}


#loader img {
    width: 100px;
    height: auto;
}

body.loaded #preloader {
    background-color: transparent;
    display: none !important;
}

body.loaded #content {
    display: block;
}



p {
    font-family: var(--font-secondary);
    font-size: 18px;
    /* margin-bottom: 16px; */
    line-height: 24px;
}


a {
    font-family: var(--font-secondary);
    text-decoration: none;
    color: var(--color-primary);
}

a:hover {
    text-decoration: none;
    color: var(--secondarycolor);
}

ul,
ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

li {
    line-height: 24px;
}

#backToTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    opacity: 0;
    box-shadow: 2px 4px 4px #3f7e45;
    transition: opacity 0.5s ease;
}

#backToTop:hover {
    background-color: #45a049;
    color: var(--headblack);
}




/*=====================================================================
                             Navbar
======================================================================= */
.nav-link.active {
    color: #161616 !important;
    font-weight: 600 !important;
}

.navbar {
    color: var(--thirdcolor);
    background-color: var(--primarycolor);
    box-shadow: 0 4px 6px rgba(218, 218, 218, 0.1);
    z-index: 1040;
}

.navbar-brand img {
    max-height: 45px;
}

.navbar-nav {
    margin-left: 300px;

}

.navbar-nav .nav-link {
    font-family: var(--secondarycolor);
    font-size: 18px;
    font-weight: 500;
    color: var(--thirdcolor);
    transition: color 0.3s, transform 0.3s;
    padding-left: 50px;
}

.navbar-nav .nav-link:hover {
    color: #161616;
    font-weight: 600;
    transform: translateY(-2px);
}

.offcanvas {
    background-color: var(--primarycolor) !important;
    transition: transform 0.4s ease-in-out;
}

.offcanvas.show {
    transform: translateX(0);
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
}

.offcanvas-body ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #161616;
    transition: color 0.3s, transform 0.3s;
}

.offcanvas-body ul li a:hover {
    color: #161616;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    outline: none;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler {
    color: var(--secondarycolor);
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    padding-bottom: 5px;
    overflow: hidden;
    ;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #161616;
}

.navbar-expand-lg .navbar-nav .nav-link {
    /* padding: 0px 15px; */
    padding-left: 30px !important;
}

/* .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondarycolor);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
} */

.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar-nav .nav-item .nav-link:not(:hover)::after {
    transform: scaleX(0);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler {
    border: none !important;
}

.navbar-nav .nav-item .nav-link.btn-enquiry {
    font-size: 17px;
    font-weight: 600;
    color: #161616;
    background-color: var(--thirdcolor);
    padding: 8px 25px;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-left: 200px;
    text-align: center;
}

/* .navbar-nav .nav-item .nav-link.btn-enquiry:hover {
    background-color: var(--secondarycolor);
    transform: scale(1.05);
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);

} */
.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

.dropdown-menu ul li {
    padding-bottom: 18px;
}

.offcanvas-header {
    border-bottom: none;
}


/*=====================================================================
                           Home page
======================================================================= */
/* .inner-banner {
    width: 100%;
     background-image: url('../image/banner/banner-2.png'); 
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 600px; 
}*/

/* ==================about us=========================== */
.inner-about {
    padding: 100px 0px;
    position: relative;
}

.abo-overlay {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* Ensure it appears above other content */
    width: 100%;
    /* Make sure it takes the full width */
    height: auto;
}


.about-left p span {
    color: var(--headblack);
    font-weight: 600;
}

.about-left h3 {
    font-size: 24px;
    color: var(--headblack);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* Ensures the text is centered */
    position: relative;
}

.about-left h3::before,
.about-left h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
}

.about-left h1 {
    /* font-size: 52px; */
    font-size: 38px;
    font-weight: 400;
}

.about-left h1 span {
    /* font-size: 52px; */
    font-size: 38px;
    color: var(--primarycolor);
}

.about-left p span {
    font-size: 18px;
    color: var(--primarycolor);
}

.about-left p {
    line-height: 28px;
    text-align: justify;
    color: var(--secondarycolor);
}

.about-left a {
    font-size: 18px;
    color: var(--secondarycolor) !important;
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 15px 20px;
    color: var(--thirdcolor);
    text-decoration: none;
}

.about-left a {
    font-size: 16px;
    color: var(--secondarycolor);
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 10px 14px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.6s ease, background-color 0.5s ease, border-color 0.9s ease;
}

.about-left a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #28a745;
    z-index: -1;
    transition: transform 0.4s ease-in-out, left 0.4s ease-in-out;
}

.about-left a:hover::before {
    left: 0;
    width: 300%;
    transition: transform 0.6s ease-in-out, left 0.6s ease-in-out;
}

.about-left a:hover {
    color: #fff !important;
    background-color: transparent;
    border-color: transparent;
}

.about-left a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 0%;
    height: 100%;
    z-index: -1;
    background: #28a745;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.about-left a:hover::after {
    width: 100%;
    left: 0;
}



.about-right {
    display: flex;
    justify-content: center;
    padding-left: 0px;
    position: relative;
}

.overlay-about {
    position: absolute;
    top: -16%;
    right: 40%;
    z-index: -5;
}

.about-right img {
    width: 70%;
    border-radius: 8px;

}



.about-btn {
    margin-top: 20px;
}

.about-left {
    padding-bottom: 50px;
}

/* ================================services============================= */
.inner-service {
    padding: 100px 0px;
    background-color: var(--bgcolor);
}

.service-header {
    text-align: center;
}

.service-header h3 {
    font-size: 24px;
    color: var(--headblack);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;

}

.service-header h3::before,
.service-header h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
}

.service-header h2 span {
    color: var(--primarycolor);

}

.service-header h2 {
    font-size: 38px;
}

.service-card {
    background-color: var(--thirdcolor);
    border-radius: 7px;
    padding: 40px 30px;
    flex: 1;
}

.service-img {
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 1px 3px 5px rgb(230, 230, 230);
}

.service-card p {
    color: var(--secondarycolor);
}

.service-img img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.service-card h4 a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primarycolor);

    text-decoration: none;
}

.service-card {
    font-size: clamp(18px, 16px, 16px);
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover h4 a {
    color: var(--headblack);

}

.service-card .service-img img {
    width: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}



/*====================================product section====================================== */
.inner-product {
    padding: 100px 0px;
}

.product-header h3 {
    font-size: 24px;
    color: var(--headblack);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;

}

.product-header h3::before,
.product-header h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
}

.product-header h2 span {
    color: var(--primarycolor);

}

.product-header h2 {
    font-size: 38px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-inner .item img {
    border-radius: 7px;

}

.product-inner .item {
    width: 98%;
    height: 100%;
}

.product-detail {
    padding-left: 10px;
}

.product-detail p {
    color: var(--secondarycolor);
}

.product-detail h4 {

    font-size: 26px;
    font-weight: 500;
}

.product-detail p {
    font-size: 16px;
}

.inner-product .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primarycolor) !important;
}

.product-carousel .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ======================================================testimonial=============================== */
.inner-testmonial {
    padding: 100px 0px;
    background-color: var(--primarycolor);
    position: relative;

}


.testmonial-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testmonial-header h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--headblack);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;

}

.testmonial-header {
    /* position: relative; */
    padding-left: 40px !important;
    margin-bottom: 30px !important;
}

.test-overlay {
    position: absolute;
    top: 60%;
    left: 10%;
    animation: smooth-motion 2s ease-in-out infinite;
}

@keyframes smooth-motion {
    0% {
        top: 60%;
        left: 10%;
    }

    50% {
        top: 58%;
        left: 12%;
    }

    100% {
        top: 60%;
        left: 10%;
    }
}

/* .testmonial-header h3::before,
.testmonial-header h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
} */

/* .testmonial-header h2 span {
    color: var(--thirdcolor);

} */

.testmonial-header h2 {
    font-size: 38px;
}

.testmonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.test-img {

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testmonial-carousel .item {
    color: var(--thirdcolor);
}


.testmonial-carousel img {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;

    border: 5px solid white;
    object-fit: cover;

}

.test-detail p {
    padding: 20px 270px;
}

.test-detail {
    margin-top: 20px;
}

.testimonial-container {
    position: relative;
}

.custom-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.custom-nav button {
    position: absolute;
    top: 10%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.custom-nav .custom-prev {
    top: 65%;
    left: 20%;
}

.custom-nav .custom-next {
    top: 65%;
    right: 20%;
}

.inner-testmonial .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: black !important;
}

/* ===============================FAq============================== */
.inner-faq {
    padding: 80px 0px;

}

.faq-header {
    position: relative;
}

.faq-overlay {
    position: absolute;
    top: -35%;
    left: 10%;
    animation: faq-small-motion 6s ease-in-out infinite;
}

@keyframes faq-small-motion {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) translate(5px, 5px);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
}

.faq-overlay img {
    width: 150px;
    height: 150px;
}

.faq-header h2 {
    font-size: 38px;
    text-align: center;
}

.faq-header h2 span {
    color: var(--primarycolor);
}

.faq-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--headblack);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;

}

.faq-header h3::before,
.faq-header h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
}

.faq-title {
    color: var(--secondarycolor);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-title span {
    color: var(--primarycolor);
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-item .faq-header {
    padding: 15px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .faq-header h6 {
    color: var(--secondarycolor);
    font-weight: 500 !important;
    margin: 0;
    font-size: 24px;
}

.faq-right img {
    width: 95%;
    display: block;
    margin: 0 auto;
    animation: smoothUpDown1 2s ease-in-out infinite;
}

@keyframes smoothUpDown1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.faq-item .faq-header h6 span {
    color: var(--primarycolor);
}

.accordion-button p {
    font-size: 18px;
    color: var(--headblack);
    font-weight: 600;
    margin-bottom: 0px !important;
    padding: 15px 0px;
}

.accordion-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.accordion-button p span {
    color: var(--primarycolor);
}

.accordion-button:not(.collapsed) {

    background-color: var(--primarycolor) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) span {
    color: black;
}

.accordion-button:not(.collapsed)::after {
    background-image: black;
}

.accordion-button:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon-transform);
    color: black !important;
}

.accordion-button::after {
    color: #bbb;
}

.accordion-button {
    background-color: #fff;
    transition: background-color 0.6s ease-in-out;
}

.accordion-button.collapsed {
    background-color: #fff !important;
}

.accordion {
    --bs-accordion-btn-focus-box-shadow: none !important;
}

/*=====================================================================
                            footer page
======================================================================= */
.inner-footer {
    padding-top: 40px;
    padding-bottom: 0px;
    background-color: var(--primarycolor);
}

.social-link {
    display: flex;
    gap: 20px
}

.sec-1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec-1 img {
    width: 100%;
    height: 70px;
}

.sec-1-overlay img {
    width: 120px;
    height: 120px;
}

.sec-1 p {
    text-align: center;
    color: var(--thirdcolor);
}

.sec-1 .social-link i {
    font-size: 24px;
    color: var(--thirdcolor);
}

.sec-1 .social-link i:hover {
    color: var(--headblack) !important;
}

.sec-1 .social-link a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 10px;
    line-height: 10px;
    text-align: center;
}

.sec-2 h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--thirdcolor);
}

.sec-2 ul {
    padding-left: 15px !important;
    list-style-type: none;
}

.sec-2 ul li a {
    font-size: 18px;
    text-decoration: none;
    color: var(--thirdcolor);
    margin-bottom: 7px !important;
}

.sec-2 ul li {
    margin-bottom: 10px;
}

.sec-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-2 ul li {
    margin-bottom: 10px;
}

.sec-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-3 {
    position: relative;
}

.letter-overlay {
    position: absolute;
    bottom: 10%;
    right: 0%;
}

.sec-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-2 ul li {
    margin-bottom: 10px;
}

.sec-2 ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sec-2 ul li a i {
    display: none;
    margin-left: 10px;
    font-size: 16px;
    color: #c8e6c9;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.sec-2 ul li a:hover {
    color: var(--headblack);
    font-weight: 600;
}

.sec-2 ul li a {
    position: relative;
    text-decoration: none;

    padding-left: 0;
    transition: all 0.3s ease-in-out;
}

.sec-2 ul li a:hover {
    padding-left: 8px;
    border-left: 4px solid var(--headblack);
    color: var(--headblack);
}


.sec-3 ul li a:hover {
    color: var(--headblack);
    font-weight: 600;
}

.sec-2 ul li a:hover i {
    display: inline;
    opacity: 1;
    color: var(--headblack);
}

.sec-2 ul li a:hover::after {
    width: 100%;
}

.social-link a i:hover {
    color: #444;
}

.sec-3 ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.sec-3 ul li a i {
    padding-right: 10px;
}

.sec-3 h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--thirdcolor);
}

.copy {
    border-top: 1px solid var(--secondarycolor);
}

.copy h3 {
    color: var(--headblack);
    padding: 30px 0px;
    font-size: 18px;
    text-align: center;
}

.copy h3 a {
    color: var(--thirdcolor);
    text-decoration: none;
}

.copy a:hover {
    font-weight: 600;
    color: var(--headblack);
}

/*=====================================================================
                            banner
======================================================================= */


.hero-banner {
    position: relative;
}

.slide-content {
    position: absolute;
    top: 20%;
    left: 20%;
}

.banner-3 .slide-content {
    position: absolute;
    top: 20%;
    left: 10%;
}

.banner-2 .slide-content {
    position: absolute;
    top: 18%;
    left: 14%;
}

.hero-slide img {
    width: 100%;
    height: 550px;
}

.slide-content h1 {
    width: 620px;
    font-size: 68px;
    color: var(--headblack);
}

.slide-content h1 span {
    color: var(--primarycolor);
}

.slide-content p {
    font-size: 18px;
    color: var(--headblack);
    width: 500px;
}

.slide-content a {
    font-size: 18px;
    padding: 10px 40px;
    border-radius: 4px;
    background-color: var(--primarycolor);
    color: var(--thirdcolor);
    text-decoration: none;
    margin-top: 10px;
}



.hero-custom-nav button {
    position: absolute;
    top: 10%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.hero-custom-nav .custom-prev {
    top: 65%;
    left: 10%;
}

.hero-custom-nav .custom-next {
    top: 65%;
    right: 10%;
}

.hero-banner .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    display: block;
    background: var(--primarycolor) !important;
}



.hero-banner .owl-dots {
    position: absolute;
    bottom: 50%;
    right: 10%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-banner .owl-dot {

    width: 8px;
    height: 8px;
    background-color: white !important;
    /* border-radius: 50%; */
    margin: 0 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

.hero-banner .owl-dot.active {
    background-color: var(--primarycolor) !important;
}



.fade-in {
    animation: fadeIn 3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner {
    position: relative;
}

.custom-prev-btn,
.custom-next-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.custom-prev-btn {
    left: 10px;
}

.custom-next-btn {
    left: auto;
    right: 10px;
}

/* Optional: Add hover effect */
.custom-prev-btn:hover,
.custom-next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}


/*=====================================================================
                          about page
======================================================================= */
.top-banner {
    color: var(--secondarycolor);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.top-banner-1 {
    color: var(--secondarycolor);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.top-banner-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1.0;
    z-index: -1;
}

.top-banner-11 {
    color: var(--secondarycolor);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* background-image: url('../image/banner/Group\ 235\ 1.png'); */
    background-image: url('../image/banner/ban-1.png');
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top-banner-12 {
    color: var(--secondarycolor);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../image/banner/gasket-banner.png');
    /* background-image: url('../image/banner/Group\ 189.png'); */
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top-banner-1 {
    /* background-image: url('../image/banner/chemical-banner.png'); */
    background-image: url('../image/banner/ASK\ Chemicals\ Banner-01\ 1\ 1.png');
    object-fit: contain;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../image/banner/gaskets-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: -1;
}

.inner-top-banner h2 {
    font-size: 82px !important;
    color: black;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 32px;
    }

    .breadcrumb {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb li {
        margin: 5px 0;
    }

    .top-banner {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

    .breadcrumb li a {
        font-size: 14px;
    }
}

.owl-nav {
    position: absolute;
    bottom: 5%;
    display: flex;
    gap: 25px;
    left: 10%;
}

.hero-carousel .owl-nav {
    display: none !important;
}



/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.breadcrumbs {
    display: inline-block;
    margin: 10px 0;
    color: black;
    box-shadow: 0 0 2px #aaaaaa;
    counter-reset: flag;
}

.breadcrumbs a {
    position: relative;
    float: left;
    padding-left: 30px;
    padding-right: 10px;
    text-decoration: none;
    line-height: 36px;
    color: black;
    background-color: white;
    transition: background-color 0.1s;
}

.breadcrumbs a::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    z-index: 1;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50px 0 0 0;
    box-shadow: 1px 1px 0 1px #dddddd;
    transform: rotate(-45deg) scale(0.73);
    transition: background-color 0.1s;
}

.breadcrumbs a:hover,
.breadcrumbs a:hover::after,
.breadcrumbs a.active,
.breadcrumbs a.active::after {
    background-color: var(--primarycolor);
}

.breadcrumbs a:first-child {
    padding-left: 25px;
}

.breadcrumbs a:first-child::before {
    left: 14px;
}



.about-section {
    padding: 50px 0px;
}

.about-inner {
    padding: 00px 200px;
    position: relative;
}

.about-overlay {
    width: 300px;
    background-color: var(--primarycolor);
    color: var(--thirdcolor);
    padding: 12px 24px;
    border-radius: 10px;
    position: absolute;
    bottom: 6%;
    left: 90px;
}

.about-inner-left {
    padding: 10px 60px;
    position: relative;
}

.about-overlay h3 {
    font-size: 52px;
}

.about-one-right .about-left {
    padding-bottom: 10px;
}

.about-list {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 40px;

}

.about-one-right .about-left h2 {
    font-size: 38px;
}

.about-one-right .about-left h2 span {
    color: var(--primarycolor);
}

.about-one-right p {
    font-size: 18px;
    line-height: 32px;
    color: var(--secondarycolor);
}

.foot-about p {
    color: var(--secondarycolor);
}

.about-list ul {
    list-style: none;
    padding: 0;
    margin-left: 0px !important;

}

.about-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--headblack);
    font-weight: 600;
}

.about-list li i {
    color: #28a745;
    font-size: 1.5rem;
    margin-right: 10px;
}

.about-list li:hover {
    color: var(--primarycolor);
    cursor: pointer;
}

.about-list li:hover i {
    color: var(--primarycolor);
}

#counter {

    transition: all 0.5s ease-out;
}

.foot-about a {
    font-size: 18px;
    color: var(--secondarycolor) !important;
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 15px 20px;
    color: var(--thirdcolor);
    text-decoration: none;
}

.foot-about a {
    font-size: 18px;
    color: var(--headblack) !important;
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 10px 28px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease-in-out;
}

.foot-about a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #28a745;
    z-index: -1;
    transition: transform 0.4s ease-in-out, left 0.4s ease-in-out;
}

.foot-about a:hover::before {
    left: 0;
    width: 300%;
    transition: transform 0.6s ease-in-out, left 0.6s ease-in-out;
}

.foot-about a:hover {
    color: #fff !important;
    background-color: transparent;
    border-color: transparent;
}

.foot-about a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 0%;
    height: 100%;
    z-index: -1;
    background: #28a745;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.foot-about a:hover::after {
    width: 100%;
    left: 0;
}

.about-overlay-1 {

    background-color: whitesmoke;
    padding: 50px 15px;
    position: absolute;
    left: -10px;
    bottom: 1%;
    z-index: -1;
    animation: moveOverlay 5s ease-in-out infinite;
}

@keyframes moveOverlay {
    0% {
        bottom: 1%;
    }

    50% {
        bottom: 20%;
    }

    100% {
        bottom: 1%;
    }
}

.about-overlay-1 h3 {
    font-size: 38px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.about-inner-right {
    padding-top: 20px;
}

.about-one-right p {
    text-align: justify;
}

/* ===========================oue mission and vission============================= */
.inner-mission {
    padding-top: 50px 0px;
    padding-bottom: 60px;
}

.mission-card {
    flex: 1;


}

.mission-inner {
    display: flex;
}

.mission-card {
    width: 400px;
    background-color: var(--thirdcolor);
}

.mission-detail {
    padding: 20px;
    background-color: var(--thirdcolor);

    border: 1px solid rgb(238, 238, 238);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    flex: 1;

}

.mission-detail p {
    text-align: justify;
    color: var(--secondarycolor);
}

.mission-detail h3 {
    font-size: 28px;
    color: var(--primarycolor);
}

.mission-card {
    position: relative;
    overflow: hidden !important;
    border-radius: 10px;

}

.mission-img img {
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: auto;
}

.mission-card:hover .mission-img img {
    transform: scale(1.1);
}

.mission-card {
    position: relative;
    overflow: hidden;
    display: inline-block;

}

.mission-img {
    position: relative;
    overflow: hidden;
}

.mission-img img {

    transition: transform 0.5s ease;
}

.mission-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 150%;
    width: 200%;
    height: 100%;
    transform: skew(-20deg);
    background-image: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transition: left 0.6s cubic-bezier(0.01, 0.56, 1, 1);
    z-index: 2;
    pointer-events: none;
}

.mission-card:hover .mission-img img {
    transform: scale(1.1);
}

.mission-card:hover .mission-img::after {
    left: -200%;
}

.mission-card {
    flex: 1;
}

/* ===========================why choose us============================= */
.inner-choose {
    padding: 100px 0px;
    background-color: var(--bgcolor);
    /*  background-image: url(../image/vectors/bg-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   */


}

/* .inner-choose {
    padding: 100px 0px;
    background-color: var(--bgcolor);
    background-image: url(../image/vectors/bg-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; 
}

.inner-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../image/vectors/bg-1.png); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(50px); 
    z-index: -1;
} */



.choose-card {
    background-color: var(--thirdcolor);
    /* padding: 20px; */
    border-radius: 10px;
    box-shadow: 18px 18px #f1f1f1;
    flex: 1;
}

.choose-head {
    display: flex;
    gap: 20px;
    align-items: center;
}

.choose-head img {
    border-top-left-radius: 10px;
    background-color: #f1f1f1;
    padding: 10px;
    transition: background-color 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.choose-detail {
    padding: 10px 20px;
}

.choose-detail p {
    color: var(--secondarycolor);
}

.choose-card-inner {
    padding: 20px;
    display: flex;
}

.choose-card-inner:hover img {
    background: var(--primarycolor);
}

.choose-card-inner h3 {
    font-size: 24px;
    transition: background-color 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.choose-card-inner:hover h3 {
    color: var(--primarycolor);
}

/* =====================================quality assurance======================================= */
.inner-quality {
    padding: 100px 0px;
    background-color: var(--bgcolor);

}

.quality-left h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--secondarycolor);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 25px;
    position: relative;

}

.quality-left h3::before,
.quality-left h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
}

.quality-left h2 {
    font-size: 38px;
}

.quality-left h2 span {
    color: var(--primarycolor);
}


/* =====================================Industry ======================================= */
.inner-industry {
    padding: 100px 0px;
    background-color: var(--bgcolor);

}

.industry-left h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--headblack);
    display: flex;
    align-items: center;
    /* justify-cont ent: center; */
    margin-bottom: 25px;
    position: relative;

}

.industry-left h3::before,
.industry-left h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: black;
    margin: 0 10px;
}

.industry-left h2 {
    font-size: 38px;
}

.industry-left h2 span {
    color: var(--primarycolor);
}

.industry-left-detail img {
    width: 100%;
    height: 300px;
    border-radius: 7px;
}

/* .left-detail::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid gray;
    width: 300px;
} */
/* .product-wrapper::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid gray;
    width: 300px;
 } */

.product-wrapper::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: rgb(209, 209, 209);
    margin: 20px auto 0;
    position: relative;
}


.industry-img {
    display: flex;
    justify-content: center;
}

.test-card1 h3 span {
    color: var(--primarycolor);
}

.test-card1 h3 {
    font-size: 38px;
}

.test-card1 p {
    color: var(--secondarycolor);
}

.test-card {
    background-color: var(--thirdcolor);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.test-card p {
    color: var(--secondarycolor)
}

.test-card h3 {
    font-size: 24px;
    color: var(--primarycolor);
}

.text-overlay {

    position: absolute;
    top: -17px;
    right: 6%;
    animation: smoothUpDown 2s ease-in-out infinite;
}

.text-overlay img {
    border-radius: 7px;
    width: 50px;
    background-color: var(--primarycolor);
    padding: 10px;
}

@keyframes smoothUpDown {
    0% {
        top: -17px;
    }

    25% {
        top: -22px;
    }

    50% {
        top: -17px;
    }

    75% {
        top: -12px;
    }

    100% {
        top: -17px;
    }
}

.industry-inner-left {
    padding-right: 70px;
    padding-top: 60px;
}

.industry-left-detail p {
    text-align: justify;
    color: var(--secondarycolor);
}

.inde-head {
    display: flex;
    justify-content: center;
}

/* ===================================================================
                            Gaskey Product
======================================================================== */

.inner-product {
    padding: 100px 0px;
}

.tabs {
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 6px rgb(248, 248, 248);
    background-color: #f7f7f7;

}

.tabs button {
    display: flex;
    gap: 10px;
    align-items: center;
    align-content: center !important;
}

.tabs button {
    position: relative;
}

.tabs button::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 215px;
    border-bottom: 1px solid rgb(175, 175, 175);
    margin-top: 5px;
}

.tabs button {
    background: none;
    border: none;
    outline: none;
    padding: 10px 15px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    color: var(--headblack);
    transition: background 0.3s, color 0.3s;
}

.tabs button:hover {
    color: var(--primarycolor);
}

.tabs button.active {
    background-color: var(--primarycolor);
    color: #fff;
}

.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tabs p {
    font-size: 16px;
    margin-bottom: 0px !important;
}


.left-detail {
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.6s ease-in-out, box-shadow 0.3s ease-in;
}

.left-detail:hover {
    transform: translateY(-5px);

}

.left-detail h3 {
    font-size: 1.5rem;
    color: var(--primarycolor);
    margin-bottom: 15px;
    position: relative;
}

.left-detail h3 img {
    width: 40px;
}

.left-detail h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primarycolor);
    margin-top: -8px;
    border-radius: 2px;
    transition: width 0.5s ease-in-out;
}

.left-detail p {
    font-size: 18px;
    text-align: justify;
    color: var(--secondarycolor);
    line-height: 1.6;
    margin-bottom: 20px;
}

.left-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-detail ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.left-detail ul li i {
    color: var(--primarycolor);
    font-size: 1.2rem;
    margin-right: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.left-detail ul li:hover {
    color: var(--primarycolor);
    cursor: pointer;
}

.left-detail ul li:hover i {
    color: var(--primarycolor);
    transform: translateX(5px);
}

.product-head {
    display: flex;
    align-content: center;
    align-items: center;
}

.product-head img {
    width: 40px;
    padding-bottom: 15px;
}

.left-detail:hover h3::after {
    width: 120px;
}

.product-carousel .item {
    display: flex;
    align-content: center;
}

.left-detail h3 span {
    font-size: 16px !important;
    color: black;
}



.tab-link {
    position: relative;
    transition: color 0.3s ease;
}

.tab-overlat {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0%;
    right: 10px;
    background-color: var(--thirdcolor);
    padding: 10px;
    border-radius: 50%;
}

.tab-overlat h3 i {
    font-size: 20px;
    color: black;
}

.tabs {
    max-height: 550px;
    overflow-y: auto;
    scrollbar-width: none;
    position: relative;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab-link {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.product-tab-wrapper {
    position: relative;
}

.product-tab {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
    padding: px;
}

.product-tab p {
    font-family: var(--font-secondary) !important;
}


/* .tab-link.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%; 
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-image: url('../image/icon/arrow.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    z-index: 10; 
    pointer-events: none;
} */
.nav-item .dropdown-menu {
    transition: all 0.3s ease;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    display: block;
    visibility: hidden;
}

.nav-item:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primarycolor);
}

.img-product .owl-carousel .owl-item img {
    border-radius: 10px;
}

/* .img-product{
    padding-top: 50px;
} */
.img-product {
    display: flex;

    align-items: center;
}

.navbar-toggler span {
    font-size: 34px;
    color: var(--thirdcolor);
}

.offcanvas-header .btn-close {
    color: var(--thirdcolor) !important;
}

/* ===================================================================================
                                     Contact us
==================================================================================== */
.inner-contact {
    padding: 100px 0px;
}

.contact-card {
    display: flex;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    width: 400px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.contact-card img {
    width: 50px !important;
}

.contact-card h3 a {
    font-size: 18px;
    color: var(--primarycolor);
    font-weight: 500;
    text-decoration: none;
    text-align: center !important;
}

.contact-card-inner {
    display: flex;
}

.contact-card:hover {
    background-color: var(--primarycolor);
    color: var(--thirdcolor) !important;
}

.contact-card:hover h3 a {
    color: black;
}

.contact-card:hover {
    background-color: var(--primarycolor);
    color: var(--thirdcolor) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-card:hover h3 a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-card-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-card img {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.contact-card:hover img {
    transform: scale(1.2);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-card a {
    text-decoration: none;
    color: var(--primarycolor);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondarycolor);
}

/* ===================================================================================
                                   Form section
==================================================================================== */
.form-inner {
    padding-bottom: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container input {
    padding: 15px;
}


.submit-btn button {
    font-size: 18px;
    color: var(--headblack) !important;
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 15px 20px;
    color: var(--thirdcolor);
    text-decoration: none;
}

.submit-btn button {
    font-size: 16px;
    color: var(--headblack);
    background-color: var(--thirdcolor);
    border: 1px solid var(--primarycolor);
    padding: 10px 14px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.6s ease, background-color 0.5s ease, border-color 0.9s ease;
}

.submit-btn button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #28a745;
    z-index: -1;
    transition: transform 0.4s ease-in-out, left 0.4s ease-in-out;
}

.submit-btn button:hover::before {
    left: 0;
    width: 300%;
    transition: transform 0.6s ease-in-out, left 0.6s ease-in-out;
}

.submit-btn button:hover {
    color: #fff !important;
    background-color: transparent;
    border-color: transparent;
}

.submit-btn button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 0%;
    height: 100%;
    z-index: -1;
    background: #28a745;
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.submit-btn button:hover::after {
    width: 100%;
    left: 0;
}

.form-label {
    color: var(--primarycolor);
    font-weight: 600;
}


.map-container iframe {
    border: 1px solid var(--primarycolor);
}

.tab-content hr {
    border: 1px solid rgb(143, 143, 143);

}

.tabs-mobile .dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.tabs-mobile .dropdown-toggle {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-align: left;
    background-color: transparent;
    color: var(--secondarycolor);
    border: 1px solid var(--primarycolor);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.tabs-mobile .dropdown-toggle:hover {
    background-color: var(--primarycolor);
    color: var(--thirdcolor);
}

.tabs-mobile .dropdown-menu {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid var(--primarycolor);
    border-radius: 4px;
    background-color: var(--thirdcolor);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.tabs-mobile .dropdown-menu .dropdown-item {
    padding: 10px;
    font-size: 16px;
    color: var(--secondarycolor);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.tabs-mobile .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--primarycolor);
}

.tabs-mobile .dropdown-menu .dropdown-item i {
    margin-right: 8px;
    color: var(--secondarycolor);
}

.tab-sticky {
    width: 70%;
    z-index: 1000;
    background-color: #fff;
    padding: 10px;
    transition: top 0.3s ease;
}

.scrollable-dropdown {
    max-height: 300px;
    overflow-y: auto;
}

.sticky {
    position: fixed;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}





/* ---------------------brand logo-------------------------------- */

.clients-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;

    padding: 10px;

    border-radius: 10px;
}

.marquee {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.clients .marquee {
    display: flex;
    animation: scrol 20s linear infinite;
    white-space: nowrap;

}

@keyframes scrol {
    0% {
        transform: translateX(-0%);
    }

    100% {
        transform: translateX(100%);
    }
}

.client-logo {
    flex-shrink: 0;
    display: inline-block;
    padding: 10px;
    margin: 0 10px;
    box-shadow: 0px 4px 10px #ebebeb;
    transition: transform 0.3s, box-shadow 0.4s ease-in-out;
    border-top: 3px solid gainsboro;
    border-radius: 6px;

}

.client-logo {
    width: 220px;
    height: 130px;
    display: flex;
    margin: 20px;
    justify-content: center;
}

.client-logo img {
    width: 180px;
    height: 100px;
}

.client-logo:hover {
    border-top: 4px solid #51AC5A;

}

.inner-brand {
    padding: 20px 0px;
}

/* update */

.gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 70vh;
}

.item {
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    transition: flex 0.8s ease;

    &:hover {
        flex: 7;
    }
}

.item-1 {
    background-image: url('');
}

.item-2 {
    background-image: url('https://images.unsplash.com/photo-1492760864391-753aaae87234?auto=format&fit=crop&w=1336&q=80');
}

.item-3 {
    background-image: url('https://images.unsplash.com/photo-1503631285924-e1544dce8b28?auto=format&fit=crop&w=1234&q=80');
}

.item-4 {
    background-image: url('https://images.unsplash.com/photo-1510425463958-dcced28da480?auto=format&fit=crop&w=1352&q=80');
}

.item-5 {
    background-image: url('https://images.unsplash.com/photo-1503602642458-232111445657?auto=format&fit=crop&w=1234&q=80');
}


/* --------------------popup banner -------------------------------------*/
#popupBanner {
    position: fixed;
    top: 60px;
    right: 20px;
    width: auto;
    height: auto;
    /* background: rgba(0, 0, 0, 0.7); */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    border-radius: 8px;


}



.popup-content {
    position: relative;
    max-width: 70%;
    max-height: 90%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.25);
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: black;
    /* background:var(--primarycolor); */
    background: none;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.inner-top-chemical {
    /* padding-left: 20px; */
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
}