/* ===== VARIABLES ===== */
:root {
  --green: #3b9635;
  --yellow: #f8cd0a;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --blue: #3b82f6;
  --purple: #8b5cf6;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--green);
  color: var(--white);
  margin-left: 5px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #374151;
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--white);
  border: 2px solid var(--yellow);
}

.btn-yellow:hover {
  opacity: 0.9;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--green);
  border-bottom: 2px solid #2d7a28;
  z-index: 1000;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.fssai{

  height: 90px;
  width: auto;
}

.logo {
  height: 90px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 12px;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-btn {
  background-color: var(--yellow);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid var(--white);
  transition: opacity 0.3s ease;
}

.nav-btn:hover {
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.1;
  
}

.text-green {
  color: var(--green);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
  margin-left: 5px;
}

.bottle-container {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe, #93c5fd);
  border-radius: 24px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.bottle-3d-canvas {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.bottle-fallback {
  text-align: center;
  color: var(--gray-600);
}

.bottle-fallback .bottle-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}


.bottle-image {
  height: 400px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.bottle-rotating:hover .bottle-image {
  transform: scale(1.05);
}


/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  width: 100%; /* Adjust as needed */
        max-width: 600px; /* Limit maximum width on larger screens */
        margin: 0 auto; /* Center the box */
        padding: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ===== VALUE PROPOSITIONS ===== */
.values {
  padding: 80px 0;
  background-color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  text-align: center;
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-item p {
  color: var(--gray-600);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}

.yellow-bg {
  background-color: rgba(248, 205, 10, 0.1);
  color: var(--yellow);
}

.green-bg {
  background-color: rgba(59, 150, 53, 0.1);
  color: var(--green);
}

.blue-bg {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}

.purple-bg {
  background-color: rgba(139, 92, 246, 0.1);
  color: var(--purple);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  display: grid;
  background-color: var(--grey);
  width: 100%;
  grid-template: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 24px;
}

.step-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.step-item p {
  color: var(--gray-600);
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 80px 0;
  background-color: var(--green);
  color: var(--white);
 
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-label {
  color: #F8CD0A;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background-color: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--green);
}

.pricing-card.featured {
  border-color: var(--green);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.price-period {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.features i {
  color: var(--green);
}

/* ===== DISTRIBUTION ===== */
.distribution {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  text-align: center;
}

.distribution-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.distribution-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.distribution-item p {
  color: var(--gray-600);
}

/* ===== ABOUT US ===== */
.about-us {
  padding: 80px 0;
  background-color: var(--white);
  color: #2d7a28;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
  text-align: center;
}

.about-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}

.about-value h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-value p {
  color: var(--gray-600);
}

.why-choose {
  background-color: var(--gray-50);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.why-choose h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.why-list i {
  color: var(--green);
  margin-top: 4px;
}

.cta-box {
  text-align: center;
  padding: 32px;
  background-color: rgba(59, 150, 53, 0.05);
  border-radius: 16px;
}

.cta-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

.cta-box h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* ===== OUR STORY ===== */
.our-story {
  padding: 80px 0;
  background-color: var(--gray-50);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.story-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--green);
}

.story-stat-label {
  color: var(--gray-600);
}

.mission-box {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.mission-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
}

.mission-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.mission-box p {
  color: var(--gray-600);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.stars {
  margin-bottom: 16px;
}

.stars i {
  color: var(--yellow);
  margin-right: 4px;
}

.testimonial-card p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white);
}

.author-name {
  font-weight: bold;
}

.author-title {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px;
  background-color: var(--green);
  color: var(--white);
  width: auto;
  

}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-logo {
  height: 90px;
  width: auto;
  margin-bottom: 24px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-left: 5px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  color: var(--yellow);
  font-size: 1.5rem;
}

.contact-label {
  font-weight: bold;
}

.contact-value {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

/* ===== FOOTER ===== */
/* --- Box sizing for all --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* --- Container --- */

/* --- Contact Section --- */



.contact {
  padding: 80px 0;
  background-color: var(--green);
  color: var(--white);
  font-family: Arial, sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-header p {
  font-size: 1rem;
  color: #aaa;
}

/* Flex container */
.contact-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Contact info */
.contact-info h3 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: gold;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 4px;
  color: #ccc;
}

.contact-value {
  color: #bbb;
  word-break: break-word;
  white-space: normal; /* allow line breaks */
}

/* Contact form inputs */
.contact {
  padding: 80px 0;
  background-color: var(--green);
  color: var(--white);
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-logo {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  color: var(--yellow);
  font-size: 1.5rem;
}

.contact-label {
  font-weight: bold;
}

.contact-value {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--white);
  color: var(--black);
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
  color: #9ca3af;
}

.footer-section p {
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
  color: #9ca3af;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: var(--green);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    gap: 16px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .why-choose {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

 
  .story-stats {
    grid-template-columns: 1fr;
  }
}
