* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;

}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Regular.woff2') format('woff2'),
    url('fonts/Manrope-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Bold.woff2') format('woff2'),
    url('fonts/Manrope-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-ExtraBold.woff2') format('woff2'),
    url('fonts/Manrope-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-ExtraLight.woff2') format('woff2'),
    url('fonts/Manrope-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Light.woff2') format('woff2'),
    url('fonts/Manrope-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-Medium.woff2') format('woff2'),
    url('fonts/Manrope-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope-SemiBold.woff2') format('woff2'),
    url('fonts/Manrope-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  line-height: normal;
  font-weight: bold;
}

h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 83px;
  font-weight: 500;
  line-height: 70px;
  color: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  margin: 0px;
  padding: 0px;
}

ul li {
  margin: 0;
  list-style-type: none;
}

img {
  display: block;
}

p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
  margin: 0;

}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

img {
  width: auto;
  max-width: 100%;
}

.lg-none {
  display: none;
}

.sm-none {
  display: block;
}

/*==home banner==*/
.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: black;
}

.banner-slider .slider {
  display: flex;
  transition: transform 0.5s ease;
}

.banner-slider .slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.banner-slider .slide.active {
  opacity: 1;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 16%);
  z-index: 1;
}

.banner-slider .banner-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 85%;
}

.banner-heading h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 83px;
  font-weight: 500;
  line-height: 100px;
  text-align: center;
  color: #fff;
}

.banner-heading span {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 78.5px;
  text-align: center;
  display: block;
  color: #fff;
}

