* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Lato", serif;
}

:root {
    --white: #ffffff;
    --green: #25d366;
    --orange: #fd5003;
    --light-blue: #0061ab;
    --black: #010101;
    --grey: #f8f9fa;
    --dark-grey: #333;
    --box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    --bg-gradient: linear-gradient(180deg, var(--green), var(--light-blue));
}

/*---- global class start ---*/
h2 {
    color: var(--light-blue);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

h2::after {
    content: '';
    width: 100px;
    height: 2px;
    background: var(--orange);
    display: block;
    border-radius: 16px;
}

p {
    font-size: 15px;
    font-weight: 400;
}

.button {
    background: var(--orange);
    background: linear-gradient(275deg, var(--orange) -15.61%, var(--green) 219.55%);
    color: var(--white);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    border: none;
    font-size: 16px;
    text-align: center;
}

.button:hover {
    color: var(--white);
}

a {
    color: var(--light-blue);
    text-decoration: none;
}

a:hover {
    color: var(--light-blue);
}

/*---- global class end ----*/

/*------ navbar sec start ------*/
/* On desktop: Always show the search input */
.search-input {
    display: block;
}

/* On mobile: Hide the search input by default */
@media (max-width: 768px) {
    .search-input {
        display: none;
    }

    /* When the search input is active on mobile, show it */
    .search-input.active {
        display: block;
    }

    .search-icon {
        cursor: pointer;
    }

    /* Hide the col-md-4 (containing cart, login/signup, etc.) on mobile when search is active */
    .col-md-4.hide {
        display: none;
    }
}

.topnav {
    background: var(--light-blue);
}

.search-input {
    background: none;
    padding: 8px 8px;
    font-size: 12px;
    color: var(--white);
}

.search-input::placeholder,
.search-input:focus {
    color: var(--white);
}

.search-input:focus {
    outline: none;
    background: none;
    box-shadow: none;
}

.navicon a {
    color: var(--white);
    font-size: 16px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    color: var(--light-blue);
    font-weight: 600;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

.navFixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    z-index: 999;
    border-bottom: 1px solid var(--grey);
}

/*------ navbar sec end ------*/

/*----- application sec style start ------*/
.application-sec .application-item {
    background: var(--light-blue);
    padding: 24px;
    border-radius: 8px;
    height: 100%;
}

.application-sec .application-item p {
    opacity: .8;
}

/*----- application sec style end --------*/

/*---- our-achivement sec start -----*/
.our-achivement {
    background: var(--grey);
}

.our-achivement .card-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--light-blue);
}

.our-achivement .card-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--light-blue);
    opacity: .8;
    margin: 0;
    text-transform: uppercase;
}

.our-achivement p {
    opacity: .8;
}

/*---- our-achivement sec end ------*/

/*---- gallery sec start ------*/
/* .gallery-sec .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
} */
.gallery-sec .gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-sec .gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

.gallery-sec .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-sec .gallery-item .caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
}

/* Custom Popup Animation */
.mfp-fade .mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.mfp-fade.mfp-ready .mfp-bg {
    opacity: 1;
}

.mfp-fade .mfp-wrap {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mfp-fade.mfp-ready .mfp-wrap {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade .mfp-img {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.mfp-fade.mfp-ready .mfp-img {
    opacity: 1;
    transform: scale(1);
}

/*---- gallery sec end ------*/

/*---- our clients sec start ------*/
.clients-sec {
    background: var(--grey);
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

/* Hover effect to stop slider */
.clients-slider:hover .swiper-wrapper {
    animation-play-state: paused;
}

.clients-slider .swiper-slide img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    object-fit: contain;
    padding: 8px;
    background: var(--white);
    margin-bottom: 24px;
    border: 1px solid var(--dark-grey);
}

/* Animation for continuous slide */
.clients-slider .swiper-wrapper {
    display: flex;
    /* animation: marquee 10s linear infinite; */
}

/* Keyframes for sliding animation */
/* @keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
} */

/*----- our clients sec end -------*/

/*----- testimonial-sec start ----*/
.testimonial-sec .testimonial-item {
    background: var(--light-blue);
    padding: 16px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-sec .testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    border: 1px solid var(--grey);
}

.testimonial-sec .testimonial-item h4 {
    font-weight: 600;
    margin: 0;
    font-size: 18px;
}

.testimonial-sec .testimonial-item .fa {
    color: var(--orange);
}

.testimonial-sec .swiper-wrapper {
    margin-bottom: 50px;
}

/*----- testimonial-sec end -----*/

/*------ swiper slide start ------*/
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    border-radius: 12px !important;
}

.swiper-pagination-bullet-active {
    background: var(--light-blue) !important;
}

/*------ swiper slide end -------*/

/*------ cta-form start -----*/
.cta-form {
    background: var(--grey);
}

/*------ cta-form end -------*/

/*----- footer sec start ------*/
.footer {
    background: var(--light-blue);
}

@media only screen and (max-width:768px) {
    .single_footer {
        margin-bottom: 30px;
    }
}

.single_footer h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    /*text-transform: uppercase;*/
    font-size: 20px;
}

.single_footer h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: var(--white);
    margin-top: 20px;
}

