html {
  scroll-behavior: smooth;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none; /* Initially allow interaction if needed, though usually fixed overlay covers all */
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

#preloader:not(.loaded) {
  pointer-events: all;
}

.loader {
  position: relative;
  width: 180px;
  height: 180px;
}

.loader-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  width: 90px;
  height: auto;
  z-index: 2;
  animation: pulseLogo 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(3, 101, 46, 0.2));
}

.loader-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 4px solid rgba(3, 101, 46, 0.1);
  border-top-color: #03652e;
  border-bottom-color: #dbee35;
  border-radius: 50%;
  animation: spinCircle 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  z-index: 1;
}

@keyframes spinCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.92); }
}

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  color: #121212;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, .navbar-brand {
  font-family: "Poppins", sans-serif;
}

.section-padding {
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .section-padding {
    padding: 30px 0;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #03652e;
}
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: #dbee35;
  margin: 0 auto;
}

.text-secondary {
  color: #dbee35 !important;
}

.text-primary {
  color: #03652e !important;
}

.max-width-700 {
  max-width: 700px;
}

/* Navigation */
.navbar {
  padding: 12px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: transparent;
}
.navbar.navbar-scrolled {
  background-color: #ffffff;
  padding: 3px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar.navbar-scrolled .nav-link {
  color: #03652e !important;
}
.navbar.navbar-scrolled .brand-text {
  color: #03652e;
}

.navbar.navbar-scrolled .nav-cta .btn-primary-elite:hover {
  background-color: #dbee35;
  color: #03652e;
}
.navbar {
  /* Mobile Responsive Header */
}
@media (max-width: 991.98px) {
  .navbar {
    background-color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
  }
  .navbar .nav-link {
    color: #03652e !important;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .navbar .brand-text {
    color: #03652e;
  }
  .navbar .navbar-toggler {
    border-color: rgba(3, 101, 46, 0.2);
  }
  .navbar .navbar-toggler-icon {
    filter: brightness(0.2);
  }
  .navbar .nav-cta {
    margin-top: 15px;
  }
}

.navbar-brand .brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}
.navbar-brand .brand-text span {
  color: #dbee35;
}

.navbar-scrolled .navbar-brand img {
  height: 60px;
  width: auto;
}

.navbar-brand img {
  height: 80px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}
.nav-link.active, .nav-link:hover {
  color: #dbee35 !important;
}

.btn-primary-elite {
  padding: 12px 28px;
  border-radius: 30px;
  background-color: #03652e;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-elite:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(3, 101, 46, 0.3);
  color: #ffffff;
}

.btn-secondary-elite {
  padding: 12px 28px;
  border-radius: 30px;
  background-color: #dbee35;
  color: #03652e;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-elite:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(219, 238, 53, 0.3);
  color: #03652e;
}
.btn-secondary-elite:hover {
  background: white;
}

.btn-outline-light-elite {
  padding: 12px 28px;
  border-radius: 30px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-light-elite:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
.btn-outline-light-elite {
  border: 2px solid #ffffff;
}

/* Hero Section */
.hero-slider {
  height: 100vh;
  width: 100%;
}

.heroSwiper {
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s linear;
}
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.swiper-slide-active .hero-image {
  transform: scale(1);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 750px;
  color: #ffffff;
}
.hero-content .hero-tag {
  display: inline-block;
  padding: 5px 20px;
  background-color: rgba(219, 238, 53, 0.9);
  color: #03652e;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1, .hero-content h2 {
  margin-bottom: 25px;
  line-height: 1.1;
}

/* Swiper Controls Customization */
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ffffff !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #dbee35 !important;
  scale: 1.2;
}

.swiper-button-next, .swiper-button-prev {
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
}

/* Promise Cards */
.promise-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}
.promise-card:hover {
  transform: translateY(-10px);
}
.promise-card:hover .promise-icon {
  background-color: #03652e;
  color: #ffffff;
}

.promise-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: rgba(3, 101, 46, 0.1);
  color: #03652e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.promise-card h4 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.4rem;
}

