@font-face {
  font-family: 'Hind Madurai';
  src: url('/../fonts/HindMadurai-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('assets/fonts/Lora-VariableFont.ttf') format('truetype');
  font-weight: 1 999;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-VariableFont.ttf') format('truetype');
  font-weight: 1 999;
  font-style: normal;
}

@font-face {
  font-family: 'Cookie';
  src: url('assets/fonts/Cookie-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --white: white;
  --black: #000000;
  --gray: #1b1b1a;
  --primary: #B2B1BD;
  /* --action: #fca311; */
  --action: #F2BF02;
  --secondary: #013F80;
  --bg-color: #030304;
  --text-color: #F2F7FC;
  --bg-color2: #CECDD5;
  --light-gray:#FAFAFA;
  --light-gray: rgba(240, 248, 255, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-subheading: 'Lora', serif;
  --font-content: 'Hind Madurai', sans-serif;
  --font-one: 'Cookie', cursive;
  --transition: all linear 0.2s;

}

body {
  background: var(--white);
  color: white;
  /* background: linear-gradient(); */
  overflow-x:hidden ;
}

p {
  font-family: var(--font-content);
  font-size: 14px;
  text-align: justify;
  color:black;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}
table tr td{
    color: black !important;
}
table .tbody tr td{
    color: black !important ;
}


/* ================== class ================== */
.container-fluid {
  margin: 0;
  padding: 0;
  position: relative;
}

.section-body {
  padding: 60px 4vw;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
}

.align-item {
  display: flex;
  align-items: center;
}

section {
  padding: 0;
  margin: 0;
}

.black {
  color: black !important;
}
.blue{
    color:var(--secondary) !important;
}


.bg-white {
  background-color: white;
}

.bg-blue {
  background-color: var(--secondary);
}
.blue{
    color: var(--secondary);
}


/* ------------------------ button --------------------- */

.button {
  text-decoration: none;
  line-height: 1;
  /*border-radius: 1.4rem;*/
  /* border-top-right-radius: 30px; */
  overflow: hidden;
  position: relative;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .05);
  background-color: var(--secondary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: linear 0.3s;
}

.button-decor {
  position: absolute;
  inset: 0;
  /*background-color: var(--clr);*/
  transform: translateX(-100%);
  transition: transform .3s;
  z-index: 0;
  /*color: white;*/
}

.button-content {
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.button__icon {
  width: fit-content;
  height: 45px;
  /*color: white !important;*/
  display: grid;
  padding-left: 10px ;
  place-items: center;
}

.button_icon-item {
  color: white;
  padding: 6px 7px;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: all linear .2s;
}

.button__text {
  display: inline-block;
  transition: color .2s;
  padding: 2px 1.0rem 2px 0;
  /*padding-left: .75rem;*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
}

.button:hover .button__text {
  color: var(--secondary);
  /*background:var(--action);*/
}

.button:hover .button_icon-item {
  transform: rotate(0);
  /*background: var(--s);*/
  color: var(--secondary);
}

.button:hover .button-decor {
  transform: translate(0);
}
.button:hover{
    background:var(--action);
}





/* --------------------- Heading section ----------------- */
.heading {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heading .small-heading {
  font-size: 21px;
  color: var(--secondary);
  text-transform: capitalize;
  position: relative;
  margin-left: 25px;
  font-family: var(--font-one);
  margin-bottom: -10px;

}

.heading .small-heading::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: var(--secondary);

  top: 50%;
  left: -17px;
  transform: skewX(-50deg);

}

.heading .big-heading {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  font-weight: 500;
  position: relative;
  padding: 0px 0px 10px 0;
  font-weight: bolder;
}

.heading .big-heading span {
  color: var(--action);
}

.heading .heading-content {
  width: 70%;
  text-align: center;
}

.start-heading {
  align-items: start;
}

.end-heading {
  align-items: end;
}



/* ======================= header section ============================== */

.header {
  position: relative;
  background: var(--secondary);
}

.header::before {
  position: absolute;
  content: '';
  left: -30px;
  height: 100%;
  width: 40%;
  background: var(--action);
  background: red;
  transform: skewX(-30deg);
  background: radial-gradient(circle at top left, var(--action), var(--action) 30%, var(--action) 70%);
  box-shadow: inset 0 5px 20px rgba(255, 255, 255, 0.3),
    inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.my_header {
  width: 100%;
  height: auto;
  padding: 7px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 4;
}

.header-item {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
}

.my_header .social-top a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  margin-left: 10px;
  color: var(--secondary);
  transition: var(--transition);
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.my_header .social-top a:hover {
  border-radius: 10px;
  transform: translateY(-3px);
  /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
  color: var(--action);

}

.my_header .contact-top a {
  margin-left: 10px;
  color: var(--white);
}

.my_header .contact-top a i {
  color: var(--action);
}

.my_header .contact-top a:hover {
  color: var(--action);
}


/* -----------------nabvar section -------------- */

.navbar_body {
  background-color: var(--white);
  /*padding: 0px 10px;*/
}

.nav-logo {
  height: 60px;
}

.nav-logo img {
  height: 100%;
}

.navbar-nav {
 padding-right: 4vw;
 

}

/*.home-link {*/
/*  border-top-left-radius: 30px;*/
/*  border-bottom-left-radius: 30px;*/
/*}*/

/*.last-link {*/
/*  border-top-right-radius: 30px;*/
/*  border-bottom-right-radius: 30px;*/
/*}*/

.navbar-nav .nav-link {
  padding: 10px 35px !important;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--black);
  /*border-radius: 5px;*/
 
}

.navbar-nav .nav-link:hover {
border-bottom: 2px solid black;
}


.navbar-nav .nav-link.active {
 border-bottom: 2px solid black;
}

/* -------------- dropdown-menu ------------- */
.dropdown-menu {
  background: var(--white);
  padding: 0;
  border-radius: 0;
  border: none;
  width: 300px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: 4px;
overflow: hidden;


}




.dropdown-menu .dropdown-item {
  color: var(--black);
  background-color: var(--bg-1);
  font-size: 17px;
  font-family: var(--font-subheading);
  border-bottom: 2px solid var(--action);
  padding: 15px 20px;
  position: relative;
  z-index: 5;

  


}

.dropdown-menu .dropdown-item::before {
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0px;
  content: '';
  background-color: var(--action);
  z-index: -3;
  transition: all linear 0.3s;



}

.dropdown-menu .dropdown-item:hover {
  color: var(--black);
  font-weight: 600;
}

.dropdown-menu .dropdown-item:hover::before {
  height: 100%;
}



/* Remove Bootstrap background */
.custom-toggler {
  width: 50px;
  height: 50px;
  /* position: relative; */
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
  margin-top: 10px;
  flex-direction: column;
}

.custom-toggler:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.line {
  width: 100%;
  height: 5px;
  background: var(--secondary);
  transition: all 0.3s ease-in-out;
}


/* When toggled */
.custom-toggler.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler.active .line:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}





.dropdown:hover .dropdown-menu{
    display: block;
}
.dropdown .dropdown-menu .dropdown-submenu{
    position: relative;
}
.dropdown .dropdown-menu .dropdown-submenu .dropdown-menu{
    display: none;
  top: 10%;
  left: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
  height: 300px;
    overflow-y: auto;
  
}
.dropdown .dropdown-menu .dropdown-submenu:hover .dropdown-menu{
    display: block;
}
.dropdown .dropdown-menu .dropdown-submenu .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown .dropdown-menu .dropdown-submenu .dropdown-menu::-webkit-scrollbar-track {
  background: var(--black);
  border-radius: 10px;
}

.dropdown .dropdown-menu .dropdown-submenu .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--action);
  border-radius: 10px;
}


.sticky{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    animation: navbar linear 1s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@keyframes navbar{
    0%{
        transform: translateY(-100%);
    }
    100%{
         transform: translateY(0%);
    }
}




/* =========================== Home Banner section ================== */
.home-banner {
  width: 100%;
  height: auto;
}

.home-banner .home-banner-img {
  width: 100%;
  height: auto;
}

.home-banner .home-banner-img img {
  width: 100%;
}

.home-banner .custom-arrow {
  background: var(--action);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;

  transform: translateY(-50%);
  z-index: 10;
  position: absolute;
  bottom: 20px;
}

.home-banner .custom-arrow:hover {
  background: var(--black);
  color: var(--action);
  transform: translateY(-50%) scale(1.1);
}

.home-banner .custom-prev {
  left: 100px;
}

.home-banner .custom-next {
  left: 150px;

}

.home-banner .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 20px 0;
  gap: 10px;
  position: absolute;
  right: 10%;
  bottom: 0;
}

.home-banner .slick-dots li {
  margin: 0;
  padding: 0;
}

.home-banner .slick-dots button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-banner .slick-dots li.slick-active button {
  background: var(--action);
  transform: scale(1.2);
}

.home-banner .slick-dots button:hover {
  background: var(--black);
}






/* =========================== marquee section ================== */
.marquee-body {
  width: 100%;
  padding: 10px 0px;
  background: var(--secondary);
  display: flex;
  /*transform: rotate(-1deg);*/
}

.marquee-item {
  font-size: 25px;
  font-family: var(--font-heading);
  font-weight: bold;
  color: var(--action);
  text-wrap: nowrap;
  text-align: center;
  animation: linear;
  margin-left: 100px;

}

/* =========================== Brand Logo section ================== */

.brand-body{
      background:  url('../../img/bg/dots.png');
    background-position: center;
    background-size: cover;
}

.brand-img-body{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: auto;
    flex-wrap:wrap;
}

.brands-img-item{
    /*width: 100%;*/
    width: 280px;
    padding: 10px;
    background: white;
    margin: 1.5vw;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 15px;
    transition: linear 0.3s;
}

.brands-img-item:hover{
    transform: translateY(-10px);
}

.brands-img-item .bra-img{
    width: 100%;
    height: 220px;
    display: display;
    align-content: center;
    justify-content: center;
}

.brands-img-item .bra-img img{
    width: 70%;
    margin: auto;
    display: block;
}
.brands-img-item .bra-name{
    width: 100%;
    padding: 8px 3px;
    color: white;
    text-align: center;
    background: var(--secondary);
    border-radius:4px;
    margin: auto;
    font-size:15px;
    
}






/* =========================== About us section ================== */
.about-body {
  background: var(--white);
}

.about-img {
  width: 100%;
  height: auto;
  position: relative;
  /*float: left;*/
}

.about-img img {
  width: 100%;
  height: auto;

}

.about-box {
  width: 30%;
  height: 150px;
  position: absolute;
  top: 20px;
  right: 0;
  border-radius: 8px;
  background: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-direction: column;
  margin-right: 20px;
 box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
 border: 2px solid  var(--secondary);
}

.about-box p {
  font-size: 25px;
  color: var(--secondary);
  font-weight: 600;
  margin: 0;
}

.experience {
  position: absolute;
  color: black;
  z-index: 5;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 15px;
  width: 100%;
  text-align: center;
  bottom: -70px;

}

.about-box .number {
  font-size: clamp(35px,6vw,60px);
  font-weight: bolder;
  font-family: var(--font-heading);
}

.about-img .button-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border: 10px solid var(--action);
  border-right: none;
}

