:root {
  --herbal-dark: #326932;
  --herbal-light: #3eaf50;
  --herbal-white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Loader */
.loader-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 9999;
  transition: opacity 0.5s;
}

.loader-logo {
  width: 150px;
  height: 150px;
  position: relative;
}

.loader-circle {
  position: absolute;
  inset: 0;
  border: 4px solid;
  border-color: var(--herbal-light) var(--herbal-dark) var(--herbal-light)
    var(--herbal-dark);
  border-radius: 50%;
  animation: rotate-loader 1.5s infinite linear;
}

.loader-logo img {
  height: 100px;
  width: 100px;
  display: flex;
  object-fit: contain;
  margin: 20px auto;
}

@keyframes rotate-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand img {
  height: 50px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 40px;
}

.nav-link {
  position: relative;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin: 0 0.75rem;
}

.nav-link:hover {
  color: var(--herbal-dark);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--herbal-light);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.active-nav-link {
  color: var(--herbal-dark);
}

.active-nav-link::after {
  transform: scaleX(1);
}

/* Buttons */
.herbal-btn {
  background-color: var(--herbal-light);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.herbal-btn:hover {
  background-color: var(--herbal-dark);
  box-shadow: 0 4px 12px rgba(62, 175, 80, 0.3);
  color: white;
  transform: translateY(-2px);
}

.herbal-btn:focus {
  outline: none;
}

.herbal-btn-outline {
  background-color: transparent;
  color: var(--herbal-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--herbal-light);
  cursor: pointer;
}

.herbal-btn-outline:hover {
  background-color: var(--herbal-light);
  color: white;
  box-shadow: 0 4px 12px rgba(62, 175, 80, 0.3);
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 90vh;
  padding-top: 200px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section styling */
section {
  padding: 5rem 0;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  width: 80px;
  height: 3px;
  background-color: var(--herbal-light);
}

.section-center .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-center {
  text-align: center;
}

/* About Section */
.about-img-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.about-img-primary {
  width: 100%;
  border-radius: 0.5rem;
}

.about-img-secondary {
  position: absolute;
  width: 50%;
  bottom: -30px;
  left: -30px;
  border-radius: 0.5rem;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Moving Herbal Background */
.herbal-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.15;
}

.herbal-bg-img {
  position: absolute;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  filter: sepia(30%) hue-rotate(60deg);
  animation: float 25s linear infinite;
}

.herbal-bg-img:nth-child(1) {
  top: 1%;
  left: 1%;
  animation-delay: 0s;
  animation-duration: 30s;
}

.herbal-bg-img:nth-child(2) {
  bottom: 2%;
  left: 1%;
  animation-delay: 1s;
  animation-duration: 35s;
}

.herbal-bg-img:nth-child(3) {
  top: 3%;
  right: 1%;
  animation-delay: 2s;
  animation-duration: 40s;
}

.herbal-bg-img:nth-child(4) {
  bottom: 1%;
  right: 8%;
  animation-delay: 3s;
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(10deg);
  }
  25% {
    transform: translate(10px, 10px) rotate(12deg);
  }
  50% {
    transform: translate(10px, 0) rotate(14deg);
  }
  75% {
    transform: translate(10px, -10px) rotate(15deg);
  }
  100% {
    transform: translate(0, 0) rotate(16deg);
  }
}

/* Ensure content stays above background */
#about > .container {
  position: relative;
  z-index: 1;
}

/* About Section Images */
.about-img-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.about-img-primary {
  width: 100%;
  border-radius: 0.5rem;
}

