/* ============================= */
/* RESET */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.3px;
  color: #1e1e1e;
  background: #f4efe6;
  overflow-x: hidden;
}

/* ============================= */
/* AMBIENT GRAIN */
/* ============================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('assets/images/grain-texture.png');
  opacity: 0.05;
  animation: grainMove 12s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes grainMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-80px, 80px); }
}


/* ============================= */
/* LOADER */
/* ============================= */

#loader {
  position: fixed;
  inset: 0;
  background: #f4efe6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader h1 {
  font-family: 'Playfair Display', serif;
  color: #2f4f3f;
}

.loader-line {
  width: 0;
  height: 3px;
  background: #b38b00;
  margin-top: 15px;
  animation: loadLine 1.5s forwards;
}

@keyframes loadLine {
  to { width: 140px; }
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.5px;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #2f4f3f;
}

h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

p {
  max-width: 650px;
  margin-bottom: 20px;
  color: #444;
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

/* ================= NAVIGATION ================= */

.main-nav{
  background:#f6f1e8;
  padding:18px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(47,79,63,0.08);
  box-shadow:0 3px 12px rgba(0,0,0,0.03);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-left img{
  height:60px;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  gap:36px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  letter-spacing:1px;
  color:#2f4f3f;
  position:relative;
  transition:0.3s ease;
}

/* Gold underline animation */
.nav-links li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#b38b00;
  transition:0.3s ease;
}

.nav-links li a:hover{
  color:#1f3b2f;
}

.nav-links li a:hover::after{
  width:100%;
}

/* ================= HAMBURGER ================= */

.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger div{
  width:24px;
  height:2px;
  background:#2f4f3f;
  margin:4px 0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .nav-links{
    position:absolute;
    top:80px;
    right:8%;
    flex-direction:column;
    background:#f6f1e8;
    padding:20px 30px;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    display:flex;
  }

  .hamburger{
    display:flex;
  }

}

/* ============================= */
/* HERO IMAGE */
/* ============================= */

.hero-image {
  position: relative;
  height: 100vh;
  background: url('assets/images/hero.png') center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47,79,63,0.65);
  z-index: 1;
}

.gold-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(179,139,0,0.25), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.hindi-accent {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: #e6c25a;
  margin: 10px 0;
}

.hero-tagline {
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: 15px;
}

/* ============================= */
/* SECTION */
/* ============================= */

section {
  padding: 130px 12%;
}
h2{
  position:relative;
  display:inline-block;
}


/* GOLD DIVIDER */

.gold-line {
  width: 110px;
  height: 3px;
  background: #b38b00;
  margin: 30px auto 40px auto;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: #2f4f3f;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-3px);
  background: #b38b00;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ============================= */
/* SPOTLIGHT */
/* ============================= */

.spotlight-section {
  padding: 120px 12%;
}

.spotlight-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.spotlight-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.spotlight-image img:hover {
  transform: scale(1.04);
}

.spotlight-content {
  max-width: 520px;
}

.spotlight-content p {
  font-size: 17px;
  line-height: 2;
}

/* ============================= */
/* COUNTERS */
/* ============================= */

.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #2f4f3f;
  color: white;
  padding: 90px 10%;
  text-align: center;
}

.counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter {
  font-size: 52px;
  font-family: 'Playfair Display', serif;
  color: #b38b00;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 16px;
  letter-spacing: 1px;
  color: #f4efe6;
  opacity: 0.9;
}

/* ============================= */
/* SCROLL ANIMATIONS */
/* ============================= */

.scroll-fade,
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.scroll-fade.active,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* WHATSAPP */
/* ============================= */

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  z-index: 1000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f4efe6;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .spotlight-container {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 90px 8%;
  }

  .hero-tagline {
    font-size: 16px;
  }
}
/* ============================= */
/* DISTRIBUTOR SECTION */
/* ============================= */

.distributor-section {
  background: #f4efe6;
  padding: 140px 12%;
  text-align: center;
}

.distributor-container {
  max-width: 800px;
  margin: auto;
}

.distributor-text {
  font-size: 18px;
  margin: 30px auto;
  line-height: 2;
  color: #444;
}

.center-line {
  margin: 25px auto 40px auto;
}

/* Premium Button */
.premium-btn {
  padding: 16px 48px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* ============================= */
/* FOOTER */
/* ============================= */

/* ================= FOOTER ================= */

.main-footer{
  background:#2f4f3f;
  padding:80px 12% 40px 12%;
}

/* Force ALL footer text to cream */
.main-footer,
.main-footer h3,
.main-footer h4,
.main-footer p,
.main-footer a {
  color:#f6f1e8 !important;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:60px;
}

.footer-col{
  flex:1;
  min-width:220px;
}

.footer-brand{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:10px;
}

.footer-tagline{
  opacity:0.9;
}

.footer-col h4{
  margin-bottom:15px;
  letter-spacing:1px;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  text-decoration:none;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#e6c25a !important;
}

.footer-divider{
  height:1px;
  background:rgba(246,241,232,0.3);
  margin:50px 0 30px 0;
}

.footer-bottom{
  text-align:center;
  font-size:14px;
  opacity:0.85;
}

/* ============================= */
/* PROFESSIONAL WHATSAPP */
/* ============================= */

.whatsapp-pro {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1ebe57, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: 0.3s ease;
  z-index: 1000;
}

.whatsapp-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}
.founder-wrapper{
  display:flex;
  align-items:center;
  gap:60px;
  max-width:1000px;
  margin:auto;
}

