/* =========================================
           1. FONTS IMPORT
           ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600;700&family=Tiro+Devanagari+Marathi&display=swap");

/* =========================================
           2. GLOBAL VARIABLES
           ========================================= */
:root {
  --dark-green: #2d5016;
  --mid-green: #3d661e;
  --light-green: #4a7c25;
  --faint-bg: rgba(45, 80, 22, 0.05);
  --white: #ffffff;
  --text-gray: #555555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
  background-color: #fafafa;
  color: var(--text-gray);
  background-image: url("../all_images/img1.jpg");
  background-size: 400px;
  background-repeat: repeat;
  background-attachment: fixed;
  padding-top: 100px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.93);
  z-index: -1;
}

.container-modern {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

.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);
}

/* =========================================
           3. HEADER CSS
           ========================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* 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 */

.marathi-text {
  font-family: "Tiro Devanagari Marathi", serif;
}
.container-modern {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

.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);
}

/* 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;
  flex-direction: column;
  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;
  font-size: 20px;
  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.1);
  backdrop-filter: blur(10px);
  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;
}

/* =========================================
           4. PRODUCT PAGE CSS
           ========================================= */

h1,
h2,
h3 {
  font-family: "Playfair Display", serif !important;
}

.page-title {
  text-align: center;
  padding: 40px 20px 50px;
}
.page-title h1 {
  font-size: 42px;
  color: var(--dark-green);
  position: relative;
  display: inline-block;
}
.page-title h1::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: var(--light-green);
  margin: 10px auto 0;
}
.page-title p {
  color: var(--mid-green);
  margin-top: 10px;
  font-weight: 500;
}

.product-grid {
  display: flex;
  /* grid-template-columns: repeat(4, 1fr); */
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.royal-card {
  background: var(--white);
  padding: 8px;
  width: 300px;
  min-width: 250px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 15px rgba(45, 80, 22, 0.05);
  transition: transform 0.3s ease;
}
.royal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(45, 80, 22, 0.15);
}

.inner-frame {
  border: 1px solid var(--light-green);
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--faint-bg);
}

.img-box {
  width: 100%;
  height: 180px;
  margin-bottom: 15px;
  overflow: hidden;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.royal-card:hover .img-box img {
  transform: scale(1.05);
}

.cat-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-green);
  margin-bottom: 5px;
  font-weight: 600;
}

/* --- TITLE SETTINGS (HINDI BADA, ENGLISH CHOTA) --- */
.prod-name {
  font-family: "Tiro Devanagari Marathi", serif !important; /* Hindi Font */
  font-size: 1.7rem; /* BADA SIZE */
  color: var(--dark-green);
  margin-bottom: 4px;
  line-height: 1.2;
  font-weight: 300;
}

.prod-english {
  font-family: "Poppins", sans-serif !important; /* English Font */
  font-size: 13px; /* CHOTA SIZE */
  color: var(--light-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--dark-green);
  margin: 0 auto 12px;
  opacity: 0.3;
}

/* --- DESCRIPTION (Back to English Font) --- */
.desc {
  font-family: "Poppins", sans-serif !important; /* English Font */
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-info {
  margin-top: auto;
  width: 100%;
  border-top: 1px dashed var(--light-green);
  padding-top: 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Poppins", sans-serif !important; /* English Font */
  color: var(--dark-green);
  display: flex;
  justify-content: space-between;
}

.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) {
  .split-hero {
    flex-direction: column-reverse;
    padding-top: 50px;
    text-align: center;
  }
  .hero-video-wrapper {
    width: 100%;
  }
  .main-heading {
    font-size: 36px;
  }
  .video-backdrop {
    display: none;
  } /* Mobile pe background box hata diya taaki clean dikhe */

  .startup-story {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .royal-card {
    grid-template-columns: repeat(3, 1fr);
  }
  .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: 900px) {
  /* Menu Toggle Button ko dikhana */
  .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 */
  }

  /* Search bar adjustment for mobile */
  #search-area {
    margin: 0 0 10px 0;
    width: 80%;
    justify-content: center;
  }
  #search-input {
    right: 0;
    position: relative;
    width: 100%;
  }
  .royal-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .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;
  }

  .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;
  }
  .royal-card {
    grid-template-columns: repeat(3, 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%;
  }
}