.about-img-secondary {
  position: absolute;
  width: 50%;
  bottom: -30px;
  left: -30px;
  border-radius: 0.5rem;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Counter Section */
.counter-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(rgba(50, 105, 50, 0.85), rgba(62, 175, 80, 0.9)),
    url("https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.counter-card {
  /* background-color: white; */
  padding: 1.5rem;
  border-radius: 0.5rem;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  text-align: center;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.counter-text {
  color: #20c997;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* height: 100%; */
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(168, 216, 170, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--herbal-light);
}

.why-choose-img-wrapper {
  position: relative;
}

.why-choose-img-wrapper img {
  width: 100%;
  height: 480px;
  margin-top: -32px;
  object-fit: cover;
}

.why-choose-img-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -15px;
  right: -15px;
  border: 2px solid var(--herbal-light);
  border-radius: 12px;
  z-index: -1;
}

@media (max-width: 992px) {
  .why-choose-img-wrapper {
    margin-top: 3rem;
  }
}

/* Career Section */
.career-section {
  background: url("https://images.unsplash.com/photo-1649972904349-6e44c42644a7?auto=format&fit=crop&w=600&q=80")
    center center;
  background-size: cover;
  padding: 5rem 0;
  position: relative;
}

.career-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.career-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.career-list {
  margin-bottom: 2rem;
}

.career-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.career-dot {
  width: 8px;
  height: 8px;
  background-color: var(--herbal-light);
  border-radius: 50%;
  margin-right: 1rem;
}

/* Testimonial Section */
.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  color: var(--herbal-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--herbal-dark);
  margin: 0;
}

.testimonial-position {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* Blog & Gallery */
.blog-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.blog-category {
  color: var(--herbal-light);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-date {
  color: #777;
  font-size: 0.875rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50, 105, 50, 0.8), transparent);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Footer */
footer {
  background-color: #1c1c1c;
  color: #ccc;
  padding: 4rem 0 0 0;
}

.footer-heading {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--herbal-light);
}

.footer-link {
  color: #ccc;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  display: block;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--herbal-light);
  margin-right: 1rem;
  font-size: 1.25rem;
  min-width: 20px;
}

.footer-social {
  display: flex;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--herbal-light);
  transform: translateY(-5px);
  color: white;
}

.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 1.5rem 0;
  /* margin-top: 3rem; */
}

/* Book Now Form Modal */
.modal-content {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 1.5rem;
}

.modal-title {
  color: var(--herbal-dark);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 1.5rem;
}

.form-label {
  color: #555;
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--herbal-light);
  box-shadow: 0 0 0 0.25rem rgba(62, 175, 80, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .about-img-secondary {
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .about-img-secondary {
    width: 40%;
    bottom: -15px;
    right: -15px;
  }
}

/* Swiper custom styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--herbal-light);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background-color: #276b2b;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
  color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--herbal-light);
}

/* Product slider custom arrows */
.product-slider-controls {
  text-align: center;
  margin-top: 2rem;
}

.product-slider-button-prev,
.product-slider-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--herbal-light);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-slider-button-prev:hover,
.product-slider-button-next:hover {
  background-color: var(--herbal-dark);
  transform: translateY(-2px);
}

.my-singl {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#products {
  background-image: url("../images/pro-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95); /* White with 85% opacity */
  z-index: 0;
}

#products .container {
  position: relative;
  z-index: 1; /* Ensures content stays above the overlay */
}

/* Background pattern with gap and grayscale */
.testimonial-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/nature.png");
  background-size: 30px 30px;
  background-position: 1px 1px;
  background-repeat: repeat;
  /* filter: grayscale(100%); */
  opacity: 0.1;
  z-index: 0;
}

#testimonials {
  position: relative;
  /* padding: 5rem 0; */
  background-color: #f8f9fa; /* Fallback color */
}

#testimonials .container {
  position: relative;
  z-index: 1;
}

.section-heading img {
  height: 60px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 15px;
}

.nature-icon {
  display: inline-block;
  width: 40px; /* Adjust based on your image size */
  height: 40px;
}

.left-icon {
  animation: waveLeft 3s ease-in-out infinite alternate;
}

.right-icon {
  animation: waveRight 3s ease-in-out infinite alternate;
  animation-delay: 0.5s; /* Staggered animation */
}

@keyframes waveLeft {
  0%,
  100% {
    transform: rotate(-5deg) translateX(0);
  }
  50% {
    transform: rotate(5deg) translateX(-5px);
  }
}

