/* Reset some default styles */
body, h1, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic body styling */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  zoom: 0.8; /* Set zoom level to 80% */
}

/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
  background-color: #434843a3; /* Transparent gray background */
  border-bottom: 1px solid #10752b; /* Green border bottom */
  position: fixed; /* Make the header fixed */
  top: 0; /* Position it at the top of the page */
  width: 100%; /* Ensure it spans the full width of the page */
  z-index: 1000; /* Ensure it appears above other content */
}

header .logo img {
  width: 50px; /* Adjust size as needed */
  padding-left: 20px;
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
  padding-left: 20px;
  position: relative; /* Needed for the dropdown */
}

header nav ul li a {
  color: #9cdaad; /* Green text */
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

header nav ul li a:hover {
  text-decoration: none;
}

header .header-icons a {
  margin-left: 20px;
  padding-right: 20px;
}

header .header-icons img {
  width: 20px;
  height: 20px;
}

/* Dropdown Styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content li {
  padding: 12px 16px;
}

.dropdown-content li a {
  color: #10752b; /* Green text */
  text-decoration: none;
  display: block;
}

.dropdown-content li a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section Styling */
.hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* Center align text */
  color: #fff; /* White text */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1; /* Ensure video is behind the overlay */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1; /* Ensure content is above the overlay */
}

.hero-text {
  max-width: 600px;
  text-align: center;
}

.hero-text h1 {
  font-size: 48px; /* Large font size for headline */
  margin-bottom: 5px;
  font-family: 'Epilogue', sans-serif;
}

.hero-text p {
  font-size: 18px; /* Font size for subheadline */
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between buttons */
}

.cta {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 300;
  color: #fff; /* White text */
  background-color: #10752b; /* Green background */
  border: 2px solid #10752b;
  border-radius: 5px;
  text-decoration: none;
}

.cta:hover {
  background-color: #084c18; /* Darker green on hover */
  border-color: #084c18;
}

.availability {
  margin-top: 20px;
  text-align: center;
}

.availability p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.blinkit-logo {
  width: 100px;
  height: auto;
}


/* Ensure the hero section is responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px; /* Smaller font size for smaller screens */
  }

  .hero-text p {
    font-size: 18px; /* Smaller font size for smaller screens */
  }

  .cta {
    font-size: 16px; /* Smaller font size for buttons on smaller screens */
  }
}
/* 🚀 SCROLLING BENEFITS SECTION */
.benefits-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #10752b;
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.benefits-marquee {
  display: flex;
  width: 200%;
  animation: marquee 20s linear infinite;
}

.scrolling-benefits-track {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  margin-left: 20px;
}