.icon-img-about {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid black;
  padding: 10px;
}

.icon-img-about .icon-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  outline: 2px solid var(--action);
  outline-offset: 4px;
  margin-right: 20px;
}

.icon-img-about .icon-img img {
  width: 100%;
}

.icon-img-about .img-name {
  color: black;
  font-size: 30px;
  font-family: var(--font-one);
}

.brands-body{
    padding: 20px 10px;
    
}
.all-btn-body{
    display: flex;
    justify-content: center;
    align-items: center;
}

.all-btn{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
    
}

.tablink {
  background-color: var(--white);
  color: black;
  /*float: left;*/
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 13px;
  font-size: 17px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border-radius: 5px;
}

.tablink:hover {
  background-color:#F2BF02;
  /*color:black;*/
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  display: none;
  padding:2vw;
  height: 100%;
  background:white;
  /*box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;*/
 
}
.tabcontent .brand-heading{
    font-size:25px;
    font-weight: 600;
    color: var(--secondary);
}
.brand-card{
    width: 100%;
    margin-top: 20px;
    background:white;
    position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
animation:  zoom1 ease-in-out 0.8s ;
}
.brand-card .brand-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.brand-card .brand-img img{
    width: 100%;
    transition: linear .6s;
}

.brand-card .brand-name{
    padding:10px 20px;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    color: black;
    font-weight: 600;
    font-size: 18px;
    position: absolute;
    width: 100%;
    height: fit-content;
    bottom: 0;
    left: 0;
    /*background: linear-gradient(to top,rgba(1, 63, 128, 0.2),rgba(1, 63, 128, 0));*/
    color: var(--secondary);
    transition: all 2s;
}
.brand-card:hover .brand-name {
 background: transparent;
    color:var(--black);
}