.single_footer p {
    color: #fff;
}

.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single_footer ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
}

.single_footer ul li a:hover {
    color: #ff3666;
}

.single_footer_address {}

.single_footer_address ul {}

.single_footer_address ul li {
    color: #fff;
}

.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.subscribe__input {
    background-color: #fff;
    border: medium none;
    border-radius: 5px;
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0 150px 0 20px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}

@media only screen and (max-width:768px) {
    .subscribe__input {
        padding: 0 50px 0 20px;
    }
}

.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: #01c7e9;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

.subscribe__btn i {
    transition: all 0.3s ease 0s;
}

@media only screen and (max-width:768px) {
    .subscribe__btn {
        right: 0px;
    }
}

.subscribe__btn:hover i {
    color: #ff3666;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {
    margin-top: 40px;
}

.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.social_profile ul li {
    float: left;
}

.social_profile ul li a {
    text-align: center;
    border: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width:768px) {
    .social_profile ul li a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:480px) {
    .social_profile ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.social_profile ul li a:hover {
    background: #ff3666;
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}

/*END SOCIAL PROFILE CSS*/
.copyright {
    margin-top: 70px;
    padding-top: 40px;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}

.copyright a {
    color: #01c7e9;
    transition: all 0.2s ease 0s;
}

.copyright a:hover {
    color: #ff3666;
}

/*----- footer sec end ------*/

/*----- bredcrumb-banner sec start -------*/
.category-bredcrumb-banner {
    background: url('../images/banner.jpg');
    background-size: cover;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.category-bredcrumb-banner::after {
    content: '';
    width: 100%;
    display: block;
    background: var(--light-blue);
    aspect-ratio: 1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .6;
}

.category-bredcrumb-banner .breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.category-bredcrumb-banner .breadcrumb .breadcrumb-item.active {
    color: var(--white);
}

.category-bredcrumb-banner .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white) !important;
}

/*----- bredcrumb-banner sec end -------*/

/*------ category-sec style start -------*/
.category-sec .card {
    /* box-shadow: var(--box-shadow); */
    border: 1px solid var(--light-blue) !important;
}

.category-sec .card a {
    font-size: 18px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    text-align: center;
    display: block;
}

/*------ category-sec style end ------*/

/*------ all product style start -------*/
.all-product-sec .card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--grey);
    display: flex;
    flex-direction: column;
}

.all-product-sec .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.all-product-sec .card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-bottom: 1px solid var(--grey);
}