.banner-slider .vertical-indicator {
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.banner-slider .dot {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.banner-slider .dot.active {
  background-image: url('../images/close.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

/*===navbar===*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 15px 0px;
  position: absolute;
  z-index: 10;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);

}

ul.list-items a {
  text-decoration: none;
  color: #fff;
  padding: 30px 15px;
  position: relative;
  /* Add this */
  overflow: hidden;
  /* Add this */
}

ul.list-items a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 72px;
  width: 0;
  height: 2px;
  background-color: #80ba27;
  transition: width 0.3s ease, left 0.3s ease;
}

ul.list-items a:hover::after {
  width: 100%;
  left: 0;

}

/* .logo img {
    width: 75%;
  } */
#navbar .logo {
  height: 7em;
  width: 7em;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.list-items {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-link {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-top: 20px;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  padding: 30px 15px;
  transition: background 0.3s;
}

.contact-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 16.94px;
  text-align: left;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #80ba27;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* Mega Menu styles */
.mega-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 207%;
  left: 0px;
  width: 300px;
  padding: 20px;
  z-index: 20;
  border-radius: 5px;
  color: #000;
}

.navbar li:hover .mega-menu {
  display: block;
}

.mega-menu h3 {
  margin-top: 0;
}

.mega-menu a {
  color: #333;
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}

ul.list-items li a {
  position: relative;
  padding: 30px 25px;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  text-transform: uppercase;
}

.mega-menu a:hover {
  color: #007BFF;
}

.navbar li.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-size: cover;
  background-image: url(../images/btm-arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
  transition: transform 0.3s, background-image 0.3s;
  position: absolute;
  right: -3px;
  top: 5px;
}

.navbar li.has-dropdown:hover::after {
  background-image: url('../images/btm-arrow.png');
  transform: rotate(180deg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -3px;
  top: 5px;
}

.toggle {
  display: none;
}

#product-page .navbar {
  position: relative;
}

#product-page .navbar ul.list-items li a {
  color: #000;

}

.product-list-sec .product-banner {

  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-list-sec .navbar ul li a {
  color: black;
}

.navbar ul li a {
  font-weight: 500;
}

.product-list-sec .contact-btn {
  background-color: #000000;
  color: #ffffff;
}

.product-list-sec .navbar {
  position: relative;
}

.secondary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  flex-wrap: wrap;
  max-width: 95%;
}

.product-banner h1 {
  color: white;
  font-size: 3em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.color-filter {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  background-color: #fff;
  flex-wrap: wrap;
  gap: 15px;
}

.color-option {
  display: flex;
  align-items: center;
  /* margin-right: 20px; */
  cursor: pointer;
  background: #F7F7F7;
  padding: 6px 12px;
  border-radius: 20px;
  justify-content: start;
  min-width: 120px;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

.product-count {
  text-align: right;
  padding: 10px 20px;
  font-size: 0.9em;
  color: #666;
  background-color: #fff;
}

.product-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px;
  background-color: #fff;
  max-width: 95%;
  margin: auto;
}

.product-item {
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #fff;
  /* border: 1px solid #e0e0e0; */
  border-radius: 5px;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item.hidden {
  display: none;
}

.product-image {
  width: 100%;
  max-height: 270px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 15px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
}

.product-info {
  padding: 15px 1px;
}

.product-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.product-code {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 10px;
}

.color-options {
  display: flex;
  margin-bottom: 15px;
}

.color-option-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.view-details-btn {
  background-color: #000000;
  color: white;
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 25px;
  padding: 15px 20px;
}

/* responsive section for product listing sec */
@media (max-width: 1024px) {
  .product-item {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .product-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .product-item {
    width: 40%;
  }
}

/* product listing sec end */

/* product detail section start */
.detail-body-sec .product-list-sec .navbar {
  border-bottom: 1px solid #000000;
}

.detail-body-sec .navbar {
  width: 100%;
  padding: 15px 30px;
}

.detail-container {
  /* max-width: 90%; */
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #000000;
}

.prod-name {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  vertical-align: center;
  color: #1E1E1E;
  padding: 15px 0;
  border-bottom: 1px solid #1E1E1E;
  padding-left: 30px;
}

.related-prod-sec {
  margin: 30px;
}

.detail-section-tab {
  margin: 0 40px;
  max-width: 70%;
}

.detail-container-image-container {
  flex: 1;
  min-width: 300px;
  /* margin-right: 40px; */
  margin-bottom: 20px;
}

.detail-container-info {
  flex: 1;
  min-width: 300px;
}

.detail-container-main-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  min-height: 70vh;
  object-fit: cover;
  padding-right: 0px;
  border-right: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  border-end-end-radius: 15px;

}

.detail-container-carousel {
  display: flex;
  justify-content: space-between;
  margin: 2rem 5rem;
  position: relative;
}

.detail-container-carousel-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #000000;
  border-radius: 10px;
  cursor: pointer;
}

.detail-container-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1E1E1E;
  color: white;
  border: none;
  padding: 12px 8px;
  border-radius: 50px;
  cursor: pointer;
}

.detail-container-carousel-button.left {
  left: -50px;
}

.detail-container-carousel-button.right {
  right: -50px;
}

.detail-container-product-code {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.detail-container-product-name {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}

.detail-container-tabs {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #1E1E1E;
}

.detail-container-tab-button {
  background: none;
  border: none;
  padding: 5px 0;
  margin-right: 20px;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 2px solid transparent;
}

.detail-container-tab-button.active {
  border-bottom: 2px solid #000;
  font-weight: bold;
}

.detail-container-tab-content {
  display: none;
}

.detail-container-tab-content.active {
  display: block;
}

.detail-container-overview-list {
  /* padding-left: 20px; */
  margin-bottom: 20px;
}

.detail-container-overview-list li {
  list-style: inside disc;
  line-height: 2;
}

.detail-container-color-options {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.detail-container-color-option {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #ddd;
}

.detail-container-cta-button,
.detail-container-secondary-button {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
  margin-bottom: 25px;
}

.detail-container-secondary-button {
  background-color: #f0f0f0;
  color: #000;
}



.detail-container-social-icon {
  width: 30px;
  height: 30px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}



.detail-related-products {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-bottom: 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.detail-related-products::-webkit-scrollbar {
  display: none;
}

.detail-product-card {
  flex: 0 0 auto;
  width: 250px;
  padding: 10px;
}

.detail-product-image {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border: 1px solid #000000;
  border-radius: 10px;
}

.related-prod-head {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.detail-product-name {
  margin: 10px 0 5px;
  font-weight: bold;
}

.detail-product-code {
  color: #666;
  font-size: 12px;
  margin-bottom: 10px;
}

.detail-color-options {
  display: flex;
  /* justify-content: center; */
  gap: 5px;
  margin-bottom: 40px;
}

.detail-color-option {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.detail-view-details {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
  border-radius: 50px;
  margin-bottom: 5px;
  display: inline-block;
  text-align: center;
}

.detail-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  /* margin-bottom: 20px; */
}

.detail-nav-button {
  background-color: #1E1E1E;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 20px;
}

.detail-faq-list {
  list-style-type: none;
  padding: 0;
}

.detail-faq-item {
  border-bottom: 1px solid black;
  padding: 20px 0;
}

.detail-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.detail-faq-number {
  font-size: 40px;
  margin-right: 1.5em;
}

.detail-faq-text {
  flex-grow: 1;
}

.detail-faq-icon {
  transition: transform 0.3s ease;
  border: 1px solid black;
  padding: 9px 8px;
  border-radius: 22px;
  width: 2em;
}

.detail-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 35px;
  margin-left: 4.5em;

}

.detail-faq-answer.open {
  max-height: 1000px;
  padding: 15px 0 15px 35px;

}

/* product detail section responsive */
@media (max-width: 995px) {
  .detail-container {
    flex-direction: column;
  }

  .detail-container-carousel-image {
    width: 6.5rem;
    height: 6.5rem;
  }
}

@media (max-width: 768px) {
  .detail-container {
    flex-direction: column;
  }

  .detail-container-image-container {
    margin-right: 0;
  }

  .detail-faq-answer {
    margin-left: 1.5em
  }

  .detail-faq-number {
    margin-right: 0.5em;
  }

  .detail-section-title {
    padding-bottom: 0;
  }

  .detail-container-carousel-image {
    width: 3.5rem;
    height: 3.5rem;
  }

  .detail-container-carousel {
    justify-content: space-around;
  }

  .detail-section-title {
    font-size: 1.8rem;
  }
}

/* product detail section end */


/* Responsive styles */
@media (max-width: 768px) {

  /* Navbar styles for mobile */
  .navbar ul {
    display: none;
    /* Hide navbar items by default */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    height: 100vh;
    overflow-y: auto;
  }

  /* Show navbar items when navbar has 'active' class */
  .navbar.active ul {
    display: flex;
  }

  /* Toggle button for mobile view */
  .navbar .toggle {
    display: block;
    cursor: pointer;
    position: absolute;
    font-size: 37px;
    z-index: 99;
    color: #fff;
    background-color: transparent;
    border: none;
    left: 4px;
  }

  /* Mega menu styles */
  .mega-menu {
    position: static;
    padding: 0;
    background-color: #444;
    color: #fff;
    width: 100%;
    display: none;
    /* Hide by default */
    flex-direction: column;
  }

  /* Display mega menu when dropdown item is active */
  .navbar ul li.active .mega-menu {
    display: flex;
  }

  /* Mega menu link styles */
  .mega-menu a {
    color: #fff;
    padding: 10px;
    border-top: 1px solid #555;
    text-decoration: none;
  }

  /* Mega menu header styles */
  .mega-menu h3 {
    color: #fff;
    padding: 10px;
  }

  /* Ensures the toggle button is visible */
  .toggle {
    display: block;
  }

  .navbar li:hover .mega-menu {
    display: initial;
  }
}

/*===our===*/
h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  text-align: left;
  padding-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.our-group-text {
  width: 50%;
  padding-right: 30px;
}

.group-section .container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 20px;
}



.our-group-img {
  width: 50%;
  display: flex;
  justify-content: end;
}

section.group-section {
  padding: 55px 0px;
}

.our-group-img img {
  width: 90%;
  border-radius: 20px;
  object-fit: cover;
}

.btn-link a {
  background: #000000;
  color: #ffffff;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.9px;
  text-align: center;
  text-transform: uppercase;
}

section.group-section .btn-link {
  padding-top: 40px;
}

/*--our manufacter--*/
section.our-manufactur h2 {
  width: 50%;
}

.manufactur-bg {
  padding: 40px 0px;
}

.manufactur-bg {
  padding: 40px 0px;
}

.manufactur-bg {
  padding: 40px 0px;
}

.manufactur-bg ul {
  list-style: none;
  padding: 0;
}

.manufactur-bg {
  padding: 40px 0px;
}

.manufactur-bg ul {
  list-style: none;
  padding: 0;
}

.manufactur-bg ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 50px 15px;
  overflow: hidden;
  transition: color 0.3s;
  border-bottom: solid 1px #0B1201;
  cursor: pointer;
}

/* Item 1 styles */
.item1::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/banner-sub.webp');
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* Initially hidden */
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}

/* Overlay color for Item 1 */
.item1::after {
  content: '';
  position: absolute;
  top: 100%;
  /* Start below the element */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 86, 179, 0.5);
  opacity: 0;
  /* Initially hidden */
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}