@keyframes waveRight {
  0%,
  100% {
    transform: rotate(5deg) translateX(0);
  }
  50% {
    transform: rotate(-5deg) translateX(5px);
  }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.zoom-icon {
  color: white;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1.1);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.footer-logo img {
  height: 45px;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.products-section .row,
.products-section .col-lg-4,
.products-section .col-md-6,
.products-section .col-sm-12 {
  padding: 0;
  margin: 0;
}

.products-section .product-hover-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.products-section .product-hover-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* .products-section .product-hover-card:hover img {
  transform: scale(1.1);
} */

.products-section .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.4s ease;
  text-align: center;
}

.products-section .product-hover-card:hover .hover-content {
  opacity: 1;
}

.products-section .hover-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.products-section .hover-content p {
  font-size: 1rem;
  margin: 0;
}

.product-container {
  max-width: 100% !important;
  padding: 0 !important;
}

.my-products-sec {
  padding: 0px 0 0;
  /* background: #f9f9f9; */
}

.my-products-sec__image {
  padding: 20px;
  text-align: center;
  padding: 0px 30px 30px;
}

.my-products-sec__image {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  display: flex;
}

.my-products-sec__image::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 30%;

  border: 4px solid #0f7906; /* Customize color & thickness */
  /* border-left: 4px solid #000; */
  width: 20%;
  height: 20%;

  height: 350px;
  width: 350px;
  z-index: -1;
}

.my-products-sec__image img {
  display: block;
  width: 100%;
  height: auto;
  height: 350px;
  object-fit: cover;
  width: 350px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 0;
}

.my-products-sec__content {
  padding: 30px;
}

.my-products-sec__title {
  color: #2a7221;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.my-products-sec__desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.my-products-sec__readmore {
  display: inline-block;
  padding: 10px 25px;
  background: #2a7221;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.my-products-sec__readmore:hover {
  background: #1a5211;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.my-products-sec__nav {
  color: #2a7221 !important;
}

.my-products-sec__pagination .swiper-pagination-bullet {
  background: #2a7221;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.my-products-sec__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 85%);
  right: auto;
  top: 90%;
}

.swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 90%);
  right: auto;
  top: 90%;
}

@media (max-width: 991.98px) {
  .my-products-sec__content {
    padding: 20px 0;
    text-align: center;
  }

  .my-products-sec__image {
    padding-bottom: 0;
  }
}

.clients-section img {
  max-width: 150px;
  opacity: 0.7;
  display: flex;
  height: 70px;
  align-items: center;
  margin: 0 auto;
  object-fit: contain;
  transition: var(--transition);
}

.clients-section p {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.clients-section h2 {
  margin-bottom: 50px;
}

.clients-section p:last-child {
  margin-top: 50px;
  margin-bottom: 0;
}

.clients-section img:hover {
  opacity: 1;
}

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

:root {
  --t: 6.5s; /* Animation duration for one slide */
  --e1: cubic-bezier(0.8, 0, 0.1, 1);
  --e2: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --er: linear;
  --color: #ffffff00;
  --font: "Arial", sans-serif;
  --slides: 4; /* Number of slides */
}

.my-hero-section {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.my-hero-section__untitled {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.my-hero-section__shutters {
  position: absolute;
  height: 150vmax;
  width: 150vmax;
  left: calc(50% - 75vmax);
  top: calc(50% - 75vmax);
  pointer-events: none;
  z-index: 2;
  animation: rotateFrame calc(var(--t) * 1) var(--er) infinite;
}

@keyframes rotateFrame {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.my-hero-section__shutters::before,
.my-hero-section__shutters::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-color: white;
  pointer-events: auto;
}

.my-hero-section__shutters::before {
  bottom: 50%;
  animation: openTop calc(var(--t) * 1) infinite;
}

@keyframes openTop {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }
  30%,
  70% {
    transform: translate3d(-50%, -65vmax, 0);
  }
}

.my-hero-section__shutters::after {
  top: 50%;
  animation: openBottom calc(var(--t) * 1) infinite;
}

@keyframes openBottom {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }
  30%,
  70% {
    transform: translate3d(-50%, 65vmax, 0);
  }
}

.my-hero-section__slides {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}

.my-hero-section__slide {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  animation: showHideSlide calc(var(--t) * var(--slides)) infinite;
}

@keyframes showHideSlide {
  0% {
    opacity: 1;
    z-index: 1;
  }
  24% {
    opacity: 1;
    z-index: 1;
  }
  25% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}

.my-hero-section__slide:nth-child(1) {
  animation-delay: calc(var(--t) * 0);
}
.my-hero-section__slide:nth-child(2) {
  animation-delay: calc(var(--t) * 1);
}
.my-hero-section__slide:nth-child(3) {
  animation-delay: calc(var(--t) * 2);
}
.my-hero-section__slide:nth-child(4) {
  animation-delay: calc(var(--t) * 3);
}

.my-hero-section__slideImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  min-height: 100vh;
  min-width: 100vw;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--color);
  background-blend-mode: hard-light;
  z-index: -1;
}

