@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Debata';
  src: url('/fonts/Debata-Regular.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}


html {
  scroll-behavior: smooth;
}

/* .container {
  margin-inline: 100px !important;
} */

html,
body {
  height: 100%;
  margin: 0;
}


.other {
  font-family: 'Debata' !important;
}

.color-theme {
  color: #5c9a71 !important;
}

.text-black {
  color: black !important;
}

.nav-link {
  color: black !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 38px !important;
}

.nav-link:hover {
  color: #5c9a71 !important;
}


#main-header {
  transition: top 0.3s ease, box-shadow 0.3s ease, height 0.3s ease, padding 0.3s ease;
  position: relative;
  z-index: 1030;
  padding: 10px 0 !important;
  background-color: white !important;
  transform: translateY(0);
}

#main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background: linear-gradient(to right, #a9c6b4, #212121, #5c9a71);
}

#main-header.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 6px 0 !important;
  /* animation: slideDown 0.3s ease forwards; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

#main-header.fixed-top::after {
  content: none;
}


/* header-css */



.dropdown-wrapper {
  position: relative;
  display: inline-block;
}


.dropdown-wrapper .dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  margin-top: 10px;
  background-color: #252840;
  /* border-radius: 10px; */
  padding: 0px 0;
  min-width: 220px;
  z-index: 999;
}


.dropdown-wrapper:hover .dropdown-menu {
  display: block;
}


.dropdown-menu .dropdown-item {
  color: #fff !important;
  padding: 8px 26px;
  border-bottom: 1px solid #3a3d56;
  background-color: #07100b !important;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: color 0.3s ease;

}

.dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-menu .icon {
  color: #fff;
  transition: color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  color: #5c9a71 !important;
  background-color: #241a50;
}

.dropdown-menu .dropdown-item:hover .icon {
  color: #7d8087 !important;
}


.overlay-close-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  filter: invert(1);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  z-index: 1100;
}

.fancy-button-sm {
  display: inline-block;
  background: linear-gradient(135deg, #5c9a71, #78b28a);
  color: white;
  padding: 8px 20px !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(92, 154, 113, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fancy-button-sm::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.6s;
}

.fancy-button-sm:hover::after {
  left: 120%;
}

.fancy-button-sm:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(92, 154, 113, 0.5);
}

.fancy-button {
  display: inline-block;
  background: linear-gradient(135deg, #5c9a71, #78b28a);
  color: white;
  padding: 15px 30px !important;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(92, 154, 113, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fancy-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.6s;
}

.fancy-button:hover::after {
  left: 120%;
}

.fancy-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(92, 154, 113, 0.5);
}



.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  padding: 122px 0 122px 0 !important;
}

.hero-title {
  font-size: 56px !important;
}

.float-animate {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 88vh; */
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.overlay-image {
  position: absolute;
  bottom: 0px;
  right: 60px;
  width: 500px;
  height: auto;
  z-index: 2;
  opacity: 0.9;
}


.abt-title {
  font-size: 46px !important;
  font-weight: 700 !important;
}

.fancy-button.btn-md {
  padding: 12px 39px !important;
}

.fancy-button.btn-sm {
  padding: 6px 14px;
}

.fancy-button.btn-lg {
  padding: 14px 28px;
}

.color {
  color: #333a36 !important;
}

.num {
  font-size: 75px !important;
}

.text-color {
  font-size: 15px !important;
  color: #FFFFFFB0 !important;
  line-height: 26px !important;
  font-weight: 700 !important;
}

.w-full-div {
  width: 50% !important;
}


.custom-input::placeholder {
  color: #ffffff !important;
  opacity: 1;
}

.link a {
  transition: color 0.3s ease !important;
}

.link:hover a {
  color: #5c9a71 !important;
}

.link {
  transition: color 0.3s ease !important;
}

.link:hover {
  cursor: pointer !important;
  color: #5c9a71 !important;
}











.card-modern {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  background-color: #fff;
}

.card-modern:hover {
  color: #5c9a71 !important;
}

.card-modern img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.card-modern .card-body {
  text-align: center;
  padding: 15px 15px;
}

.card-modern .product-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.icon-button {
  background-color: #ffffffdd;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
  cursor: pointer;
  margin: 0 auto;
}

.icon-button:hover {
  background-color: #f0f0f0;
}

.icon-button .icon-img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.icon-button:hover .icon-img {
  transform: rotate(-30deg);
}

.product-name {
  font-size: 18px !important;
}




/* .scrolling-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.scroll-content {
  display: flex;
} */

.p-card {
  min-width: 200px;
  margin: 30px 10px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: white;
}

.p-card img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  border: 1px solid #5c9a71 !important;
}

.add-card {
  border-radius: 12px !important;
  background-color: white;
  border: 1px solid #EEEFE0 !important;
}

.add-card:hover {
  border: 1px solid #5c9a71 !important;
}

.add-card:hover .icon-circle {
  background-color: black !important;
}

.add-card:hover .icon-circle .custom-size-icon {
  color: white !important;
}

.custom-size-icon {
  font-size: 30px !important;
  color: #5c9a71 !important;
}


.form-control::placeholder {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
}

.form-control,
.form-control:focus,
textarea.form-control,
textarea.form-control:focus {
  box-shadow: none;
  outline: none;
  min-height: 50px;
  border-color: #ced4da !important;
  transition: border-color 0.3s ease;
}

.form-control:focus,
textarea.form-control:focus {
  border-color: #5c9a71 !important;
}

.custom-textarea {
  padding-top: 1.1rem !important;
}


.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.circle-icon {
  width: 22px;
  height: 22px;
  background-color: #5c9a71;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-right: 10px;
  flex-shrink: 0;
}


.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid silver;
  padding: 12px 0;
}