.item1:hover::before {
  top: 0;
  opacity: 1;
}

.item1:hover::after {
  top: 0;
  opacity: 1;
}

/* Item 2 styles */
.item2::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/banner-img02.webp');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}

/* Overlay color for Item 2 */
.item2::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(37 61 2 / 50%);
  opacity: 0;
  transition: top 0.5s ease, opacity 0.5s ease;
  z-index: 1;
}

.item2:hover::before {
  top: 0;
  opacity: 1;
}

.item2:hover::after {
  top: 0;
  opacity: 1;
}

.manufactur-bg ul li span,
.manufactur-bg ul li p,
.manufactur-bg ul li .btn-link {
  position: relative;
  z-index: 2;
}

.manufactur-bg ul li:hover .btn-link a {
  background-color: #ffffff;
  color: #000000;
}

.manufactur-bg ul li:hover span {
  color: #ffffff;
}

.manufactur-bg ul li:hover p {
  color: #ffffff;
}

li.item1 {
  border-top: solid 1px #0B1201;
}

.choose-text {
  width: 50%;
}

.choose-text img {
  width: 100%;
}

.choose-img {
  width: 50%;
}

.choose-img img {
  width: 90%;
  border-radius: 15px;
}

/* ====counter overlay=== */
.counter-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 400px;
}

.counter-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 35%);
  z-index: 1;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
  position: relative;
  display: inline;
  display: inline-block;
  margin-right: 2%;
  margin-bottom: 20px;
  z-index: 2;
}

.end {
  margin-right: 0 !important;
}