.my-hero-section__slideContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: var(--font);
  letter-spacing: -0.025em;
  z-index: 2;
  opacity: 1;
  text-shadow: 2px 2px 2.5em rgba(0, 0, 0, 0.5);
  background: #0000005c;
  padding: 20px;
  text-align: center;
}

.my-hero-section__slideContent span {
  display: block;
  font-size: 8vmin;
}

.my-hero-section__sub-header {
  font-size: 18px !important;
  padding-top: 20px;
}

.my-hero-section__button {
  font-family: var(--font);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2vmin;
  display: inline-block;
  position: relative;
  border: 3px solid white;
  box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
  background: transparent;
  margin-top: 5vmin;
  mix-blend-mode: hard-light;
  color: white;
  padding: 2vmin 2vmin 1.8vmin 2vmin;
  letter-spacing: 0.1em;
  text-shadow: none;
  line-height: 1;
  transform: translate3d(0.5vmin, -0.5vmin, 0);
  transition: all 100ms linear;
}

.my-hero-section__button:hover {
  transform: translate3d(1vmin, -1vmin, 0);
  box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
  background: black;
  color: white;
}

.my-hero-section__button:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

.breadcum {
  position: relative;
  height: 250px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.breadcum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Black overlay */
}

.breadcum .content {
  position: relative;
  z-index: 1;
}

.breadcum h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcum p {
  font-size: 1.1rem;
}

.breadcum p a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcum p a:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcum {
    height: 200px;
  }

  .breadcum h1 {
    font-size: 2rem;
  }

  .breadcum p {
    font-size: 1rem;
  }
}

:root {
  --herbal-dark: #326932;
  --herbal-light: #3eaf50;
  --herbal-white: #ffffff;
  --herbal-bg: #f8faf7;
  --herbal-accent: #e8f5e9;
}

/* Base Styles */
.my-mis-vis-val-section {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;

  margin: 0 auto;

  background-color: var(--herbal-bg);
  position: relative;
  overflow: hidden;
}

.my-mis-vis-val-section::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(62, 175, 80, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

/* Header Styles */
.my-mis-vis-val-section .section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.my-mis-vis-val-section .section-header h2 {
  color: var(--herbal-dark);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.my-mis-vis-val-section .section-header h2 span {
  position: relative;
}

.my-mis-vis-val-section .section-header h2 span::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 12px;
  background-color: rgba(62, 175, 80, 0.3);
  bottom: 8px;
  left: -5%;
  z-index: -1;
  border-radius: 3px;
}

.my-mis-vis-val-section .section-header p {
  color: #5a6d5a;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Cards Container */
.my-mis-vis-val-section .cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Individual Card */
.my-mis-vis-val-section .card {
  flex: 1 1 340px;
  max-width: 380px;
  background-color: var(--herbal-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(50, 105, 50, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  border: 1px solid rgba(50, 105, 50, 0.1);
}

.my-mis-vis-val-section .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(50, 105, 50, 0.15);
}

/* Card Decoration Elements */
.my-mis-vis-val-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--herbal-light), var(--herbal-dark));
}

.my-mis-vis-val-section .card::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(62, 175, 80, 0.03),
    rgba(50, 105, 50, 0.1)
  );
  z-index: -1;
  transition: bottom 0.4s ease;
}

.my-mis-vis-val-section .card:hover::after {
  bottom: 0;
}

/* Card Image */
.my-mis-vis-val-section .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.my-mis-vis-val-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.my-mis-vis-val-section .card:hover .card-image img {
  transform: scale(1.08);
}