/* Service Box */
.service-box {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-box:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-box:hover .service-image {
  transform: scale(1.05);
}

.service-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.service-details {
  padding: 30px;
}
.service-details h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #03652e;
}
.service-details p {
  color: #6c757d;
  margin-bottom: 20px;
}

/* Testimonial Section */
.testimonial-section {
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.testimonial-section .container {
  position: relative;
  z-index: 10;
}

.italic {
  font-style: italic;
}

/* Final CTA */
.final-cta {
  background-color: whitesmoke;
  background-image: radial-gradient(circle at 20% 150%, rgba(3, 101, 46, 0.05) 0%, transparent 50%);
}

/* Blog Cards */
.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-card:hover {
  transform: translateY(-10px);
}
.blog-card:hover .blog-image {
  transform: scale(1.05);
}
.blog-card:hover .blog-title a {
  color: #03652e;
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}
.blog-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #dbee35;
  color: #03652e;
  padding: 2px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
}

.blog-body {
  padding: 25px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-title a {
  color: #121212;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: #03652e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.read-more i {
  transition: transform 0.3s;
}
.read-more:hover i {
  transform: translateX(5px);
}

/* Fixed Back to Top */
.fixed-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #03652e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fixed-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.fixed-back-to-top:hover {
  background-color: #dbee35;
  color: #03652e;
  transform: translateY(-5px);
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  z-index: 10;
  margin-bottom: -100px;
  padding-top: 50px;
}

.newsletter-card {
  background-color: #03652e;
  background-image: linear-gradient(135deg, #03652e 0%, rgb(1.5288461538, 51.4711538462, 23.4423076923) 100%);
  padding: 60px;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991.98px) {
  .newsletter-card {
    padding: 40px;
  }
}

.newsletter-form .input-group {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: #ffffff;
  padding-left: 25px;
}
.newsletter-form .form-control:focus {
  box-shadow: none;
}
.newsletter-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 12px 35px;
}

/* Footer Improvements */
.footer {
  background-color: #0b0b0b;
  padding-top: 100px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #dbee35;
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-links li a:hover {
  color: #dbee35;
  gap: 8px;
}
.footer-links li a:hover::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-links a:hover {
  transform: translateY(-5px) rotate(8deg);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.social-links a:hover.facebook {
  background: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}
.social-links a:hover.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
}
.social-links a:hover.whatsapp {
  background: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.contact-card .contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  color: #dbee35;
  font-size: 1.1rem;
}

.contact-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  background-color: #050505;
}

/* Fixed Back to Top */
.fixed-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #03652e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.fixed-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fixed-back-to-top:hover {
  background-color: #dbee35;
  color: #03652e;
  transform: translateY(-5px);
}

.final-cta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 150px 0;
}