.all-product-sec .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.all-product-sec .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all-product-sec .gmvalue {
    background-color: var(--green);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.all-product-sec .wishlist i {
    font-size: 18px;
    color: var(--light-blue);
    cursor: pointer;
    transition: color 0.3s ease;
}

.all-product-sec .wishlist i:hover {
    color: var(--green);
}

.all-product-sec .product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.all-product-sec .product-details {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.all-product-sec .product-no {
 
    font-weight: 500;
}

.all-product-sec .product-percent {
    font-weight: 500;
    color: var(--green);
}

.all-product-sec .stock-status {
    background-color: var(--light-blue);
    color: var(--white);
    text-align: center;
    padding: 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    /*text-transform: capitalize;*/
}

.all-product-sec .card:hover .stock-status {
    background-color: var(--orange);
    cursor: pointer;
}

/*------ all product style end --------*/

/*------ product details sec start ------*/
.product-details-sec .product-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details-sec .product-details {
    color: var(--dark-grey);
}

.product-details-sec .product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    align-items: start;
}

.product-details-sec .product-name::after {
    display: none;
}

.product-details-sec .product-description {
    font-size: 16px;
    color: var(--black);
    opacity: .8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-details-sec .product-attributes p {
    font-size: 14px;
    margin-bottom: 10px;
}

.product-details-sec .product-attributes table tr th,
.product-details-sec .product-attributes table tr td {
    width: 150px;
}

.product-details-sec .product-note p {
    font-size: 14px;
    /*color: var(--orange);*/
}

.product-details-sec .product-note strong {
    color: var(--black);
}

.product-details-sec .add-to-favorite,
.product-details-sec .add-to-cart {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

@media (max-width:768px) {
    .product-details-sec .add-to-favorite {
        font-size: 14px;
    }
}

.product-details-sec .add-to-favorite {
    background-color: var(--white);
    border: 1px solid var(--light-blue);
    color: var(--light-blue);
}

.product-details-sec .add-to-favorite:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

.product-details-sec .add-to-cart {
    background-color: var(--light-blue);
    border: none;
    color: var(--white);
}

.product-details-sec .add-to-cart:hover {
    background-color: var(--orange);
}

@media (min-width: 992px) {
    .product-details-sec .product-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .product-details-sec .product-image img {
        max-width: 100%;
    }

    .product-details-sec .add-to-favorite,
    .product-details-sec .add-to-cart {
        width: 100%;
        margin-top: 10px;
    }
}

/*------ product details sec end -------*/

/*----- paginatio style start -----*/
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--light-blue);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: scale(1.05);
}

.page-item.active .page-link {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.page-item.disabled .page-link {
    color: var(--grey);
    background-color: var(--white);
    border-color: var(--grey);
    pointer-events: none;
}

.page-link:focus {
    box-shadow: none;
}

/*------ pagination style end -------*/

/*------ swiper slide code start -------*/
.swiper-button-next,
.swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    border-radius: 35px !important;
    background: var(--light-blue);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px !important;
    color: var(--white) !important;
    font-weight: bold !important;
}

/*------ swiper slide code end -------*/

/*------ navtabs style start --------*/
.nav-tabs {
    border: 1px solid var();
}

.nav-tabs .nav-link {
    color: var(--dark-grey);
    background-color: var(--white);
    border: 1px solid var(--light-blue);
    border-bottom: none;
    padding: 0.75rem 1.5rem;
}

.nav-tabs .nav-link.active {
    background-color: var(--light-blue);
    color: white;
    border-color: var(--light-blue);
}

.info-row {
    border-bottom: 1px solid var(--grey);
    padding: 12px 0;
}

.info-label {
    color: var(--black);
    font-weight: 500;
}

.tab-content {
    border: 1px solid var(--light-blue);
    border-top: none;
    padding: 20px;
}

.molecular-formula sub {
    font-size: 0.8em;
}

/*------ navtabs style end --------*/

/*----- google translate style start -----*/
.goog-te-gadget-simple {
    padding: 4px !important;
}

.goog-te-gadget-simple a[aria-haspopup="true"] {
    font-size: 12px;
}

/*----- google translate style end -----*/

/*----- signup page style start -------*/
.signup-sec {
    background: var(--grey);
}

.signup-sec .signup-container {
    margin: 50px auto;
    background-color: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--box-shadow);
}

.form-label {
    font-weight: bold;
}

.signup-sec .signup-container .button {
    background: var(--light-blue);
    color: white;
}

.login-link {
    text-align: center;
    margin-top: 15px;
}

/*----- signup page style end --------*/

/*----- addtocart-sec style start ------*/
.addtocart-sec table thead {
    background: var(--accent-mint);
}

@media (max-width:768px) {
    .addtocart-sec table thead {
        display: none;
    }
}

.addtocart-sec table thead th {
    font-size: 14px;
    color: var(--black);
    width: 100%;
}

.addtocart-sec table tr {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--grey);
}

@media (max-width:768px) {
    .addtocart-sec table tr {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--grey);
        border-radius: 8px;
        padding: 8px;
    }
}

.addtocart-sec table tr td {
    font-size: 14px;
    color: var(--black);
    opacity: .8;
    width: 100%;
    border: none;
    padding: 4px;
}

@media (max-width:768px) {
    .addtocart-sec table tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .addtocart-sec table tr td::before {
        content: attr(data-title);
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }
}

.addtocart-sec table tr td .quantity {
    width: 100px;
}

.addtocart-sec .totalcardvalue {
    background: var(--accent-mint);
    padding: 16px;
}

.addtocart-sec .totalcardvalue .d-flex {
    border-bottom: 1px solid var(--light-gray);
    padding: 4px 0;
}

.addtocart-sec .totalcardvalue span,
.addtocart-sec .totalcardvalue strong {
    font-size: 14px;
    color: var(--black);
}

.addtocart-sec .totalcardvalue .checkout-btn {
    width: 100%;
    border: none;
    padding: 12px;
    font-size: 16px;
    text-transform: capitalize;
    background: var(--primary-light);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    margin-top: 16px;
}

.addtocart-sec .totalcardvalue .checkout-btn::after {
    content: '→';
    margin-left: 8px;
}

/*----- addtocart-sec style end -------*/