.my-mis-vis-val-section .card-image .icon-container {
  position: absolute;
  bottom: -60px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--herbal-light), var(--herbal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(50, 105, 50, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.my-mis-vis-val-section .card:hover .card-image .icon-container {
  transform: translateY(-70px) scale(1.1);
}

.my-mis-vis-val-section .card-image .icon-container i {
  color: white;
  font-size: 1.5rem;
}

/* Card Content */
.my-mis-vis-val-section .card-content {
  padding: 15px;
  position: relative;
}

.my-mis-vis-val-section .card-content h3 {
  color: var(--herbal-dark);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 7px;
}

.my-mis-vis-val-section .card-content h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--herbal-light), var(--herbal-dark));
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

.my-mis-vis-val-section .card-content p {
  color: #5a6d5a;
  line-height: 1.8;
  /* margin-bottom: 25px; */
  font-size: 1.05rem;
}

/* Values List */
.my-mis-vis-val-section .values-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.my-mis-vis-val-section .values-list li {
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  color: #5a6d5a;
  line-height: 1.6;
}

.my-mis-vis-val-section .values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background-color: var(--herbal-light);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--herbal-light);
  border-radius: 50%;
  background-color: rgba(62, 175, 80, 0.15);
}

.my-mis-vis-val-section .values-list li strong {
  color: var(--herbal-dark);
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .my-mis-vis-val-section {
    padding: 60px 30px;
  }

  .my-mis-vis-val-section .section-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .my-mis-vis-val-section {
    padding: 50px 20px;
  }

  .my-mis-vis-val-section .section-header h2 {
    font-size: 2rem;
  }

  .my-mis-vis-val-section .section-header p {
    font-size: 1rem;
  }

  .my-mis-vis-val-section .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.blog-view-inn {
  background-color: var(--white);
}

.blog-view-inn h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.blog-view-inn .main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-view-inn .content {
  color: #333;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.blog-view-inn ul {
  margin-bottom: 30px;
  padding-left: 25px;
}

.blog-view-inn ul li {
  color: #333;
  margin-bottom: 12px;
  font-size: 1rem;
}

.blog-view-inn .image-row img {
  width: 100%;
  height: auto;
  height: 315px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-blogs {
  position: sticky;
  top: 100px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #3eaf50;
}

.related-blogs h2 {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 25px;
}

.related-blog-card {
  background-color: #bec2ce29;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}


.related-blogs .a{
  color:black !important;
}

.related-blog-card:hover {
  transform: translateY(-5px);
}

.related-blog-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.related-blog-card .related-content {
  flex: 1;
}

.related-blog-card h3 {
  font-size: 1.1rem;
  color: black !important;
  margin-bottom: 8px;
}

.related-blog-card p {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991px) {
  .related-blogs {
    position: static;
  }

  .related-blog-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-blog-card img {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.contact-inn {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-inn .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.contact-inn .section-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--herbal-dark);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.contact-inn .section-header h1:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--herbal-gold);
  border-radius: 2px;
}

.contact-inn .section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.contact-inn .contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.contact-inn .contact-card {
  background: var(--herbal-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-inn .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-inn .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--herbal-dark), var(--herbal-light));
}

.contact-inn .contact-info {
  padding: 40px;
}

.contact-inn .contact-info h2 {
  color: var(--herbal-dark);
  margin-bottom: 30px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 15px;
}

.contact-inn .contact-info h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--herbal-gold);
}

.contact-inn .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-inn .info-icon {
  background: linear-gradient(135deg, var(--herbal-light), var(--herbal-dark));
  color: var(--herbal-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(62, 175, 80, 0.3);
}

.contact-inn .info-content h3 {
  margin-bottom: 8px;
  color: var(--herbal-dark);
  font-size: 1.1rem;
}

.contact-inn .info-content p,
.contact-inn .info-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-inn .info-content a:hover {
  color: var(--herbal-light);
}

.contact-inn .contact-form {
  padding: 40px;
  position: relative;
}

.contact-inn .contact-form h2 {
  color: var(--herbal-dark);
  margin-bottom: 30px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 15px;
}

.contact-inn .contact-form h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--herbal-gold);
}

.contact-inn .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-inn .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--herbal-dark);
  font-weight: 500;
}

.contact-inn .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.contact-inn .form-control:focus {
  outline: none;
  border-color: var(--herbal-light);
  box-shadow: 0 0 0 3px rgba(62, 175, 80, 0.2);
  background-color: var(--herbal-white);
}