/* B2B Page */
.b2b-hero {
  height: 60vh;
  background-image: linear-gradient(rgba(3, 101, 46, 0.96), rgba(3, 101, 46, 0.8)), url("https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  color: #ffffff;
}

.b2b-vignette {
  border-left: 8px solid #dbee35;
}

.advantage-box-elite {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.advantage-box-elite:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #03652e;
}

.b2b-sample-card {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.b2b-sample-card img {
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b2b-sample-card:hover {
  transform: scale(1.03);
}

.margin-table-wrapper table {
  font-size: 0.95rem;
}
.margin-table-wrapper .table-borderless tbody tr {
  border-bottom: 1px solid #f8f8f8;
}

/* Contact Page */
.contact-hero {
  height: 50vh;
  background-image: linear-gradient(rgba(3, 101, 46, 0.94), rgba(3, 101, 46, 0.88)), url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  color: #ffffff;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact-info-card .info-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-control, .contact-form-wrapper .form-select {
  border: 2px solid #f0f0f0;
  padding: 12px 15px;
  border-radius: 10px;
}
.contact-form-wrapper .form-control:focus, .contact-form-wrapper .form-select:focus {
  border-color: #03652e;
  box-shadow: none;
}

.area-tag-wrapper .badge {
  border: 1px solid rgba(3, 101, 46, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Legal Pages */
.legal-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.9)), url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
}

.legal-document {
  line-height: 1.8;
  color: #444;
}
.legal-document h2 {
  color: #03652e;
  font-weight: 700;
  margin-top: 2.5rem;
}

/* About Page & Identity */
.about-hero {
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  color: #ffffff;
}

.about-image-stack {
  position: relative;
  padding: 30px;
}
.about-image-stack .main-img {
  z-index: 1;
  position: relative;
  width: 100%;
  border: 8px solid #ffffff;
  transition: transform 0.5s;
}
.about-image-stack .overlay-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  z-index: 2;
  border: 8px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}
.about-image-stack:hover .main-img {
  transform: scale(1.02);
}
.about-image-stack:hover .overlay-img {
  transform: scale(1.1) rotate(-5deg);
}

.structure-card {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.structure-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.structure-card .card-icon {
  font-size: 3rem;
  color: #03652e;
  margin-bottom: 25px;
}

.bg-primary-soft {
  background-color: rgba(3, 101, 46, 0.1);
}

.bg-secondary-soft {
  background-color: rgba(219, 238, 53, 0.2);
}

.why-feature {
  padding: 30px;
}
.why-feature .feature-icon {
  font-size: 2.5rem;
  color: #03652e;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.why-feature:hover .feature-icon {
  color: #dbee35;
  transform: scale(1.1);
}
.why-feature h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.commitment-section {
  background-image: linear-gradient(rgba(3, 101, 46, 0.9), rgba(3, 101, 46, 0.9)), url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.mart-final-cta {
  padding: 120px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Farm Milk Page */
.milk-hero {
  height: 70vh;
  background-image: linear-gradient(rgba(3, 101, 46, 0.9), rgba(3, 101, 46, 0.4)), url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  color: #ffffff;
}

.milk-hero-img-wrapper {
  position: relative;
}
.milk-hero-img-wrapper .floating-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #dbee35;
  color: #03652e;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
}
.milk-hero-img-wrapper .floating-badge span {
  font-size: 1.5rem;
}

.milk-benefit-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.milk-benefit-card .mb-icon {
  font-size: 2.5rem;
  color: #03652e;
  margin-bottom: 20px;
}
.milk-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.delivery-time-card {
  background: linear-gradient(135deg, #03652e 0%, rgb(1.5288461538, 51.4711538462, 23.4423076923) 100%);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(3, 101, 46, 0.4);
}
.delivery-time-card .time-ring {
  width: 150px;
  height: 150px;
  border: 4px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.milk-cta-final {
  overflow: hidden;
}
.milk-cta-final .cta-banner {
  background-color: #ffffff;
  border-left: 10px solid #dbee35;
}
.milk-cta-final .cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(219, 238, 53, 0.05) 0%, transparent 70%);
  z-index: 0;
}

/* Elite Mart Page */
.mart-hero {
  height: 70vh;
  background-image: linear-gradient(rgba(3, 101, 46, 0.8), rgba(3, 101, 46, 0.4)), url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  color: #ffffff;
}

.category-card {
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.category-card .category-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.category-card .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}
.category-card .category-overlay h3 {
  font-weight: 700;
  margin-bottom: 15px;
}
.category-card .category-overlay .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}
.category-card:hover .category-img {
  transform: scale(1.1);
}
.category-card:hover .category-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

.mart-feature-box {
  text-align: center;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mart-feature-box .feature-icon-circle {
  width: 70px;
  height: 70px;
  background-color: rgba(3, 101, 46, 0.1);
  color: #03652e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
}
.mart-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-sq {
  width: 50px;
  height: 50px;
  background-color: #dbee35;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #03652e;
  font-size: 1.2rem;
}

.service-vignette {
  box-shadow: 0 30px 60px rgba(3, 101, 46, 0.3);
}

/* Accordion Styling */
.accordion-button:not(.collapsed) {
  background-color: rgba(3, 101, 46, 0.05);
  color: #03652e;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Scroll Animations */
[data-aos] {
  pointer-events: none;
}

.aos-animate {
  pointer-events: auto;
}/*# sourceMappingURL=style.css.map */