:root {
  --primary-color: #316b00;
  --primary-light: #25b516;
  --primary-dark: #198f0e;
  --secondary-color: #2b4eff;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --success-gradient: linear-gradient(45deg, #326b00, #2a5c00);
  --primary-gradient: linear-gradient(45deg, #1f9612, #25b516);
  --dark-gradient: linear-gradient(45deg, #1d3e01, #1a3900);
}

/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", sans-serif;
}

/* Header Styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
}

.nav-link {
  position: relative;
  padding: 8px 15px !important;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 76px;
}

.carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  touch-action: pan-y pinch-zoom;
  transition: transform 0.6s ease-in-out;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}

.carousel-caption h1,
.carousel-caption h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-caption .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

/* Mobile Responsive Banner Adjustments */
@media (max-width: 768px) {
  .carousel-item {
    height: 100vh;
  }

  .carousel-caption {
    padding: 15px;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
  }

  .carousel-caption h1 {
    font-size: 1.5rem !important;
    line-height: 1.3;
    margin-bottom: 8px;
    white-space: normal;
    border-right: none;
    animation: none;
  }

  .carousel-caption p {
    font-size: 0.875rem !important;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .carousel-caption .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

/* Even smaller screens */
@media (max-width: 480px) {
  .carousel-caption {
    width: 95%;
    padding: 12px;
  }

  .carousel-caption h1 {
    font-size: 1.25rem !important;
  }

  .carousel-caption p {
    font-size: 0.8rem !important;
    margin-bottom: 10px;
  }

  .carousel-caption .btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

/* About Section Styles */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-image {
  position: relative;
  padding: 20px;
}

.about-image .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image:hover .main-image {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.floating-card .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(31, 150, 18, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.floating-card h4 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--primary-color);
}

.floating-card p {
  font-size: 0.9rem;
  color: #6c757d;
}

.about-content {
  padding: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* margin-top: 40px; */
}

.feature-item {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(31, 150, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.feature-item:hover .icon-circle {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.feature-item p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .about-content {
    padding: 20px 0;
    margin-top: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .floating-card {
    bottom: 20px;
    right: 20px;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 999;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features Section Styles */
.features-showcase {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features-image-wrapper {
  position: relative;
  padding: 30px;
  background: linear-gradient(
    45deg,
    rgba(31, 150, 18, 0.05),
    rgba(37, 181, 22, 0.05)
  );
  border-radius: 40px;
  overflow: visible;
}

.features-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  transform: translateY(-20px) translateX(-20px);
  box-shadow: 30px 30px 60px rgba(31, 150, 18, 0.2);
  transition: all 0.5s ease;
}

.features-image-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.5s ease;
}

.features-image-wrapper:hover .features-main-image {
  transform: translateY(-30px) translateX(-30px);
}

.features-image-wrapper:hover::before {
  top: 30px;
  right: 30px;
}

.features-experience {
  position: absolute;
  top: 40px;
  right: -20px;
  background: white;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 150, 18, 0.1);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.features-experience h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.features-experience p {
  color: #6c757d;
  margin: 0;
}

.features-stats {
  position: absolute;
  bottom: 0;
  left: -20px;
  background: white;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(31, 150, 18, 0.1);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
  z-index: 2;
}

.stat-item h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.stat-item p {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
}

.modern-features-list {
  display: grid;
  gap: 25px;
}

.modern-feature-item {
  background: white;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(31, 150, 18, 0.1);
}

.modern-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(31, 150, 18, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(31, 150, 18, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.modern-feature-item:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.feature-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .features-main-image {
    height: 400px;
  }

  .features-image-wrapper {
    padding: 20px;
    margin-bottom: 60px;
  }

  .features-experience {
    right: 0;
  }

  .features-stats {
    left: 0;
  }
}

/* Contact Section Enhancements */
.contact {
  position: relative;
  /* background: linear-gradient(135deg, #042905 0%, #042905 100%); */
  background: linear-gradient(135deg, #d88400 0%, #ac6900 100%);
  isolation: isolate;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: rotate 240s linear infinite;
  opacity: 0.1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact-overlay {
  background: linear-gradient(
    45deg,
    rgba(31, 150, 18, 0.9),
    rgba(37, 181, 22, 0.9)
  );
}

.contact .container {
  z-index: 1;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.contact form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.contact .form-control {
  border: 2px solid #eee;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 150, 18, 0.1);
}

.contact .btn-primary {
  background: var(--success-gradient);
  border-radius: 15px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 150, 18, 0.3);
}

/* Modern Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  border-radius: 50px 50px 0 0;
  margin-top: 100px;
  /* position: relative; */
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.newsletter-form-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 25px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  padding: 15px 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--success-gradient);
  color: white;
  transform: translateY(-5px);
}

.footer-contact-info .icon-box {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-links a {
  margin-left: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-light) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .footer {
    border-radius: 30px 30px 0 0;
  }

  .footer-bottom-links {
    margin-top: 1rem;
  }

  .footer-bottom-links a {
    margin: 0 1rem;
    font-size: 0.9rem;
  }
}

/* Modern Card Styles */
.modern-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* Modern Button Styles */
.btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
}

.btn-success {
  background: var(--success-gradient);
  border: none;
}

/* Modern Section Styles */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--dark-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Modern Hero Section */
.hero .carousel-caption {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}

/* Modern Features */
.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle {
  background: var(--success-gradient);
  color: white;
  border-radius: 20px;
}

/* Modern Contact Form */
.form-control {
  border-radius: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Modern Footer */
.footer {
  background: var(--dark-gradient);
  color: white;
  border-radius: 50px 50px 0 0;
  margin-top: 100px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.social-link {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Modern Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Modern Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Update text colors */
.text-success {
  color: var(--primary-color) !important;
}

.bg-success {
  background-color: var(--primary-color) !important;
}

/* Update button hover effects */
.btn-success:hover,
.btn-primary:hover {
  background: linear-gradient(45deg, #198f0e, #1f9612);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 150, 18, 0.2);
}

/* Update badges */
.badge.bg-success {
  background: var(--success-gradient) !important;
}

.badge.text-success {
  color: var(--primary-color) !important;
  background: rgba(31, 150, 18, 0.1) !important;
}

/* Update form focus states */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(31, 150, 18, 0.25);
}

/* Update icon backgrounds */
.bg-success.bg-opacity-10 {
  background-color: rgba(31, 150, 18, 0.1) !important;
}

/* Update hover states */
.hover-success:hover {
  color: var(--primary-color) !important;
}

/* Update progress bars and other components */
.progress-bar-success {
  background-color: var(--primary-color);
}

/* Update outline buttons */
.btn-outline-success {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-success:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Why Choose Us Section Enhancements */
.features {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 150, 18, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-light)
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(31, 150, 18, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  position: relative;
  z-index: 1;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(31, 150, 18, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease;
  margin: 0 auto;
}

.feature-card:hover .icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.1) rotate(10deg);
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-content h3,
.feature-card:hover .feature-content .counter {
  color: #ffffff;
}

.feature-card:hover .feature-content p,
.feature-card:hover .feature-content .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.feature-stats {
  margin-top: auto;
}

.counter {
  color: var(--primary-color);
  transition: color 0.4s ease;
}

.progress {
  background-color: rgba(31, 150, 18, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.progress-bar {
  transition: width 1.5s ease;
}

.feature-card:hover .progress {
  background-color: rgba(255, 255, 255, 0.2);
}

.feature-card:hover .progress-bar {
  background-color: #ffffff !important;
}

/* Animation for icons */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Heading Styles */
.section-heading {
  font-family: "Fira Sans", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #316b00, #2f6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--success-gradient);
  border-radius: 2px;
}

.section-subheading {
  font-family: "Fira Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  background: linear-gradient(45deg, rgb(49 107 0), rgb(46 106 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  padding: 0 15px;
}

/* White version for dark backgrounds */
.section-subheading.text-white-50 {
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-subheading {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}

/* Update specific section heading styles */
.carousel-caption h1,
.carousel-caption h2 {
  font-size: 2.75rem;
  font-weight: 700;
  font-family: "Fira Sans", sans-serif;
}

/* Modern Section Badge Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  background: rgba(31, 150, 18, 0.08);
  font-family: "Fira Sans", sans-serif;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.section-badge::before {
  content: "#";
  font-weight: 700;
  opacity: 0.4;
  display: none;
}

.section-badge::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.8rem;
  opacity: 0.7;
  display: none;
}

.section-badge:hover {
  background: rgba(31, 150, 18, 0.12);
  transform: translateY(-1px);
}

/* White version for dark backgrounds */
.section-badge.text-white {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.section-badge.text-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Icons for different sections */
.section-badge[data-badge="about"]::after {
  content: "\f129";
}

.section-badge[data-badge="features"]::after {
  content: "\f085";
}

.section-badge[data-badge="contact"]::after {
  content: "\f0e0";
}

.section-badge[data-badge="why-choose"]::after {
  content: "\f00c";
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
}

.section-heading {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Carousel touch support */
.carousel {
  touch-action: pan-y pinch-zoom;
}

.carousel-inner {
  touch-action: pan-y pinch-zoom;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

/* Improve touch area for mobile */
.carousel-control-prev,
.carousel-control-next {
  width: 15%;
  min-width: 44px; /* Minimum touch target size */
  height: 100%;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 25%;
  }
}

/* About Section Enhancements */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(31, 150, 18, 0.2),
    rgba(37, 181, 22, 0.2)
  );
  z-index: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.08);
}

.about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-box {
  transition: all 0.3s ease;
}

.d-flex:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Features Section Alignment */
.features-showcase {
  overflow: hidden;
}

.features-list {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .about-content {
    margin-bottom: 2rem;
  }

  .features-list {
    margin-bottom: 2rem;
  }
}

/* Modern Features Section Styles */
.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.modern-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.feature-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(31, 150, 18, 0.1);
  line-height: 1;
  font-family: "Fira Sans", sans-serif;
  transition: all 0.3s ease;
}

.feature-content {
  flex: 1;
}

.modern-feature:hover .feature-number {
  color: rgba(31, 150, 18, 0.2);
  transform: scale(1.1);
}

.modern-feature .feature-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.modern-feature:hover .feature-icon {
  transform: translateY(-5px);
}

.modern-feature h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.modern-feature p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.feature-checklist {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(31, 150, 18, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checklist-item:hover {
  transform: translateX(10px);
  background: rgba(31, 150, 18, 0.1);
}

.checklist-item i {
  font-size: 1.25rem;
}

.checklist-item span {
  font-weight: 500;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .modern-feature {
    padding: 1.5rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }
}

/* Modern Features Section */
.modern-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.modern-feature-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(31, 150, 18, 0.1);
  position: relative;
  overflow: hidden;
}

.modern-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--success-gradient);
  transition: width 0.3s ease;
  opacity: 0.8;
}

.modern-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(31, 150, 18, 0.1);
}

.modern-feature-item:hover::before {
  width: 100%;
  opacity: 0.1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(31, 150, 18, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.modern-feature-item:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.feature-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .modern-feature-item {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Modern Image Collage Styles */
.features-image-collage {
  position: relative;
  padding: 40px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  position: relative;
}

.main-image {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(31, 150, 18, 0.25);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.secondary-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  transform: translateY(30px);
}

.top-image,
.bottom-image {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 40px -12px rgba(31, 150, 18, 0.2);
}

.top-image img,
.bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Hover Effects */
.main-image:hover img,
.top-image:hover img,
.bottom-image:hover img {
  transform: scale(1.1);
}

/* Image Overlays */
.main-image::before,
.top-image::before,
.bottom-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 150, 18, 0.1),
    rgba(31, 150, 18, 0.2)
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image:hover::before,
.top-image:hover::before,
.bottom-image:hover::before {
  opacity: 1;
}

/* Floating Cards */
.experience-card {
  position: absolute;
  top: 0;
  right: 20px;
  background: white;
  padding: 25px 35px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(31, 150, 18, 0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.stats-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 25px 35px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(31, 150, 18, 0.15);
  display: flex;
  align-items: center;
  gap: 30px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 991px) {
  .features-image-collage {
    padding: 20px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-image {
    height: 400px;
  }

  .secondary-images {
    transform: translateY(0);
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .top-image,
  .bottom-image {
    height: 200px;
  }

  .experience-card {
    top: 20px;
    right: 20px;
  }

  .stats-card {
    bottom: 20px;
    left: 20px;
  }
}

/* Modern About Section Image Styles */
.about-images-container {
  position: relative;
  padding: 20px;
  height: 600px;
}

.about-main-image {
  position: relative;
  width: 80%;
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(31, 150, 18, 0.2);
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 150, 18, 0.05),
    rgba(31, 150, 18, 0.15)
  );
  border-radius: 30px;
}

.about-floating-images {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-image {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(31, 150, 18, 0.2);
  pointer-events: auto;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.floating-image.top-right {
  top: 0;
  right: 0;
  animation: float 3s ease-in-out infinite;
}

.floating-image.bottom-left {
  bottom: 40px;
  left: 0;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.image-badge {
  position: absolute;
  bottom: 45px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(31, 150, 18, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-badge i {
  font-size: 1rem;
}

.floating-image:hover .image-badge {
  transform: translateY(0);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background: var(--primary-color);
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(31, 150, 18, 0.2);
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.75s;
  z-index: 2;
}

.experience-badge h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.experience-badge p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Hover Effects */
.about-main-image:hover img,
.floating-image:hover img {
  transform: scale(1.1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-images-container {
    height: 500px;
    margin-bottom: 40px;
  }

  .about-main-image {
    width: 100%;
    height: 400px;
  }

  .floating-image {
    width: 160px;
    height: 160px;
  }

  .experience-badge {
    right: 20px;
    padding: 15px 25px;
  }

  .experience-badge h3 {
    font-size: 2rem;
  }
}

/* Add touch support styles */
.carousel-inner {
  touch-action: pan-y pinch-zoom;
}

.carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

/* Optional: Add smoother transitions */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

/* Typewriter Animation for Slider Headings */
.carousel-caption h1 {
  overflow: hidden;
  border-right: 3px solid white;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}

/* Reset animation when slide changes */
.carousel-item:not(.active) h1 {
  width: 0;
}

/* Ensure text remains visible after animation */
.carousel-item.active h1 {
  border-right: none;
}

/* Footer Text Color Override */
.footer .text-white {
  color: rgb(255 255 255 / 74%) !important;
}

.footer .text-white-50 {
  color: rgb(255 255 255 / 74%) !important;
}

/* Also update social links and other footer text */
.footer-links a,
.social-link,
.footer-contact-info p,
.footer-bottom-links a {
  color: rgb(255 255 255 / 74%) !important;
}
/*policy pages css*/
.terms-section {
  /* background: #f9f9f9; Light gray background */
  padding: 50px 0px;
}

.terms {
  max-width: 1200px;
  margin: auto;
  background: white;
  /* padding: 30px; */
  border-radius: 10px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.terms-section h1 {
  text-align: center;
  color: #f9eded;
  margin-bottom: 30px;
  background: #316b00;
  padding-bottom: 49px;
  padding-top: 83px;
  /* border-radius: 8px; */
  font-size: 50px;
}

.terms h2 {
  color: #333;
  font-size: 22px;
  margin-top: 20px;
}

.terms p,
.terms ul {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.terms ul {
  padding-left: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .terms {
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .terms-section h1 {
    font-size: 38px;
    padding: 40px;
    padding-top: 72px;
  }

  .terms h2 {
    font-size: 20px;
  }

  .terms p,
  .terms ul {
    font-size: 14px;
  }
}