.wrapper-counter {
  width: 90%;
  margin: 30px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  z-index: 2;
}

.counter {
  padding: 20px 0;
  border-radius: 5px;
}

.count-title {
  font-family: 'Manrope', sans-serif;
  font-size: 105px;
  font-weight: 600;
  line-height: 138.6px;
  text-align: center;
  color: #fff;
}

.count-text {
  text-transform: capitalize;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  line-height: 50px;
  text-align: center;
  margin: 0;
}

.counter-flex {
  display: flex;
  justify-content: space-around;
}

/*----hover effect----*/

section.catalogues-section {
  padding: 20px;
}

section.catalogues-section ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style-type: none;
}

section.catalogues-section ul li {
  background-color: #D3E5D0;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  border-radius: 0px 0px 15px 15px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 20%;
}

section.catalogues-section ul li img {
  width: 100%;
  height: 300px;
  transition: transform 0.5s ease;
  position: relative;
  border-radius: 0px 0px 15px 15px;
  bottom: 0;
}

section.catalogues-section ul li h3 {
  transition: transform 0.5s ease, opacity 0.5s ease;
  margin: 10px 0;
  opacity: 1;
  font-size: 22px;
  font-weight: 600;
  line-height: 25.96px;
  text-align: center;
  padding: 20px 0px;
}

section.catalogues-section ul li:hover img {
  transform: translate(40px, -40px);
}

section.catalogues-section ul li:hover h3 {
  transform: translateY(-55px);
  opacity: 0.8;
}

.more-button a {
  color: #ffffff;
}