.brand-card:hover .brand-img img {
 transform: scale(1.1);
}
.brand-card:hover{
    border-radius: 10px;
}
.brand-card .brand-name:hover{
    text-decoration: underline;
}


@keyframes zoom1{
    0%{
        transform: scale(0);
        opacity: 0.3;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}








/* =========================== What are offer  ================== */

.offer-section{
background: var(--light-gray);

}

.offer-card {
  padding: 20px;
  border-radius: 5px;
  transition: var(--transition);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  background: white;
}

.offer-card .icon-offer {
  font-size: 30px;
  color: var(--action);
  transition: var(--transition);

}

.offer-card .name-offer {
  
  padding-bottom: 10px;
  font-size: calc(20px + 0.5vw);
  font-weight: 600;
  font-family: var(--font-subheading);
  color: var(--secondary);
}

.offer-card .content-offer {
  color: var(--black);
  font-family: var(--font-subheading);
  /* text-align: justify; */
  transition: var(--transition);

}

.offer-card:hover {
  background-color: var(--action);
}

.offer-card:hover .icon-offer {
  color: var(--black);
}

.offer-card:hover .content-offer {
  color: black;
}

/* =========================== Our Products ================== */

.product-body {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 80px;
}

.prod-card {
  width: 100%;
  margin: 10px;
}

.prod-card .prod-img {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.prod-card .prod-img::before {
  width: 100px;
  height: 100px;
  background-color: var(--action);
  position: absolute;
  content: '';
  left: -50px;
  top: -50px;
  border-radius: 37% 63% 49% 51% / 39% 40% 60% 61%;
  animation: rotate linear 10s infinite;
  transition: var(--transition);
}

.prod-card .prod-img::after {
  width: 10px;
  height: 100%;
  background-color: var(--action);
  position: absolute;
  content: '';
  left: 0;
  transition: var(--transition);
}





@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.prod-card .prod-img img {
  width: 100%;
  transition: all linear 1.5s;

}

.prod-name {
  width: 100%;
  height: 80px;
  padding: 10px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 500;
  font-family: var(--font-subheading);
  font-size: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: var(--transition);
}

.prod-card:hover .prod-name {
  transform: translateY(-10px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--action);
  color: black;
}

.prod-card:hover .prod-img::after {
  left: 90%;
}

.prod-card:hover .prod-img::before {
  left: 80%;
}

.prod-card:hover .prod-img img {
  transform: scale(1.1);
}

.prod-side-img {
  width: 100%;
  height: 100%;
  /*background-color: var(--secondary);*/
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-side-img img {
  width: 100%;
  height: 100%;
  opacity: cover;
}

.prod-side-img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.336), var(--gray));
}