.contact-inn textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.contact-inn .submit-btn {
  background: linear-gradient(135deg, var(--herbal-light), var(--herbal-dark));
  color: var(--herbal-white);
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(62, 175, 80, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.contact-inn .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(62, 175, 80, 0.4);
}

.contact-inn .submit-btn i {
  transition: transform 0.3s ease;
}

.contact-inn .submit-btn:hover i {
  transform: translateX(5px);
}

.contact-inn .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  height: 500px;
  position: relative;
}

.contact-inn .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* .contact-inn .map-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(50, 105, 50, 0.1), rgba(62, 175, 80, 0.1));
     pointer-events: none;
   } */

@media (max-width: 992px) {
  .contact-inn .section-header h1 {
    font-size: 2.5rem;
  }

  .contact-inn .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-inn .section-header h1 {
    font-size: 2rem;
  }

  .contact-inn .section-header p {
    font-size: 1rem;
  }

  .contact-inn .contact-info,
  .contact-inn .contact-form {
    padding: 30px;
  }
}
.product-inn {
  position: relative;
  overflow: hidden;
  margin: 10px;
}

.product-inno {
  position: relative;
  overflow: visible;
}
.product-inn img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-inn:hover img {
  transform: scale(1.1);
}
.product-inn .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.product-inno::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background-color: rgb(3, 158, 32);
  z-index: 2;
}
.product-inn .image-heading {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.products-view a h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-decoration: none;
  margin: 30px 0;
}

.products-view a h3:hover {
  color: #0f7906;
}
a {
  text-decoration: none;
}

.product-table {
  width: 100%;
  /* overflow-x: auto; */
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.product-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.product-table th,
.product-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}

.product-table td:nth-child(2) {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  font-style: italic;
}

.product-table th {
  background-color: #f2f2f2;
}

.product-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.product-table tr:hover {
  background-color: #f1f1f1;
}

@media screen and (max-width: 600px) {
  .product-table table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.products-table h3 {
  text-align: center;
}

.products-table p {
  text-align: center;
}

.product-view-inn {
  text-align: center;
}

.vertical-line {
  height: 100%;
  width: 2px;

  margin: 0 auto;
  background-color: #838383;
}

.pro-inn-con {
  display: flex;
  justify-content: space-between;
}

.pro-inn-con {
  text-align: left;
}

.benefits-uses {
  background-color: #f5f5f5;
  width: 1000px;
  padding: 40px;

  margin: 0 auto;
  margin-top: 80px;
}

.con-left {
  width: 48%;
}
.con-right {
  width: 48%;
}

.con-center {
  width: 2%;
}

.benefits-uses ul li {
  padding-bottom: 20px;
}

.product-view-inn h3 {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 600;
}

.product-specifications {
  width: 100%;
  overflow-x: auto;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.product-specifications table {
  width: 100%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  border-collapse: collapse;
}

.product-specifications th,
.product-specifications td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}

.product-specifications th {
  background-color: #f9f9f9;
  font-weight: bold;
}

.product-specifications tr:nth-child(odd) {
  background-color: #f2f2f2;
}

/* .product-specifications tr:hover {
  background-color: #f5f5f5;
} */

/* Responsive Design */
@media screen and (max-width: 600px) {
  .product-specifications table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-specifications th,
  .product-specifications td {
    min-width: 150px;
  }
}












.enquiry-form {
  background-color: #016706;
  color: #fff;
  /* padding: 70px; */
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.enquiry-form h2 {
  font-size: 2em;
  margin-bottom: 70px;
}

.enquiry-form  .form-group {
  position: relative;
  margin-bottom: 50px;
}

.enquiry-form .form-control {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1em;
  outline: none;
  width: 100%;
}

 .enquiry-form .form-group label {
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 10px;
  transition: 0.3s;
  color: #fff;
  font-size: 1em;
}

.form-group .form-control:focus ~ label,
.form-group .form-control:valid ~ label {
  top: -25px;
  font-size: 0.8em;
  color: #ccc;
}

.form-group .form-control:focus,
.form-group .form-control:valid {
  border-bottom-color: #ccc;
}

.btn-primary {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
}

.btn-primary:hover {
  background-color: #04ac20;
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}