.benefit-card {
  flex: none;
  min-width: 250px;
  background: #ffffff;
  color: rgb(82, 101, 83);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

@keyframes marquee {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

/* Centered Section */
.why-choose-us {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #f4fff5;
  padding: 60px 0;
}

.content {
  max-width: 800px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.content h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #10752b;
  font-weight: 600;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.content h2 {
  font-size: 3rem;
  margin: 10px 0;
  color: rgb(82, 101, 83);
  text-align: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.content p {
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

/* Benefits Section - Centered Counters */
.why-choose-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
  margin: 30px 0;
}

/* Each Benefit Item */
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  font-size: 1.2rem;
  width: 200px;
  text-align: center;
  color: rgb(82, 101, 83);
}

/* Icon Styling */
.benefit-item i {
  font-size: 3rem;
  color: #10752b;
}

/* Counter Styling */
.counter {
  font-size: 3.5rem;
  font-weight: bold;
  color: #10752b;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-benefits {
      flex-direction: column;
      gap: 30px;
  }
}

/* Quote Section */
.quote-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #10752b;
  padding: 50px 20px;
}

.quote-section blockquote {
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  max-width: 1300px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.quote-section cite {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Our Process Section */
.our-process {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #f4fff5;
  padding: 60px 20px;
}

/* Headings */
.our-process h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #10752b;
  font-weight: 600;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.our-process h2 {
  font-size: 3rem;
  margin: 10px 0;
  color: rgb(82, 101, 83);
  text-align: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.our-process p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

/* Uneven Grid Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Individual Process Step */
.process-step {
  background: white;
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  transition: background 0.4s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12); /* More depth */
  font-family: 'Poppins', sans-serif;
}

/* Large Steps (More Height) */
.process-step.large {
  height: 280px;
}

/* Small Steps (Less Height) */
.process-step.small {
  height: 200px;
}

/* Icons */
.process-step i {
  font-size: 3rem;
  color: #10752b;
  margin-bottom: 10px;
}

/* Step Title */
.process-step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

/* Step Description */
.process-step p {
  font-size: 1rem;
  color: rgb(82, 101, 83);
}

/* Hover Effect - Change to Green */
.process-step:hover {
  background: #0c5d21;
  color: white;
  transform: translateY(-5px);
}

.process-step:hover i,
.process-step:hover h4,
.process-step:hover p {
  color: white;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background: #10752b;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
  background: #0e6424;
}

/* Responsive - 2 Columns for Tablets */
@media (max-width: 1024px) {
  .process-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - 1 Column for Mobile */
@media (max-width: 768px) {
  .process-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
  }

  .process-step.large, .process-step.small {
      height: auto;
  }
}

/* FAQ Section */
.faq {
  text-align: center;
  background: #0c5d21; /* Dark Green Background */
  padding: 60px 20px;
}

/* Headings */
.faq h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #a8e6a2; /* Light Green for contrast */
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.faq h2 {
  font-size: 3rem;
  margin: 10px 0;
  color: white; /* White text for better visibility */
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

/* FAQ Item */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: rgb(52, 75, 55); /* Darker Green Text */
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease-in-out;
}

/* Hover Effect */
.faq-question:hover {
  background: #e9f6eb; /* Light green hover effect */
}

/* Plus & Minus Icon */
.faq-question .icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: rgb(52, 75, 55);
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
}

/* Active Class for Opened Questions */
.faq-item.active .faq-answer {
  max-height: 150px;
  padding: 15px 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg); /* Change plus to minus */
}
/* Hydration Section */
.hydration-section {
  background: white;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.hydration-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  gap: 60px;
}

/* Left Side - Image */
.hydration-image {
  flex: 1;
  text-align: center;
}

.hydration-image img {
  max-width: 100%;
  width: 340px;
}

/* Right Side - Text */
.hydration-text {
  flex: 1;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

.hydration-text h2 {
  font-size: 2.5rem;
  color: rgb(82, 101, 83);
  font-weight: 600;
}

.hydration-text p {
  font-size: 1.2rem;
  color: #444;
  margin: 15px 0;
}

/* Bullet Points */
.hydration-text ul {
  list-style: none;
  padding: 0;
}

.hydration-text li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: rgb(82, 101, 83);
  font-weight: 500;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background: #10752b;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
  background: #0e6424;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hydration-container {
      flex-direction: column;
      text-align: center;
  }

  .hydration-text {
      text-align: center;
  }

  .hydration-image img {
      width: 300px;
  }
}

/* Contact Section */
.contact-section {
  background: #0c5d21; /* Dark Green Background */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  gap: 60px;
}

/* Contact Form */
.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-form h2 {
  font-size: 2.5rem;
  color: rgb(82, 101, 83);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.contact-form p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Input Fields */
.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.input-group textarea {
  height: 120px;
  resize: none;
}

/* CTA Button */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #10752b;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #0e6424;
}

/* Loader Icon */
#buttonLoader {
  display: none; /* Hidden by default */
  width: 20px;
  height: 20px;
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Loader Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Map */
.contact-map {
  flex: 1;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
      flex-direction: column;
      text-align: center;
      gap: 40px;
  }

  .contact-form {
      width: 100%;
  }

  .contact-map {
      width: 100%;
      height: 300px;
  }
}

/* Footer Section */
.footer {
  background: #333; /* Dark Green Background */
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

/* Footer Info */
.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-info p {
  margin: 5px 0;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Quick Links */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* Social Media */
.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-links ul {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
  }

  .social-icons {
      justify-content: center;
  }
}