.prod-side-img .side-box {
  position: absolute;
  margin: 2vw;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  font-family: var(--font-one);
  letter-spacing: 4px;
  color: var(--action);
  line-height: 40px;

}

.custom-arrow {
  background: var(--action);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 10;
  position: absolute;
  bottom: -0px;
}

.custom-arrow:hover {
  background: var(--black);
  color: var(--action);
  /* transform: translateY(-50%) scale(1.1); */
}

.custom-prev {
  left: 50%;
  /* transform: translateX(-50%); */
}

.custom-next {
  right: 50%;
  transform: translateX(-50%);


}

.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 20px 0;
  gap: 10px;
  position: absolute;

  bottom: -70px;
}

.slick-dots li {
  margin: 0;
  padding: 0;
}

.slick-dots button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-dots li.slick-active button {
  background: var(--action);
  transform: scale(1.2);
}

.slick-dots button:hover {
  background: var(--black);
}

.box-body {
  position: relative;
  height: auto;
  
}

.box-img {
  width: 100%;
  height: auto;
}

.box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-side {
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
}

.overlay-body {
  width: 90%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0));
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-body .tob-box {
  width: 30%;
  min-width: 380px;
  height:fit-content;
  background-color: var(--white);

  padding: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
..overlay-body .rm-btn{
    background: var(--secondary) !important;
}

.tob-box .heading-box {
  font-size: clamp(2rem, 2vw, 4rem);
  font-weight: 500;
  text-align: start;
}

.tob-box .heading-box p {
  color: var(--action);
  font-size: clamp(2rem, 3vw, 5rem);
  font-weight: 500;
  letter-spacing: 2px;
  font-family: var(--font-one);
  text-align: start;
  padding: 0;
  margin: 0;
}





/* =========================== Why choose Us  ================== */

.why-card {
  width: 100%;
  height: auto;
  padding: 20px;
  padding-top: 0;
  background-color: var(--secondary);
  margin-bottom: 40px;
  transition: var(--transition);
}

.why-card .icon-why {
  width: 50px;
  height: 50px;
  background: var(--action);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: var(--transition);
}

.why-card .title-why {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}

.why-card .content-des p {
  /*color: var(--bg-color) !important;*/
  text-align: start;
  transition: var(--transition);
  color:lightgray;
}

.why-card:hover{
    background: var(--action);
}
.why-card:hover  .title-why{
    color: var(--black);
}

.why-card:hover  .content-des p{
    color: var(--black);
}
.why-card:hover  .icon-why{
    /*color: var(--black);*/
    background: var(--secondary);
}
.banner-body {
  width: 100%;
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  position: relative;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: fit-content;
  margin: auto;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 252, 252, 0.63);
  border-radius: 10px;
}

