@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    width: 5px;
    border-radius: 50px;
    background-color: var(--secondary-color);
}

::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: var(--primary-font);
    background-color: #F8F8F8;
}

/* Global Styles */
:root {
    --primary-color: #7EC603;
    --secondary-color: #00A2D3;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --dark-grey-color: #222222;
    --light-grey-color: #999999;

    --primary-font: "Work Sans", sans-serif;
}

.primary-color {
    color: var(--primary-color) !important;
}

.secondry-color {
    color: var(--secondary-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    margin: 0;
    text-decoration: none;
    -o-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul {
    margin-bottom: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

figure {
    margin: 0;
}

img {
    margin: 0;
    vertical-align: middle;
}

a,
input,
button,
select,
textarea {
    margin: 0;
    outline: none;
    box-shadow: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

.input-group>.form-control:focus,
.input-group>.form-floating:focus-within,
.input-group>.form-select:focus {
    box-shadow: none;
}

textarea,
input {
    caret-color: var(--secondary-color);
}


/* Global Styles */
.container {
    max-width: 1300px;
    width: 95%;
    margin: 0 auto;
}

.heading {
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 800;
    line-height: 65.1px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.headingSmall {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 24px;
    line-height: 28.15px;
    color: var(--dark-grey-color);
}

p {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    color: var(--light-grey-color);
}

.text-primary {
    color: var(--secondary-color) !important;
}


.mainBtn {
    pointer-events: auto;
    cursor: pointer;
    border: none;
    margin: 0;
    display: inline-block;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
}

.mainBtn::before,
.mainBtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mainBtn span {
    display: block;
    position: relative;
    z-index: 1;
}

.mainBtn>span {
    overflow: hidden;
    color: var(--white-color);
}


.mainBtn:focus-visible>span>span,
.mainBtn:hover>span>span {
    animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}

@keyframes MoveRightInitial {
    to {
        transform: translate3d(105%, 0, 0);
    }
}

@keyframes MoveRightEnd {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.mainBtn::before,
.mainBtn::after {
    content: '';
    background: var(--primary-color);
}

.mainBtn::before {
    width: 135%;
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    transform: translate3d(-100%, 0, 0);
}

.mainBtn:focus-visible::before,
.mainBtn:hover::before {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.mainBtn::after {
    width: 105%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.mainBtn:focus-visible::after,
.mainBtn:hover::after {
    transform: translate3d(0, 0, 0);
    transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}



.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet {
    background-color: var(--white-color);
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiperBtns {
    display: flex;
    align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '';
}

.swiper-button-next,
.swiper-button-prev {
    position: unset;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    margin-top: 0;
    margin-left: -1px;
}

/*======================
    Top Header 
======================*/
.topHeader {
    padding: 20px;
    border-bottom: 1px solid #00A2D333
}

.topHeader a {
    color: var(--dark-grey-color);
    font-size: 16px;
    font-weight: 400;
}

.topHeader a img {
    margin-right: 3px;
    height: 18px;
}

.topHeader .contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topHeader .contact .vr {
    background-color: var(--secondary-color);
}

.topHeader_social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topHeader_social a {
    font-size: 18px;
    color: var(--secondary-color);
}

/*======================
    Header 
======================*/
header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1000;
    background-color: var(--white-color);
}

header.bgColor {
    box-shadow: 0px 0px 5px #38373742;
    /* border-bottom: 1px solid #38373742; */
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

header .navbarBrand img {
    height: 70px;
}

header .navbar-toggler {
    border: 0;
}

header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

header .navbar {
    padding: 10px 0;
}

header .navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    color: var(--dark-grey-color);
    font-family: var(--primary-font);
    padding: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
}

header .navbar .navbar-nav .nav-item .dropdown-item.active,
header .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--secondary-color);
    font-weight: 700;
    background-color: transparent;
}

header .navbar .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
}

header .navbar .navbar-nav .nav-item .nav-link:focus-visible:before,
header .navbar .navbar-nav .nav-item .nav-link:hover::before,
header .navbar .navbar-nav .nav-item .nav-link.active::before {
    opacity: 1;
}

header .dropdown-menu .dropdown-item:focus-visible,
header .dropdown-menu .dropdown-item:hover {
    color: var(--secondary-color);
}

header .navbar .navbar-toggler i {
    color: var(--white-color);
}

header .dropdown-toggle::after {
    content: "\f107";
    font-family: fontAwesome;
    vertical-align: 0;
    margin-left: 5px;
    border: 0;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    font-size: 15px;
}

header .dropdown:has(.dropdown-toggle.show) .dropdown-toggle::after {
    transform: rotate(-180deg);
}

header .dropdown-menu {
    border: 0;
    box-shadow: 0px 5px 8px 0px #3837371a;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px !important;
}


/*===============
 Footer 
===============*/
footer {
    background-color: var(--dark-grey-color);
    padding: clamp(2.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
    color: var(--light-grey-color);
}

footer .contactRound {
    max-width: 145px;
    min-width: 145px;
    height: 145px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

footer .contactRound .ftr_text_round {
    -webkit-animation: frtRound 20s linear infinite;
    -moz-animation: frtRound 20s linear infinite;
    -o-animation: frtRound 20s linear infinite;
    animation: frtRound 20s linear infinite;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

footer .contactRound .arrow {
    position: absolute;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@-webkit-keyframes frtRound {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes frtRound {
    to {
        transform: rotate(-360deg);
    }
}

footer .contactRound:hover .arrow {
    transform: rotate(-135deg);
}

footer .contactRound:hover .ftr_text_round {
    -webkit-animation: frtRound 20s linear infinite reverse;
    -moz-animation: frtRound 20s linear infinite reverse;
    -o-animation: frtRound 20s linear infinite reverse;
    animation: frtRound 20s linear infinite reverse;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

footer .ftr-logo {
    height: 132px;
}

footer .ftrSocial {
    color: var(--secondary-color);
    font-size: 20px;
}

footer .ftrLink {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: var(--light-grey-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

footer .ftrContact_link {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: var(--light-grey-color);
    margin-bottom: 15px;
    display: inline-block;
}


/*===============
Hero section 
===============*/
.hero_sec {
    width: 100%;
    position: relative;
    padding: clamp(5rem, 17.708vw - 0.313rem, 15.625rem) 0;
    background: url(../image/hero_bg.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
    -moz-border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
    -o-border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
    border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
}

/* .hero_sec .hero_content {
    padding: clamp(5rem, 17.708vw - 0.313rem, 15.625rem) 0;
    -webkit-border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
    -moz-border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
    -o-border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
    border-image: fill 0 linear-gradient(239.23deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.8) 52.85%);
}

.hero_sec .swiperBtns {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
} */

.hero_sec .bannerHeading {
    color: var(--white-color);
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: clamp(2rem, 1.875vw + 1.438rem, 3.125rem);
    line-height: normal;
}


/*=============== 
our product sec 
===============*/
.ourProduct_sec {
    position: relative;
    z-index: 1;
}

.ourProduct_sec .container {
    background-color: var(--white-color);
    margin-top: -85px;
}

.ourProduct_sec .imgBox {
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    padding: 20px;
}

.ourProduct_sec_Swiper-button-prev,
.ourProduct_sec_Swiper-button-next {
    position: absolute;
    top: 0;
}

.ourProduct_sec_Swiper-button-next {
    right: clamp(0rem, 4.167vw - 1.25rem, 2.5rem);
}

.ourProduct_sec_Swiper-button-prev {
    left: 10px;
}

/*=============== 
Features card sec 
===============*/
.featuresCard_sec {
    padding: clamp(3.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
}

.featuresCard_sec .featureCard {
    background-color: var(--white-color);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}


/*=============== 
About us sec 
===============*/
.aboutUs_sec {
    background-color: var(--dark-grey-color);
    padding: clamp(3.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
}

.aboutUs_sec ul {
    padding-left: 20px;
}

.aboutUs_sec ul li {
    list-style-type: disc;
    font-size: 16px;
    color: var(--light-grey-color);
    margin-bottom: 5px;
}


/*=============== 
why choose us sec 
===============*/
.whyChooseUs_sec {
    padding: clamp(3.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
}

.whyChooseUs_accordion {
    counter-reset: faqsCount;
}

.whyChooseUs_accordion .accordion-item::before {
    counter-increment: faqsCount;
    content: "0" counter(faqsCount);
    font-weight: 700;
    font-size: 24px;
    line-height: 28.15px;
    color: var(--dark-grey-color);
    opacity: 20%;
}

.whyChooseUs_accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--light-grey-color);
    margin-bottom: 20px;
    background-color: transparent;
}

.whyChooseUs_accordion .accordion-button {
    margin: 0;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--primary-font);
    box-shadow: none;
    border: none;
    background: transparent !important;
    color: var(--dark-grey-color);
}



.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.whyChooseUs_accordion .accordion-button:not(.collapsed) {
    background: transparent;
    /* color: var(--sky); */
    border-color: transparent;
}

.whyChooseUs_accordion .accordion-button::after {
    width: 20px;
    height: 20px;
    background: url('../image/icon/faq_plus.svg') center center no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    background-size: 100% 100% !important;
}

.whyChooseUs_accordion .accordion-button:not(.collapsed)::after {
    background: url(../image/icon/faq_minus.svg) center center no-repeat;
    transition: all ease-in-out .3s;
}

.whyChooseUs_accordion .accordion-body {
    padding: 0px 20px 20px 20px;
}

.whyChooseUs_accordion .accordion-body p {
    background-color: transparent;
    padding: 10px 0;
}

.accordion-button:not(.collapsed) {
    color: var(--dark-grey-color);
}

.accordion-item:last-of-type {
    border-radius: 0 !important;
}



/*===============
 Counter sec 
=================*/
.counter_sec {
    padding: 120px 0;
    background: url(../image/counter_sec_image.png) no-repeat;
    background-size: auto;
    background-position: left center;
    ;
}

.counter_sec .counterBox {
    background-color: var(--secondary-color);
    padding: 30px 25px;
    width: fit-content;
    text-align: center;
}



/*========
 Product Detail Page
========*/
.productDetail_sec {
    padding: clamp(3.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
}

.productDetail_sec .prevImageBox {
    width: 100%;
    height: 480px;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.productDetail_sec .prevImageBox {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.productDetail_sec .productDetail_miniImage {
    width: 100px;
    height: auto;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.productDetail_sec .productDetail_miniImage img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.productDetail_description_sec {
    padding: clamp(3.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
}

.productDetail_description_sec ul li::marker {
    color: var(--dark-grey-color);
}



/*================
 Products Page 
================*/
.products_sec {
    padding: clamp(3.5rem, 3.125vw + 1.563rem, 4.375rem) 0;
    background-color: #F8F8F8;
}

.products_sec .products_cardsSec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.products_sec .products_Card {
    background: var(--white-color);
    display: block;
    height: auto;
}

.products_sec .products_Card .imgBox {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.products_sec .products_Card .imgBox img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.products_sec .products_Card .cardBody {
    padding: 20px;
    background-color: var(--white-color);
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}