:root {
  --c-darkest: #243f12;
  --c-dark: #2d5016;
  --c-mid: #3d661e;
  --c-light: #4a7c25;
  --c-bg-tint: rgba(45, 80, 22, 0.05);

  --bg-color: rgb(235, 240, 231, 0.5);
  /* NEUMORPHISM SECRET: Background aur card ka color exact same hona chahiye */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  /* background: #ffffff; */
  background-color: var(--bg-color);
  /* overflow-x: hidden; */
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Merriweather", serif;
}

.marathi-text {
  font-family: "Tiro Devanagari Marathi", serif;
}

.app {
  width: 100%;
  /* overflow-x: hidden; */
}

/* Pre loader */

#saras-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ebf0e7; /* Tera earthy premium background */
  z-index: 99999; /* Sabse upar rahega */
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.okhli-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  /* Halka sa Neumorphic pop base pe */
  background: #ebf0e7;
  border-radius: 50%;
  box-shadow:
    10px 10px 20px rgba(36, 63, 18, 0.08),
    -10px -10px 20px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.okhli-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 1. Pestle (Musal) Animation */
.pestle {
  transform-origin: center 40px;
  animation: crush 0.8s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes crush {
  0% {
    transform: translateY(-20px) rotate(-10deg);
  }
  100% {
    transform: translateY(10px) rotate(0deg);
  }
}

/* 2. Spice Dust Animation */
.spice-dust {
  opacity: 0;
  animation: splash 1.6s infinite ease-out;
}

/* Particles ko alag-alag delay diya taaki ek sath na ude */
.dust-1 {
  animation-delay: 0.1s;
}
.dust-2 {
  animation-delay: 0.3s;
}
.dust-3 {
  animation-delay: 0.5s;
}

@keyframes splash {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(1.5);
  }
}

/* 3. Text Animation */
.loading-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #243f12;
  letter-spacing: 1px;
  animation: pulse-text 1.5s infinite alternate;
}

@keyframes pulse-text {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.dots {
  animation: dots-blink 1.5s infinite steps(4, end);
  display: inline-block;
  width: 20px;
  text-align: left;
}

@keyframes dots-blink {
  0%,
  20% {
    color: transparent;
    text-shadow:
      0.25em 0 0 transparent,
      0.5em 0 0 transparent;
  }
  40% {
    color: #4a7c25;
    text-shadow:
      0.25em 0 0 transparent,
      0.5em 0 0 transparent;
  }
  60% {
    text-shadow:
      0.25em 0 0 #4a7c25,
      0.5em 0 0 transparent;
  }
  80%,
  100% {
    text-shadow:
      0.25em 0 0 #4a7c25,
      0.5em 0 0 #4a7c25;
  }
}

/* pre loader ended */

.btn-modern {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.25);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.35);
}

.btn-outline-modern {
  background: white;
  color: #2d5016;
  border: 2px solid #e5e7eb;
}

.btn-outline-modern:hover {
  border-color: #2d5016;
  background: rgba(45, 80, 22, 0.03);
}

.container-modern {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Modern Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.logo-brand {
  width: 180px;
  height: 50px;
}

.nav-modern {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-modern button {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-modern button:hover {
  color: #2d5016;
  background: rgba(45, 80, 22, 0.05);
}

.nav-cta {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%) !important;
  color: white !important;
  padding: 10px 24px !important;
  margin-left: 8px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.3);
  background: linear-gradient(135deg, #243f12 0%, #3d661e 100%) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  padding: 8px;
}

/* ------ search bar ------- */
#search-area {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

#search-input {
  width: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(45, 80, 22, 0.08);
  border: 1px solid #4a7c25;
  /* Cyan */
  border-radius: 4px;
  color: rgba(45, 80, 22, 0.8);

  padding: 15px 0;
  outline: none;
  transition: all 0.4s ease;
  position: absolute;
  right: 45px;
}

#search-area.active #search-input {
  width: 250px;
  opacity: 1;
  visibility: visible;
  padding: 8px 15px;
}

#search-btn {
  background: transparent;
  border: none;
  outline: none;
  color: rgba(45, 80, 22, 0.8);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

#search-btn:hover,
#search-area.active #search-btn {
  color: #4a7c25;
}