/* =========================== Top Products ================== */
.top-product-body {
  overflow: hidden;
  background: var(--light-gray);
}

.top-bg-img img {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 250px;
  animation: move linear 20s infinite;
}

@keyframes move {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(360deg);
  }
}

.top-pro-card {
  width: 100%;
  height: auto;
  /*padding: 20px;*/
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--action);
  border-bottom: none;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.671) 0px 5px 50px -12px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;

}

.top-pro-card .top-card-img {
  width: 100%;
  height: 100%;

}

.top-pro-card .top-card-img img {
  width: 100%;
  height: 100%;
  transition: all linear 2s;
}

.top-pro-card .top-name {
  position: absolute;
  bottom: 0px;
  /* padding: 10px 30px 10px 50px; */
  background-color: var(--action);
  transform: skewX(30deg);
  left: -30px;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);

}

.top-pro-card .top-name p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  text-align: start;
  font-weight: 500;
  font-family: var(--font-subheading);
  color: var(--black);
  transform: skewX(-30deg);
  position: relative;

  padding: 10px 30px 10px 50px;

}

.top-pro-card .top-name p img {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  right: -25px;
  bottom: -15px;
  z-index: 1;
  transition: all 2s;
}

.top-pro-card:hover .top-name {
  bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}

.top-pro-card:hover .top-name img {
  transform: rotate(90deg);
}

.top-pro-card:hover .top-card-img img {
  transform: scale(1.2);
}

/* =========================== FAQ ================== */
.faq-img {
  width: 100%;
  height: 100%;
}

.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-body {
  padding: 40px 20px;
}

.faq-itmes {

  margin: 20px 0px;
}

.accordion {
  background-color: var(--white);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: var(--font-subheading);
  margin-bottom:10px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius:6px ;
  
}


.accordion  .active,
.accordion:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.panel {
  padding: 10px 20px;
  background-color: black;
  /*border-bottom: 2px solid var(--action);*/
  display: none;
  overflow: hidden;
  margin-bottom: 10px;
  
  color:white;
}
.panel p{
    color:white;
}

.accordion:after {
  content: '\02795';
  font-size: 13px;
  /*color: #777;*/
  float: right;
  margin-left: 5px;
  color: black;

}

.activenew:after {
  content: "\2796";
  /*color: #fca311;*/

}


/* =========================== section-body ================== */

.server-bg{
    background:linear-gradient(to left,var(--secondary), rgba(0, 0, 0, 0.5)), url("../../img/bg/bg1");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 30px 0px;
}
.server {
  padding: 30px;
  /* background-color: red; */
}

.served-body {
  padding: 15px;
  background: var(--white);
  margin: 20px;
  border-radius: 10px;
}

.served-slider {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0px 30px;
  /* background-color: red; */
}

.served-card {
  background-color: var(--action);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 15px;
  padding: 30px 10px;
  color: var(--black);
  border-radius: 10px;
  transition: var(--transition);
}

.served-card .served-icon {
  /*font-size: 40px;*/
  text-align: center;
}
.served-icon img{
    width: 60px;
    margin: auto;
}

.served-card .served-name {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  margin-top: 10px;
}

.served-slider .custom-arrow {
  background: var(--secondary);
  color: var(--action);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 10;
  position: absolute;
  top: 40%;
}

.served-card:hover {
  color: var(--secondary);
}