.icon-list img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.icon-list span {
  font-weight: 500;
  color: #333;
  line-height: 25px;
}



.video-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  /* padding-top: 120px;
  padding-bottom: 120px; */
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}



.video-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 49%,
      rgba(0, 0, 0, 0.4) 70%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}




.product-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  background-color: #cae8bd;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  padding: 20px;
}

.product-image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.2rem;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.btn-read-more {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-read-more:hover {
  background: linear-gradient(to right, #2575fc, #6a11cb);
}

.btn-read-more i {
  margin-left: 8px;
}





























/* Extra CSS */

.hover-box {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: visible;
  margin-bottom: 30px;
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 20px;
  transition: background 0.3s ease;
}

.hover-box:hover {
  /* background-color: #e6eaf0; */
}

.hover-image {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%) scale(1.05);
  width: 500px;
  height: auto;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.hover-box:hover .hover-image {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.hover-info {
  position: absolute;
  left: 270px;
  top: 120%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  width: 300px;
}

.hover-box:hover .hover-info {
  opacity: 1;
  transform: translateY(-50%) translateX(10px);
}

.hover-content {
  z-index: 3;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  position: relative;
}

.hover-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.hover-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.center-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 2px;
  background-color: #555;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 4;
}

.hover-box:hover .center-line {
  width: 60px;
  opacity: 1;
}

.hover-box.default-active .hover-image,
.hover-box.default-active .hover-info,
.hover-box.default-active .center-line {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.hover-box:hover ~ .hover-box.default-active .hover-image,
.hover-box:hover ~ .hover-box.default-active .hover-info,
.hover-box:hover ~ .hover-box.default-active .center-line,
.hover-box:hover .hover-image,
.hover-box:hover .hover-info,
.hover-box:hover .center-line {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}


/* Extra css end */







/* Css for mobile View */

.text-custom{
  color: white !important;
}

@media (max-width: 767.98px) {
  .hero-section .row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-section .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .small-title {
    font-size: 12px !important;
  }

  .hero-title {
    font-size: 30px !important;
  }

  .hero-section p,
  .hero-section h6 {
    max-width: 90%;
  }

  .abt-title {
    font-size: 30px !important;
    font-weight: 700 !important;
  }

  .w-full-div {
    width: 100% !important;
  }

  .hero-section {
    padding: 60px 0 !important;
  }

  .video-wrapper {
    height: 80vh !important;
  }

  .text-custom{
  color: black !important;
}

}



.mobile-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.mobile-nav-content {
  text-align: center;
  width: 100%;
  padding: 2rem;
}

.mobile-nav-links a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  margin: 1rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
  color: #5c9a71;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
}

@media (min-width: 992px) {
  .dropdown-wrapper:hover .custom-dropdown {
    display: block !important;
  }

  .custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
}


#productSubmenu a {
  color: #fff;
  display: block;
  margin: 0.5rem 0;
  font-size: 1rem;
  text-decoration: none;
}

#productSubmenu a:hover {
  color: #5c9a71;
}

.image-wrapper {
  background-color: #cae8bd;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  display: block;
}

.image-wrapper img {
  display: inline-block;
}

.scrolling-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-content {
  display: flex;
  animation: scroll linear infinite;
}

.p-card {
  flex: 0 0 auto;
  padding: 0 1rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.client-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.client-scroll-content {
  display: flex;
  width: max-content;
  animation: client-scroll linear infinite;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.client-track {
  display: flex;
}

.client-card {
  flex: 0 0 auto;
  padding: 10px;
}