/* --- SUGGESTIONS DROPDOWN --- */
#suggestions-box {
  position: absolute;
  top: 45px;
  right: 45px;
  width: 280px;
  background: rgba(45, 80, 22, 0.08);

  border: 1px solid #4a7c25;
  border-radius: 10px;
  border-top: none;
  display: none;
  /* Hidden by default */
  max-height: 200px;
  overflow-y: auto;
  z-index: 99;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.suggestion-item {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid #1a2a40;
  color: #2d5016;
}

/* Highlight for hover and arrow keys */
.suggestion-item:hover,
.suggestion-item.selected {
  background: #4a7c25;
  color: #d1f1bb;
}

/* Scrollbar for suggestions */
#suggestions-box::-webkit-scrollbar {
  width: 5px;
}

#suggestions-box::-webkit-scrollbar-thumb {
  background: #4a7c25;
}

/* Hero Section */
.hero-modern {
  position: relative;
  min-height: 100vh;
  min-width: 300px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(45, 80, 22, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(74, 124, 37, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-modern {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(45, 80, 22, 0.08);
  border-radius: 100px;
  color: #2d5016;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-heading {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-modern {
  text-align: left;
}

.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: #2d5016;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
}

.hero-main-image {
  width: 100%;
  min-width: 200px;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: #2d5016;
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 80px;
  left: -20px;
}

.card-2 {
  bottom: 80px;
  right: -20px;
  animation-delay: 1.5s;
}
.marathi-slogan-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  gap: 12px;
  margin: 0;
  padding: 0;
}

/* Top Line (Jithe Parampara) */
.slogan-top-line {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

/* Bottom Line (Bhete + Pavitratela) */
.slogan-bottom-line {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: nowrap;
}

/* THE MAGIC IMAGE FIX */
.slogan-img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 1;
  min-width: 0;
  filter: contrast(95%) sepia(5%);
}

.rt-img {
  padding-top: 7px;
  padding-left: 15px;
}

.home_img {
  /* border: 2px solid black; */
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* About Section */
.about-modern {
  padding: 120px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-img-main {
  grid-column: 1 / -1;
}

.about-img-main img,
.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-img-main img {
  height: 400px;
}

.about-img-small img {
  height: 250px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(45, 80, 22, 0.08);
  color: #2d5016;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-description {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 15px;
  color: #64748b;
}

/* Products Section */

.products-container {
  /* padding: 80px 0; */
  /* background-color: var(--bg-color);  */
  max-width: 1480px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 100px;
}
.section-header .tag {
  color: var(--c-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--c-darkest);
  margin: 0 0 10px 0;
}
.section-header p {
  color: var(--c-mid);
  font-size: 16px;
  margin: 0;
}

/* =========================================
   2. TRUE CLAYMORPHISM / NEUMORPHISM CSS
   ========================================= */
.earthy-clay-card {
  background: rgba(195, 211, 181, 0.509);
  backdrop-filter: blur(5px);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 35px; /* Smooth rounded shape */

  /* THE REAL EXTRUSION MAGIC */
  box-shadow:
    14px 14px 28px rgba(36, 63, 18, 0.2),
    /* Dark Greenish Shadow (Bottom Right) */ -14px -14px 28px #ffffff; /* Pure White Highlight (Top Left) */

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4); /* Halka sa glass shine */
}

.earthy-clay-card:hover {
  transform: translateY(-5px);
  /* Hover pe shadow thoda aur deep hoga */
  box-shadow:
    18px 18px 36px rgba(36, 63, 18, 0.12),
    -18px -18px 36px #ffffff;
}

/* CARVED IMAGE BOX (Andar dhasa hua look) */
.clay-img-box {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  position: relative;
  padding: 12px; /* Image aur box ke beech gap frame jaisa */

  background: var(--bg-color);
  /* INSET shadow se lagta hai box andar dab gaya hai */
  box-shadow:
    inset 8px 8px 16px rgba(36, 63, 18, 0.5),
    inset -8px -8px 16px #ffffff;
}

.clay-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Image ko bhi gol kiya */
  transition: transform 0.6s ease;
}

.earthy-clay-card:hover .clay-img-box img {
  transform: scale(1.05); /* Hover pe image halki zoom hogi */
}

/* BADGES (Chhote pop-out buttons) */
.clay-badges {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clay-badges span {
  background: var(--bg-color);
  backdrop-filter: blur(10px);
  color: var(--c-darkest);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;

  /* Small neumorphic pop for badges */
  box-shadow:
    4px 4px 10px rgba(36, 63, 18, 0.08),
    -4px -4px 10px #ffffff;
}

/* TEXT INFO */
.clay-info {
  padding: 5px 5px 10px;
}
.clay-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin: 0 0 4px 0;
  color: var(--c-darkest);
}
.clay-info .hindi-txt {
  color: var(--c-light);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
}
.clay-info p {
  color: var(--c-mid);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Features Section */
.features-modern {
  width: 100%;
  padding: 120px 0;
  background-image: url("./all_images/img4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card-modern {
  padding: 40px;
  background: rgba(45, 80, 22, 0.2);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  border: 1px solid rgba(45, 80, 22, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.1);
  border: 1px solid rgba(247, 252, 243, 0.82);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.2);
}

.feature-card-modern h3 {
  font-size: 24px;
  font-weight: 500;
  color: #f3f3f3;
  margin-bottom: 12px;
}

.feature-card-modern p {
  font-size: 18px;
  color: #ced6e0;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-modern {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card-modern {
  padding: 36px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2d5016;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.testimonial-author p {
  font-size: 14px;
  color: #64748b;
}

/* Contact Section */
.contact-modern {
  padding: 120px 0;
  background: white;
}

.contact-grid {
  display: flex;
  /* border: 1px solid red; */
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
}

.contact-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item-modern {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-modern {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-modern h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-item-modern p {
  font-size: 15px;
  color: #64748b;
}

.contact-form-modern {
  background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
  padding: 40px; /* Thoda kam kiya standard padding */
  border-radius: 24px;
  border: 2px solid rgba(45, 80, 22, 0.8);
  width: 60%; /* Parent element ki poori width lega */
  box-sizing: border-box; /* Border aur padding width ke andar hi rakhega */
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px; /* Har group ke niche gap */
}

.form-group-modern label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%; /* IMPORTANT: Fields ko bahar nikalne se rokega */
  box-sizing: border-box; /* IMPORTANT */
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--c-light, #4a7c25);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Button Formatting */
.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background-color: var(--c-dark, #2d5016);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-full:hover {
  background-color: var(--c-darkest, #243f12);
}

/* Footer */
.farm-footer {
  position: relative;
  width: 100%;
  min-height: 700px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* --- 1. BACKGROUND IMAGE LAYER --- */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("./all_images/img3.png");
  background-size: cover;
  background-position: 80% 95%;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
}

/* --- 2. DARK GRADIENT OVERLAY --- */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(45, 80, 22, 0) 0%,
    rgba(45, 80, 22, 0.2) 70%,
    rgba(23, 48, 10, 0.4) 80%,
    rgba(15, 35, 5, 0.95) 100%
  ); /* Thoda darker kiya bottom pe text clarity ke liye */
}

/* --- 3. MAIN CONTENT CONTAINER --- */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 50px 40px; /* Top padding badha di */
}

/* --- BIG HEADLINE --- */
.big-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 80px;
  max-width: 600px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* --- LINKS & BUTTON ROW --- */
.links-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.link-cols {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-links li {
  margin-bottom: 12px;
}

.f-links a {
  text-decoration: none;
  color: #f4f3f3;
  font-size: 22px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-links a::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 14px;
  background-color: #ff9e80;
}

.f-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* --- CONTACT BUTTON --- */
.contact-btn {
  background-color: #ff9e80;
  color: #1a350f;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Button text tutega nahi */
}

.contact-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

/* --- BOTTOM BAR --- */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f-logo {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright {
  font-size: 13px;
  color: #aaa;
}

.socials {
  display: flex;
  gap: 15px;
}

.soc-icon {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}
.soc-icon:hover {
  opacity: 1;
  color: #ff9e80;
}

/* Responsive Design */

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-heading {
    font-size: 56px;
  }

  .section-heading {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .nav-modern button {
    padding: 10px 10px;
  }
  .marathi-slogan-box {
    gap: 8px;
    /* Mobile par top-bottom gap thoda kam kiya */
    align-items: center;
    /* Mobile par poora text center mein accha lagega */
  }

  .slogan-top-line,
  .slogan-bottom-line {
    justify-content: center;
    /* Dono lines center ho jayengi */
  }

  .slogan-bottom-line {
    gap: 10px;
    /* Words ke beech ka gap mobile par thoda kam kar diya */
  }
}

/* media querires for products */
@media (min-width: 901px) {
  .scroll-wrapper {
    height: 350vh;
    /* Scroll length */
    position: relative;
    background-color: var(--brand-tint-light);
    /* Faint background for track */
  }

  .sticky-camera {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .horizontal-track {
    display: flex;
    gap: 50px;
    padding: 0 calc(50vw - 190px);
    /* Centers the first card perfectly */
    will-change: transform;
  }

  .earthy-clay-card {
    width: 380px;
    flex-shrink: 0;
  }
}

@media (max-width: 900px) {
  .nav-modern button {
    font-size: 13px;
  }
  /* IMPORTANT: Mobile pe height auto aur overflow visible taaki sticky chal sake */
  .section-header h2 {
    font-size: 34px;
  }

  .scroll-wrapper,
  .sticky-camera {
    height: auto;
    position: relative;
    overflow: visible !important;
    display: block;
    background-color: transparent;
  }

  .horizontal-track {
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    /* EXTRA SPACE AT BOTTOM SO 6TH CARD CAN STICK PROPERLY */
    padding-bottom: 25vh;
    gap: 0;
  }

  .earthy-clay-card {
    width: 100%;
    margin-bottom: 45vh;
    /* Space between cards to force scrolling */
    position: sticky;
  }

  /* STICKY STACKING WITH TILT */
  .earthy-clay-card:nth-child(1) {
    top: 120px;
    transform: rotate(-3deg);
    z-index: 1;
  }

  .earthy-clay-card:nth-child(2) {
    top: 135px;
    transform: rotate(1.5deg);
    z-index: 2;
  }

  .earthy-clay-card:nth-child(3) {
    top: 150px;
    transform: rotate(-2deg);
    z-index: 3;
  }

  .earthy-clay-card:nth-child(4) {
    top: 165px;
    transform: rotate(2deg);
    z-index: 4;
  }

  .earthy-clay-card:nth-child(5) {
    top: 180px;
    transform: rotate(-1.5deg);
    z-index: 5;
  }

  /* Last card doesn't need margin-bottom */
  .earthy-clay-card:nth-child(6) {
    top: 195px;
    transform: rotate(0deg);
    z-index: 6;
    margin-bottom: 0;
  }

  .farm-footer {
    min-height: auto; /* Height auto kardi taaki content kate na */
    padding-bottom: 20px;
  }

  .big-headline {
    font-size: 42px; /* Font thoda chota */
    margin-bottom: 50px;
    max-width: 100%;
  }

  .links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .link-cols {
    width: 100%;
    justify-content: space-between; /* Links spread ho jayenge */
  }

  .contact-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .logo-brand {
    width: 150px;
    height: 40px;
  }
  .menu-toggle {
    display: block !important; /* Force show */
  }

  /* 2. Navigation Menu ko Mobile view mein change karna */
  .nav-modern {
    position: absolute;
    top: 100%; /* Header ke just niche */
    left: 0;
    width: 100%;
    background-color: #ffffff; /* White Background */

    /* Flex direction column taki items niche-niche aayein */
    flex-direction: column;
    align-items: center;
    gap: 20px;

    /* Animation ke liye Hidden */
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease-in-out,
      padding 0.4s ease;

    /* Shadow taki header se alag dikhe */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* 3. ACTIVE CLASS (Jab JS isse add karega to menu khulega) */
  .nav-modern.active {
    max-height: 500px; /* Itna khulega ki sab dikh jaye */
    padding: 20px 0;
    border-bottom: 3px solid var(--dark-green);
  }

  /* Buttons ko thoda bada aur center karna mobile ke liye */
  .nav-modern button {
    width: 80%;
    text-align: center;
    padding: 12px;
    display: block; /* Force show buttons */
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rt-img {
    padding-top: 7px;
    padding-left: 10px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .section-heading {
    font-size: 32px;
  }

  .hero-main-image {
    height: 400px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-grid-modern,
  .features-grid,
  .testimonials-grid-modern {
    grid-template-columns: 1fr;
  }

  .contact-form-modern {
    padding: 25px 20px; /* Mobile par padding drastically kam ki */
    border-radius: 20px;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr; /* Name aur Email ek ke niche ek aayenge */
    gap: 0;
  }
}

@media (max-width: 525px) {
  .link-cols {
    flex-direction: column;
  }
  .f-links li a {
    font-size: 1.2rem;
    font-weight: 800;
  }
}

@media (max-width: 480px) {
  .logo-brand {
    width: 120px;
    height: 30px;
  }
  .hero-heading {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-modern {
    width: 100%;
  }
}