.served-slider .custom-arrow:hover {
  background: var(--black);
  color: var(--action);
  /* transform: translateY(-50%) scale(1.1); */
}

.served-slider .custom-prev {
  left: 0px;
}

.served-slider .custom-next {
  right: -20px;


}

/* =========================== world map ================== */
.map-section{
    position: relative;
}
.bottom-ship{
    position:absolute ;
    bottom: 0;
    width: 300px;
    z-index: 1;
}
.bottom-ship img{
    width: 100%;
}
.world-map-img {
  width: 100%;
  height: 100%;
  z-index: 5;
  position:relative;
}


.world-map-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.clients-backgound {
  width: 100%;
  height: 350px;
  /* background-color: red; */
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.client-overlay {
  background: linear-gradient(transparent, transparent, black);
  width: 100%;
  height: 100%;
}

.counter-body {
  padding: 0px 10vw;
}

.counter {
  width: 100%;
  height: 100%;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  padding: 0;
  margin: 0;
  transform: translateY(-100px);
  background-color: white;
  border-radius: 4px;
}

.counter-item {
  background: var(--secondary);
  padding: 30px 20px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.counter-content p {
  color: white;
}

.counter-box {
  padding: 15px;
  /* background-color: red; */
  display: flex;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  margin-bottom: 10px;
}

.counter-box .counter-icon {
  font-size: 30px;
  color: var(--action);
}

.counter-box .counter-number {
  margin-left: 10px;

}

.counter-box .counter-number b {
  font-size: 30px;
  color: var(--black);
}

.counter-box .counter-number P {
  margin: 0;
  text-align: start;
  color: gray;
}
.counter-number p strong{
    color: black;
}


.vision-section{
    background: var(--light-gray);
       background: var(--secondary);
}

.welcome-img {
  width: 100%;
  height: 100%;
}

.welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome {
  text-transform: uppercase;
}

.vision-box {
  padding: 10px;
  margin-bottom: 20px;
}

.vision-box .vision-title {
  font-size: 28px;
  font-weight: bolder;
  font-family: var(--font-subheading);
  text-transform: uppercase !important;
  color: var(--white);
}

.vision-box .vision-title span {
  color: var(--action);
}

.vision-content p {
  color: var(--white);
}


.testimonial-body {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

.testimonial-body .test-card {
  margin: 20px;
  background-color: var(--action);
  padding: 20px;
  position: relative;
}

.testimonial-body .custom-arrow {
  bottom: 0;
}

.testimonial-body .slick-track {
  margin-bottom: 40px;

}

.test-card .rateing {
  color: var(--secondary);
}

.test-card .test-name {
  color: var(--black);
  font-size: 20px;
  font-family: var(--font-subheading);
}

.test-card .test-content P {
  color: var(--white);
  align-items: center;
}

.test-img {
  position: absolute;
  width: 100px;
  right: 20px;
  bottom: -30px;
}

.test-img img {
  width: 100%;
}




/* contact form  */

.contact-img {
  width: 100%;
  height: 100%;
}

.contact-img iframe {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}


.enquiry-form-container {
  background: white;
  max-width: 500px;
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: var(--action);
  outline: none;
}

.enquiry-form-container button {
  background-color: var(--action);
  color: var(--secondary);
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enquiry-form-container button:hover {
  background-color: #0056b3;
  color: var(--action);
}

form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  appearance: none;
  /* For cleaner styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border 0.3s ease;
}

form select:focus {
  border-color: var(--action);
  outline: none;
}

#service option:hover {
  background-color: var(--action);

}

.contact-body {
  position: relative;
  background-attachment: fixed !important;
  background-size: cover;
  position: center;
}

.contact-social-icon {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
}

.contact-social-icon a {
  width: 50px;
  height: 50px;
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  transition: var(--transition);
}

.contact-social-icon a:nth-child(1) {
  background: #1877F2;

}

.contact-social-icon a:nth-child(2) {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.contact-social-icon a:nth-child(3) {
  background: black;
}

.contact-social-icon a:nth-child(4) {
  background: blue;
}

.contact-social-icon a:hover {
  background: var(--action);
  color: var(--secondary);
}


/* =========================== footer ===================================== */

.bg-footer {
  background: linear-gradient(45deg, #F2BF02, #f2be0262, #f2be0244, transparent, transparent, transparent);
  background: rgba(0, 0, 0, 0.904);
}

.footer-contact {
  background-color: var(--secondary);
  padding: 18px;
  border-radius: 15px;
}

.footer-contact .address-body {
  display: flex;
  justify-content: center;
  width: 100%;

}

.footer-contact .address-body .footer-icon {
  font-size: 25px;
  margin-right: 15px;
  color: var(--action);
}

.footer-contact .address-body .address {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  /* background-color: red; */
  margin: auto;
}

.footer-contact .address-body .address a {
  font-size: 16px;
  color: white;

}

.footer-contact .address-body .address i {
  color: var(--action)
}

.footer-contact .address-body .address a:hover {
  color: var(--action);
}

.footer-item {
  margin-top: 50px;
}
.footer-item p{
    color:white;
}


.footer-item .f-title {
  position: relative;

  color: var(--action);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-subheading);
}

.footer-item .f-title span {
  z-index: 5;
  position: relative;

}

.footer-item .f-title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--secondary);
  border-radius: 50%;
  left: -10px;
  top: -10px;
  z-index: 1;
  /* Supposed to place behind */
}

.footer-item .f-title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--secondary);
  border-radius: 50%;
  left: 20px;
  top: -10px;
  z-index: 1;
  /* Supposed to place behind */
}