.founder-image img{
  width:300px;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,0.1);
  filter:grayscale(20%);
}

.founder-content{
  flex:1;
}

@media(max-width:900px){
  .founder-wrapper{
    flex-direction:column;
    text-align:center;
  }
}
.scroll-fade{
  opacity:0;
  transform:translateY(40px);
  transition:all 1s ease;
}

.scroll-fade.active{
  opacity:1;
  transform:translateY(0);
}
.license-logos{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-top:40px;
  flex-wrap:wrap;
}

.license-logos img{
  height:70px;
  opacity:0.85;
  transition:0.3s ease;
}

.license-logos img:hover{
  opacity:1;
  transform:scale(1.05);
.cert-box{
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  font-weight:500;
}

}
/* ================= ABOUT HERO ================= */

.about-hero{
  height:60vh;
  background:#2f4f3f;   /* Wooden Green */
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 10%;
  position:relative;
  overflow:hidden;
}

/* Optional subtle gold gradient overlay */
.about-hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
      to bottom,
      rgba(179,139,0,0.15),
      transparent
  );
}

.about-hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
}

.about-hero h1{
  font-family:'Playfair Display', serif;
  font-size:72px;
  color:#f6f1e8;   /* Cream */
  line-height:1.1;
}

.about-subtitle{
  margin-top:20px;
  font-size:18px;
  letter-spacing:1px;
  color:#e6c25a;   /* Gold */
}
.about-hero{
  border-bottom:4px solid #b38b00;
}

h2{
  font-size:44px;
  margin-bottom:20px;
}

.section{
  padding:120px 14%;
}
/* ================= VISION & MISSION ================= */

.vision-mission{
  background:#f6f1e8;
  text-align:center;
}

.center-title{
  font-size:48px;
  margin-bottom:20px;
}

.center-line{
  margin:20px auto 60px auto;
}

.vm-wrapper{
  display:flex;
  gap:50px;
  justify-content:center;
  flex-wrap:wrap;
}

.vm-card{
  background:white;
  padding:50px 40px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
  max-width:450px;
  text-align:left;
  transition:0.4s ease;
}

.vm-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

.vm-card h3{
  font-family:'Playfair Display', serif;
  font-size:28px;
  color:#2f4f3f;
  margin-bottom:20px;
}

.vm-card p{
  font-size:16px;
  line-height:1.8;
}

.vm-card ul{
  padding-left:20px;
  line-height:2;
}
.products-hero{
  height:50vh;
  background:#2f4f3f;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#f6f1e8;
}

.products-hero h1{
  font-family:'Playfair Display', serif;
  font-size:64px;
}

.products-hero p{
  color:#e6c25a;
  margin-top:15px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
  margin-top:60px;
}

.product-card{
  background:white;
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
  text-align:center;
  transition:0.4s ease;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

.product-card img{
  width:100%;
  max-height:250px;
  object-fit:contain;
  margin-bottom:20px;
}

.product-card h3{
  font-family:'Playfair Display', serif;
  color:#2f4f3f;
  margin-bottom:10px;
}

.small-btn{
  padding:10px 25px;
  font-size:14px;
}
.distributor-hero{
  height:55vh;
  background:#2f4f3f;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#f6f1e8;
}

.distributor-hero h1{
  font-family:'Playfair Display', serif;
  font-size:64px;
}

.distributor-hero p{
  color:#e6c25a;
  margin-top:15px;
}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  margin-top:60px;
}

.benefit-card{
  background:white;
  padding:40px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.05);
  text-align:center;
  transition:0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-8px);
}

.benefit-card i{
  font-size:32px;
  color:#b38b00;
  margin-bottom:15px;
}
.requirement-list ul{
  max-width:600px;
  margin:auto;
  line-height:2;
  padding-left:20px;
}
.distributor-form{
  max-width:700px;
  margin:50px auto 0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.distributor-form input,
.distributor-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
  font-family:'Poppins', sans-serif;
}

.distributor-form textarea{
  min-height:120px;
  resize:none;
}

.distributor-form button{
  align-self:center;
}
.contact-hero{
  height:50vh;
  background:#2f4f3f;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#f6f1e8;
}

.contact-hero h1{
  font-family:'Playfair Display', serif;
  font-size:64px;
}

.contact-hero p{
  color:#e6c25a;
  margin-top:15px;
}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  margin-top:60px;
}

.contact-card{
  background:white;
  padding:40px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.contact-card:hover{
  transform:translateY(-8px);
}

.contact-card i{
  font-size:30px;
  color:#b38b00;
  margin-bottom:15px;
}
.contact-form{
  max-width:700px;
  margin:50px auto 0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
  font-family:'Poppins', sans-serif;
}

.contact-form textarea{
  min-height:120px;
  resize:none;
}

.contact-form button{
  align-self:center;
}
.map-container{
  margin-top:50px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
}