.more-button {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

.more-button a {
  display: none;
  position: absolute;
  bottom: 10px;
  transform: translateX(-50%);
  background-color: #0B1201;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 15px;
  font-size: 13px;
}

section.catalogues-section ul li:hover .more-button a {
  display: block;
  animation: fadeIn 0.5s forwards;
  opacity: 1;
  transform: translateY(0);
  text-transform: uppercase;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalogues-tittle {
  padding-bottom: 20px;
}

/*--explore---*/
.explore-left {
  width: 40%;
  position: relative;
}

.explore-slider {
  width: 60%;
}

/* Arrow styles */
.custom-nav {
  position: absolute;
  transform: translateY(-50%);
  width: 40%;
  display: flex;
  justify-content: space-between;
}

.custom-nav img {
  width: 20px;
}

.custom-nav .next-arrow,
.custom-nav .prev-arrow {
  position: absolute;
  background-color: black;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.prev-arrow {
  left: 120%;
  border-radius: 50px;
}

.next-arrow {
  left: 90%;
}

.overlay-explore {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

.explore-bg-1 {

  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.explore-bg-2 {
  background-image: url('../images/explore-bg3.webp');
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.explore-bg-3 {
  background-image: url('../images/explore-bg4.webp');
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.explore-bg-4 {
  background-image: url('../images/explore-bg-5.webp');
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.explore-text {
  padding-bottom: 30px;
  padding-top: 10px;
}

.explore-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  padding-bottom: 20px;
  width: 80%;
  min-height: 110px;
}

.explore-tittle {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 30px;
}

.explore-slider img {
  position: relative;
  z-index: 1;
  opacity: .7;
}

.explore-slider .item {
  cursor: pointer;
}

.explore-slider .item:hover img {
  opacity: 1;
}

section.explore {
  padding: 50px 0px;
}

.explore-slider .item img {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.custom-nav .next-arrow,
.custom-nav .prev-arrow {
  transition: background-color 0.4s ease, transform 0.3s ease;
}

section.get-in {
  background-color: #F7FF9E;
}

.get-in-left {
  width: 50%;
  padding-bottom: 30px;
  display: flex;
}

.get-in-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-in-right .btn-link {
  padding-top: 35px;
}

.btn-link a:hover {
  background-color: #80ba27;
  color: #ffffff;
  transform: scale(1.05);
}

.get-in-left img {
  width: 45%;
}

.custom-nav div:hover {
  background-color: #80ba27;
}

.form-group-ftr {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.email-input {
  width: 65%;
  padding: 16px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 50px;
  outline: none;
}

.submit-arrow {
  background-color: #80BA27;
  border: none;
  padding: 17px;
  margin-left: -77px;
  border-radius: 0px 30px 30px 0px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
}

.submit-arrow img {
  width: 30px;
  height: 20px;
  filter: invert(100%);
}

.submit-arrow:hover {
  background-color: #f7ff9e;
}

footer {
  background-color: #0B1201;
  padding-top: 50px;
  columns: #ffffff;
}

footer label {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 31.79px;
  text-align: left;
  color: #ffffff;
  padding-top: 30px;
  display: block;
  text-transform: capitalize;
}

.email-section {
  width: 50%;
}

.quick-link {
  width: 25%;
}

.quick-contact {
  width: 25%;
}

.quick-contact ul li {
  display: flex;
  align-items: baseline;
  padding-bottom: 10px;
  align-items: self-start;
}

.quick-contact p {
  color: #ffffff;
  margin: 0;
  font-size: 18px;
  line-height: 30px;
}

.quick-link ul li a {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
  color: #ffffff;
}

footer h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
  color: #ffffff;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.quick-contact ul li a {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 37px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.quick-contact ul li img {
  width: 43px;
  padding-right: 20px;
  padding-top: 10px;
}

.quick-contact ul li a img {
  width: 43px;
  padding-top: 0px;
  padding-right: 20px;
}

.quick-contact ul li:nth-child(2) {
  padding-left: 40px;
}

.quick-contact ul li:nth-child(2) img {
  width: 46px;
  padding-left: 11px;
}

.email-section img {
  width: 22%;
}

button.submit-arrow img {
  width: 60%;
}

.social-icon ul li a {
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon ul {
  display: flex;
  gap: 15px;
}

.social-icon ul li img {
  width: 43%;
}

.social-icon ul li:first-child img {
  width: 20px;
}

.social-icon ul li:first-child img {
  width: 10px;
}

.social-ftr ul li a {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 37px;
  color: #fff;
  text-transform: capitalize;
}

.product-image a {
  display: block;
  max-width: 100%;
  max-height: 95%;
  overflow: hidden;
}

.social-ftr {
  border-top: solid 1px #565656;
  display: flex;
  justify-content: space-between;
  padding: 24px 0px 15px 0px;
}

.social-ftr ul {
  display: flex;
  gap: 20px;
}

.email-input::placeholder {
  color: #000000;
  font-size: 18px;
  list-style: 30px;
}

.social-icon ul li a:hover {
  background-color: #7fb927;
}

.get-in-right h2 {
  line-height: 60px;
  font-weight: 500;
}

/*====about=====*/
.about-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 90vh;
  position: relative;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-heading {
  color: white;
  text-align: center;
}

.about-text {
  width: 50%;
  padding-right: 70px;
}

.about-img {
  width: 50%;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.about-section {
  padding: 70px 0px 40px 0px;
}

.about-text h2 {
  width: 70%;
}

.leadership-section {
  background: #414342;
  padding: 60px 0px 0px 0px;
}

.leadership-left {
  width: 50%;
  position: relative;
}

.leadership-right {
  width: 50%;
  padding-right: 70px;
  padding-bottom: 60px;
}

.leadership-left img {
  width: 63%;
  position: absolute;
  bottom: 0;
}

.leadership-right h2 {
  color: #ffffff;
}

.leadership-right p {
  color: #ffffff;
}

.vision-image {
  width: 50%;
}

.vision-text {
  width: 50%;
}

.vision-image img {
  width: 90%;
}

.vision-section {
  padding: 40px 0px;
}

.mission-heading {
  padding-top: 50px;
}

.vision-section img {
  border-radius: 0px 0px 20px 0px;
}

.group-left {
  width: 40%;
  position: relative;
}

.group-slider {
  width: 60%;
}

section.section-group {
  padding: 40px 0px 0px 30px;
}

.group-nav div {
  position: absolute;
  background-color: black;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.prev-group {
  left: 275px;
}

section.section-group .next-group {
  right: 425px;
}

/*====carees=====*/
.career-banner {
  background-image: url('../images/Careers-banner.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 90vh;
  position: relative;
}

.career-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion .accordion-item {
  border-bottom: 1px solid #000000;
  position: relative
}

.accordion-content ul {
  padding-left: 70px;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #000000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #282828;
}



.accordion .accordion-title {
  padding: 5px 0px;
  color: #000000;
  font-size: 22px;
  font-weight: 400;
  line-height: 42.46px;
  text-align: left;
  padding-left: 40px;
}

.accordion .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  padding-left: 35px;
}

section.career-faq {
  padding: 45px 0px 50px 0px;
}

.accordion button .icon {
  width: 30px;
  height: 30px;
  background-image: url(../images/faq-left.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  background-position: center;
}

.accordion button[aria-expanded="true"] .icon {
  background-image: url('../images/faq-right.svg');
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: max-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  padding: 22px 0px
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.accordion-content ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.accordion-content ul li:first-child {
  border-bottom: solid 1px #dedede;
}

.accordion-content ul li h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 40.26px;
  text-align: left;
}

span.acco-num {
  font-size: 30px;
  font-weight: 400;
  line-height: 65.41px;
  text-align: left;
  padding-right: 35px;
  position: absolute;
  top: 10px;
}

/*---choose slider---*/
.choose-vertical-slider {
  position: relative;
  height: 350px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
}

.choose-card-icon {
  background-color: #000000;
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}


.choose-slides-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.choose-slide {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px;
  height: max-content;
  font-size: 18px;
  margin-bottom: 35px;
}

.choose-icon {
  font-size: 30px;
}

/* Right side navigation buttons */
.choose-nav-btn {
  position: absolute;
  top: 215px;
  right: 5px;
  background-color: transparent;
  color: white;
  /* border: none; */
  padding: 10px;
  cursor: pointer;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  border: solid 1px #000;
}

.choose-prev {
  top: 95px;
}

.choose-next {
  bottom: 10px;
}

/* Dot indicators */
.choose-dot-indicator {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.choose-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: lightgray;
  transition: background-color 0.3s;
}

.choose-dot.active {
  background-color: black;
}

.choose-card-icon-txt h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 44px;
  width: 60%;
  padding-bottom: 10px;
}

.choose-card-icon-txt p {
  width: 90%;
}

section.choose-section.aos-init.aos-animate {
  padding-bottom: 40px;
}

/*--end-*/
.choose-nav-btn:hover {
  background-color: #80ba27;
}

section.vision-section img:hover {
  border-radius: 15px;
}

.quick-contact ul li:nth-child(2) a {
  text-decoration: underline;
}

/*====blog=====*/
.blog-banner {
  background-image: url('../images/blog-banner.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 90vh;
  position: relative;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-heading {
  color: white;
  text-align: center;
}

.blog-left-text {
  background-color: #ECECEC;
  width: 70%;
  border-radius: 15px;
}

section.blog-section ul li {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}

.blog-left-img {
  width: 30%;
  display: flex;
  justify-content: end;
}

.blog-left-img img {
  width: 100%;
  border-radius: 20px;
}

section.blog-section {
  padding: 50px 0px;
}

.blog-left-text {
  padding: 30px;
  cursor: pointer;
}

.blog-left-text h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 50.5px;
  text-align: left;
}

/* ===b2b section=== */
.b2b-banner {

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 90vh;
  position: relative;
}

.b2b-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.b2b-heading h1 {
  color: white;
  text-align: center;
  width: 92%;
  line-height: 1.2;
  margin: 0 auto;
}

/* CSS styles */
.b2b-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0px 20px;

}

.b2b-hero {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 2rem;
}

.b2b-content,
.b2b-image {
  flex: 1 1 300px;
  margin: 10px;
}

.b2b-heading {
  margin-bottom: 5px;
  color: #0b1201;
}

.b2b-image h2.b2b-heading {
  display: none;
}

/* .b2b-text {
    color: #666;
  } */



.b2b-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.b2b-services {
  margin-top: 60px;
  overflow: hidden;
}

.b2b-service-card {
  position: relative;
  flex: 0 0 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.b2b-service-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.overlay-b2b {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #B7CBB4;

  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.overlay-b2b h3 {
  color: #000 !important;
  text-shadow: none !important;
  padding-bottom: 5px;
}

.b2b-service-card:hover .overlay-b2b {
  height: 100%;
}

.b2b-service-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 10px;
}

.b2b-service-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.overlay-b2b p {
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 24.6px;
  color: #1E1E1E;
  text-align: left;

}

.b2b-service-description {
  font-size: 1rem;
  color: #f0f0f0;
}

.b2b-services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  margin-bottom: -20px;
  gap: 20px;
}

.b2b-services-grid::-webkit-scrollbar {
  display: none;
}

.b2b-services-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.b2b-service-card {
  flex: 0 0 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.b2b-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.7));
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.b2b-service-card:hover {
  box-shadow: none;
}

.b2b-hd {
  display: flex;
  justify-content: end;
  position: absolute;
  bottom: 22px;
  left: 14px;
}

.b2b-hd h3 {
  color: #ffffff;
}

.b2b-service-card:hover::before {
  opacity: 0.9;
}

.b2b-service-content {
  position: absolute;
  bottom: 75px;
  width: 100%;
  right: 0;
  padding: 0px 20px;
  color: #fff;
  text-align: center;

}

.b2b-service-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 30px;
}

.b2b-service-description {
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.b2b-service-card:hover .b2b-service-description {
  opacity: 1;
  transform: translateY(0);
}


/* process */
.b2b-process {
  padding: 45px 0;
}

.b2b-process-title {
  margin-bottom: 5px;
  /* text-align: center; */
  color: #333;
}

.b2b-process-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.b2b-process-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.b2b-process-image {
  flex: 0 0 40%;
  max-width: 40%;
}

.b2b-process-image img {
  width: 100%;
  height: 10em;
  border-radius: 20px;
  object-fit: cover;
}

.b2b-process-content {
  flex: 1;
  padding-top: 34px;
  border-top: 1px solid #000000;
}

.b2b-process-grid .b2b-process-item:last-child .b2b-process-content {
  border-bottom: 1px solid #000000;
  padding-bottom: 30px;
}

.b2b-process-step {
  font-size: 31px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #1E1E1E;

}

.b2b-process-description {
  font-family: 'Manrope', sans-serif;
  line-height: 37.6px;

}

/* benefits */
.b2b-benefits {
  padding: 20px 0 0px 0px;
  background-color: #ffffff;
}

.b2b-benefits-title {
  margin-bottom: 5px;
  text-align: left;
  color: #333;
}

.b2b-benefits-subtitle {
  margin-bottom: 40px;
}

.b2b-benefits-content {
  display: flex;
  gap: 40px;
}

.b2b-benefits-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.b2b-benefits-image img {
  width: 100%;
  /*height: 50%;*/
  border-radius: 10px;
  object-fit: cover;
}

.b2b-benefits-list {
  flex: 1;
}

.b2b-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.b2b-benefit-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-benefit-icon svg {
  width: 40px;
  height: 40px;
  padding: 0.5em;
}

.b2b-benefit-text h3 {
  font-family: 'Manrope', sans-serif;
  margin-bottom: 5px;
  color: #1E1E1E;
  font-size: 29px;
  font-weight: 600;
  line-height: 41.14px;
  text-align: left;
  text-transform: capitalize;
}




/* client */
.b2b-clients {
  padding: 15px 0;
}

.b2b-clients-title {
  padding-bottom: 5px;
}

.b2b-clients-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 30px;
  padding-bottom: 20px;
}

.b2b-clients-slider::-webkit-scrollbar {
  display: none;
}

.b2b-clients-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.b2b-client-item {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #fff; */
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  scroll-snap-align: center;
  cursor: pointer;
}

.b2b-client-item img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
}

/* faq */
.b2b-faq {
  background-color: #ffffff;
}

.b2b-faq-list {
  /* max-width: 800px; */
  margin: 0 auto;
}

.b2b-faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.b2b-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
}

.b2b-faq-number {
  font-size: 2.2rem;
  /* font-weight: bold; */
  color: #333;
  margin-right: 20px;
}

.b2b-faq-question h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 400;
  flex-grow: 1;
  margin: 0;
}

.b2b-faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.b2b-faq-toggle svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.b2b-faq-item.active .b2b-faq-toggle svg {
  transform: rotate(90deg);
}

.b2b-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.b2b-faq-item.active .b2b-faq-answer {
  max-height: 1000px;
  padding-bottom: 20px;
  overflow-y: auto;
}

.b2b-faq-answer p {
  margin: 0;
  line-height: 1.6;
  margin-left: 4em;
}


/* form section */
.b2b-fragrance-demo {
  padding: 10px 0;
  background-color: #ffffff;
}

.b2b-fragrance-demo-content {
  display: flex;
  gap: 40px;
  padding-top: 70px;
}

.b2b-fragrance-demo-info,
.b2b-fragrance-demo-form {
  line-height: 1.5;
  flex: 1;
}

.b2b-fragrance-demo-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333;
}

.b2b-fragrance-demo-info p {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 400;
  line-height: 48.8px;
  text-align: left;
  color: #1E1E1E;
}

ul.b2b-fragrance-demo-list li div {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
}

.b2b-fragrance-demo-list {
  list-style-type: none;
  padding: 0;
}

.b2b-fragrance-demo-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.b2b-list-number {
  background-color: #F7FF9E;
  color: #333;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.b2b-fragrance-demo-form {
  background-color: #f5f5f5;
  padding: 45px;
  border-radius: 10px;
}

.b2b-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.b2b-fragrance-demo-form input[type="text"],
.b2b-fragrance-demo-form input[type="tel"],
.b2b-fragrance-demo-form input[type="email"],
.b2b-fragrance-demo-form input[type="number"],
.b2b-fragrance-demo-form select,
.b2b-fragrance-demo-form textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #9A9A9A;
}

.b2b-form-radio {
  margin-bottom: 20px;
}

.b2b-form-radio p {
  margin-bottom: 10px;
}

.b2b-form-radio label {
  margin-right: 20px;
}

.b2b-form-upload {
  margin-bottom: 20px;
}

.b2b-btn-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.b2b-form-upload label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #666;
}

.b2b-form-upload svg {
  margin-right: 10px;
}

.b2b-submit-btn {
  background-color: #000;
  color: #fff;
  padding: 15px 50px;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 400;
  line-height: 20.9px;
  cursor: pointer;
  width: auto;
}


/* contact */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5em;
  max-width: 95%;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info {
  flex: 1;
  padding: 0 20px;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  background-color: #f7f7f7;
  padding: 20px;
  min-width: 300px;
  border-radius: 10px;
}

.contact-title {
  font-size: 51px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 500;
  color: black;
  text-transform: capitalize;
}

.contact-description {
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 20px;
}

.contact-details div {
  margin-bottom: 8px;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  gap: 1em;
}

.contact-map {
  width: 100%;
  height: 150px;
  background-color: #e0e0e0;
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid black;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  padding: 20px;
  border-radius: 8px;
}

.contact-input,
.contact-textarea {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.contact-textarea {
  grid-column: span 2;
  resize: vertical;
  min-height: 100px;
  resize: none;
}

.contact-submit {
  background-color: #333;
  color: white;
  border: none;
  padding: 17px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  min-width: 160px;

}

.contact-global {

  background-color: #D3E5D0;
  padding: 60px 20px;
  border-radius: 8px;
  margin: 5rem;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.contact-global-title {
  margin-top: 0;
  text-align: center;
  padding: 0;
  font-weight: 500;
}

.contact-countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin: 2em auto;
  max-width: 30em;
}

.contact-country {
  background-color: white;
  padding: 15px 20px;
  flex-wrap: wrap;
  border-radius: 10px;
  font-size: 14px;
  max-width: 12em;
  display: flex;
  gap: 1em;
}

.contact-country img {
  width: 2em;
}

ul.menu-full-view {
  display: flex;
}

.mega-menu.menu-group {
  width: max-content;
  min-width: 80%;
  left: -877px;
  top: 31px;
  background-color: transparent;
  box-shadow: none;
}

ul.menu-full-view {
  display: flex;
  background-color: #ffffff;
  gap: 15px;
  padding: 30px;
  border-radius: 10px;
  border-radius: 10px;
  width: 85%;
}

.menu-list-name a {
  font-size: 22px;
  font-weight: 600;
  line-height: 30.05px;
  text-align: left;
  color: #000 !important;
  padding: 0px !important;
}

.menu-list-name {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.menu-list-name a:first-child {
  width: 60%;
  display: block;
  line-height: 25px;
  text-transform: capitalize;
}

.menu-list-name img {
  width: 40px;
}

img.round-border {
  border-radius: 10px;
  max-height: 170px;
}

ul.list-items a::after {
  background-color: #ffffff;
}

.mega-menu.first-list li a {
  color: #000000 !important;
}

.mega-menu.first-list li a {
  padding: 15px 25px !important;
}

.mob-none {
  display: block;
}

.des-none {
  display: none;
}

button#close-menu {
  display: none;
}

.mega-menu.first-list a {
  color: #000000;
  padding: 15px 5px;
}

.acco-t {
  display: flex;
  justify-content: space-between;
  width: 50%;
  align-items: center;
}

.b2b-image h1 {
  display: none;
}

.mega-menu.seconds-list {
  width: max-content;
  background-color: transparent;
}

.manufactur-bg ul li p {
  font-weight: 900;
  font-size: 25px;
}

.menu-list-name a {
  font-weight: 600 !important;
}

.explore-text .btn-link {
  text-align: center;
}

.loc-detail p {
  width: 45%;
  text-align: left;
}

.form-gp {
  width: 48%;
  padding-bottom: 28px;
}

.full-group {
  width: 100%;
}

.contact-group-btn {
  text-align: center;
  width: 100%;
  padding: 20px;
}

/* General styling for placeholders */
input::placeholder,
textarea::placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #9A9A9A;

}

input[type="email"]::placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #9A9A9A;
}

input:focus::placeholder {
  color: #aaa;
  opacity: 0.8;
}

.contact-global {
  background-image: url(../images/glob.png);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.mega-menu.catalogue-menu {
  background-color: transparent;
  padding: 10px;
  width: max-content;
  left: -720%;
}

.our-group-img h2 {
  display: none;
}

.d-none {
  display: none;
}

.owl-carousel.owl-theme.owl-client.owl-loaded.owl-drag {
  padding: 30px 0px;
}

.owl-carousel.owl-theme.owl-client.owl-loaded.owl-drag img {
  width: 75%;
}

section.b2b-clients .b2b-container {
  max-width: 100%;
  padding-left: 50px;
}

.contact-info a svg {
  width: 35px;
  height: 25px;
  margin-right: 10px;
}

.contact-details a {
  display: flex;
}

section.b2b-clients {
  display: none;
}

a.detail-container-cta-button:hover {
  background-color: #80ba27;
  color: #ffffff;
}

a.detail-container-secondary-button:hover {
  background-color: #80ba27;
  color: #ffffff;
}

button.view-details-btn:hover {
  background-color: #80ba27;
  color: #ffffff;
}

.btn-link.p-2 {
  padding-top: 35px;
}

.flex-rows img {
  width: 100%;
}

section.b2b-hero.gifting h2.b2b-heading {
  display: block;
}

form#fragranceDemoForm .b2b-form-row div {
  width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

form#careersForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form#careersForm .form-group {
        width: 48%;
}
form#careersForm  .b2b-form-upload {
        width: 100%;
}
.form-group.text-100 {
        width: 100% !important;
}
.b2b-form-checkboxs {
        width: 100%;
        padding-bottom: 30px;
}
ul.content-list li {
        font-size: 17px;
        line-height: 31px;
        list-style-type: disc;
}
.content-list li::marker {
  color: #81bb28;
}
ul.content-list {
        padding-left: 20px;
}
.pb-25
{
          margin-bottom: 45px;
}
textarea#additional-info {
        resize: none;
}