.useful {
  margin-left: 5vw;
}

.footer-item ul li {
  margin-top: 5px;

}

.footer-item ul {
  height: 174px;
  overflow-y: auto;
  margin-top: 20px;
}

.footer-item ul::-webkit-scrollbar {
  width: 5px;

}

.footer-item ul::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 10px;

}

.footer-item ul::-webkit-scrollbar-track {
  background-color: gray;
  border-radius: 10px;
}

.footer-item ul li a {
  color: white;
  width: fit-content;
  position: relative;

}

.footer-item ul li a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--action);
  transform: scale(0);
  transition: var(--transition);
}

.footer-item ul li a i {
  font-size: 14px;
}

.footer-item ul li a:hover::before {
  transform: scale(1);
}

.footer-item ul li a:hover {
  color: var(--action);
}


.footer-social-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-social-link a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  font-size: 20px;
  margin-top: 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.footer-social-link a i{
  
  z-index: 4;
  /* font-weight: 700; */
  color: var(--secondary);
  transition: var(--transition);
}

.footer-social-link a::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  background-color: var(--secondary);
  z-index: 2;
  bottom: -90%;
  transition: var(--transition);

}
.footer-social-link a:hover i{
  color: white;
}
.footer-social-link a:hover::after {
  bottom:0;
  background-color: var(--action);
}

.company-logo-footer {
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: white;

}

.company-logo-footer img {
  width: 100%;
}

/* copyright  */

.copy-right {
  text-align: center;
  background-color: var(--action);
  font-size: 15px;
  color: var(--black);
  padding: 15px;
}

.copy-right a {
  color: var(--secondary);
  transition: var(--transition);
}

.copy-right a:hover {
  color: var(--white);
}

.whatsapp-body{
    width: 40px;
    height: 40px;
     background-image: radial-gradient(circle,#03D20C, #03D20C, green);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     position: fixed;
     z-index: 10;
     bottom: 20px ;
     right: 20px;
     animation:  whatsapp  ease-in-out 2s infinite;
}
.whatsapp-body a i{
     color: white;
    
}

@keyframes whatsapp{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.7);
    }
    50%{
        transform: scale(1.1);
       box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100%{
        transform: scale(1);
       box-shadow: 0 0 0 0px rgba(37, 211, 102, 0);
    }
    
}


/*===================================================================*/

                          /*Brand Page*/

/*===================================================================*/

.brand-top{
    background: var(--secondary);
}
.brand-p-img{
    width: 100%;
}
.brand-p-img img{
    width: 70%;
    margin: auto;
    display: flex;
}
.cate-all-btn{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    
}
.catetype{
     background-color: var(--white);
  color: black;
  /*float: left;*/
  border: none;
  outline: none;
  cursor: pointer;
  padding: 13px 13px;
  font-size: 15px;
  width: 100%;
  height: 70px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border-radius: 5px; 
  margin-top: 20px ;
  
}
.catetype:hover {
  background-color:#F2BF02;
  /*color:black;*/
}

.modelcontent

/* Style the tab content (and add height:100% for full page content) */
.modelcontent {
  display: none;
  padding:2vw;
  height: 100%;
  background:white;
  /*box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;*/
 
}
.modelcontent .brand-heading{
    font-size:20px;
    font-weight: 600;
    color: var(--secondary);
}
.modelcontent .brand-card{
    width: 100%;
    margin-top: 20px;
    background:white;
    position: relative;
border-radius: 10px;
overflow: hidden;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.modelcontent .brand-card .brand-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.modelcontent .brand-card .brand-img img{
    width: 100%;
    transition: linear .6s;
}
.modelcontent .brand-card a{
    color: var(--secondary);
}

.modelcontent .brand-card .brand-name{
    padding:8px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: black;
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    width: 100%;
    height: fit-content;
    bottom: 0;
    left: 0;
    /*background: linear-gradient(to top,rgba(1, 63, 128, 0.2),rgba(1, 63, 128, 0));*/
    color: var(--secondary);
    transition: all 2s;
}
.modelcontent .brand-card .brand-name .modelnum {
    background: var(--secondary);
    color: white;
    margin-top: 5px;
    padding: 4px 10px;
    border-radius: 4px; 
    font-size:13px;
}
.modelcontent .brand-card .brand-name .modelnum:hover{
    background: #012F99;
    text-decoration: none;
}

.modelcontent .brand-card:hover .brand-img img {
 transform: scale(1.1);
}
.modelcontent .brand-card:hover{
    border-radius: 10px;
}
.modelcontent .brand-card .brand-name:hover{
    text-decoration: underline;
}
.modelcontent .brand-card .brand-name:hover modelnum{
    text-decoration: none;
}


/*============================== Breadcrumb-body   ==========================*/

.breadcrumb-body{
    width: 100%;
    padding: 0;
    margin: 0;
    height: 300px;
    background: linear-gradient(to right,var(--secondary),transparent);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    
}
.breadcrumb-body::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../../img/bg/breadcrumb-bg.jpg');
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.breadcrumb-body .breadcrumb-name{
    font-size:clamp(25px ,13vw,60px);
    font-weight: 700;
}
.breadcrumb-body .bread-item{
    /*font-size: ;*/
}
.breadcrumb-body .bread-item a{
    color:var(--action);
}


/*===================== product page ==================*/

.product-img-p{
    width: 40%;
    /*background: red;*/
    /*border: 5px solid  black ;*/
    position: relative;
    float: left;
    padding: 0 20px 0px 0;
}
.box-page img{
   
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border: 0px !important;
}
.box-page::before{
    display: none;
}
.product-img-p::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: -5%;
    top: -5%;
    /*background: url('../../img/bg/dotted.jpg');*/
    opacity: 0.2;
    background-size: contain;
    z-index: -1;
    border-radius: 30px;
}
.product-img-p img{

    /*float:left;*/
    width: 82%;
   border: 10px solid transparent;
   margin: auto;
   display: block;
/*border-image: url('../../img/bg/border-bg.jpg') 30 stretch;*/
}
.right-content{
    color:black;
    /*background: red;*/
}
.about-banner-img{
    width: 100%;
    height: 350px;
}
.about-banner-img img{
    width: 100%;
    height: 100%;
}
.border-right{
    border-right:5px solid white;
}


/*============= Contact us Page===========*/

.contact-section-p{
    background:  url('../../img/bg/dots.png');
    background-position: center;
    background-size: cover;
}
.contact-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 2vw;
    transition: all 0.3s;
    margin-top:30px;
    background:white;
}
.contact-box .contact-icon img{
    width:50px;
    display: block;
    margin: auto;
}
.contact-box .contact-name{
    color: black;
    text-align: center;
    font-weight: 700;
    margin-top:10px ;
    font-size: 20px;

    
}
.contact-box .contact-des{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top:10px ;
}
.contact-box .contact-des p{
    margin: 0;
    /*text-align: center;*/
}
.contact-box .contact-des p a{
    color: black;
    font-size: 16px;
    font-weight: 500;
}.contact-box .contact-des p a:hover{
    color: var(--secondary);
}
.contact-box:hover{
    transform:translateY(-10px);
}


/*=============Sitemap=================*/

.main-btn{
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #013F80, #0270d1, #013F80);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  background-size: 200% 200%;
  transition: background-position 0.5s ease, transform 0.2s ease;
  display:flex;
  align-items: center;
  margin-top:20px;
}
.main-btn:hover {
 background-position: right center;
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}











