/* --- 1. BRAND COLORS --- */
:root {
  --dark-green: #2d5016;
  --mid-green: #3d661e;
  --light-green: #4a7c25;
  --cream-bg: #f9f7f2; /* Warm background */
  --pattern-color: rgba(45, 80, 22, 0.05); /* Dots ka color */
  --white: #ffffff;
  --line-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rajdhani", sans-serif;
  color: #333;
  overflow-x: hidden;

  /* --- FIXED BACKGROUND IMAGE --- */
  background-image: url("../all_images/img5.jpg"); /* Path sahi check kar lena */
  background-size: 400px; /* Sketch thoda bada dikhega aur repeat hoga */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; /* Pattern ki tarah repeat hoga */
  background-attachment: fixed; /* Scroll karne par image wahi rahegi, gajab premium feel aayega */
  background-color: var(--cream-bg); /* Image ke niche base color */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* =========================================
           PRELOADER STYLING & ANIMATION
           ========================================= */
#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;
  }
}

/* =========================================
           PRELOADER STYLING & ANIMATION 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;
}
/* --- INTRO --- */
.intro {
  text-align: center;
  padding: 40px 20px 40px;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(15px);
}
.intro h1 {
  font-family: "Merriweather", serif;
  color: var(--dark-green);
  font-size: 48px;
  margin-bottom: 15px;
}
.intro p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
}

/* --- 2. THE TIMELINE CONTAINER (WIDER NOW) --- */
.timeline-container {
  position: relative;
  max-width: 1200px; /* Pehle 1000px tha, ab bada kiya */
  margin: 0 auto;
  padding: 40px 20px 120px;
}

.page-intro,
.timeline-container {
  background: transparent !important;
}

/* The Spine (Line) */
.center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px; /* Thodi moti line */
  background: #e0e0e0;
  transform: translateX(-50%);
  border-radius: 10px;
}

.center-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, var(--dark-green) 40%, transparent);
  opacity: 0.2;
}

/* --- 3. ITEMS --- */
.timeline-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px; /* Cards ke beech zyada gap */
  position: relative;
}

/* The Dot */
.node-dot {
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 5px solid var(--dark-green);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 0 8px rgba(45, 80, 22, 0.15); /* Bada glow */
}

/* CARD STYLING (THE BIG CHANGE) */
.content-box {
  width: 46%; /* Almost half width */
  max-width: 600px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(45, 80, 22, 0.8); /* Gehra Shadow */
  transition: all 0.4s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background: rgba(
    255,
    255,
    255,
    0.7
  ) !important; /* 90% white, 10% transparent */
  backdrop-filter: blur(15px);
}

/* Connector Lines */
.timeline-row::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 50%;
  height: 2px;
  background: #ccc;
  z-index: 1;
}

.row-left {
  justify-content: flex-start;
}
.row-left .content-box {
  margin-right: auto;
}
.row-left::before {
  right: 50%;
  transform-origin: right;
}

.row-right {
  justify-content: flex-end;
}
.row-right .content-box {
  margin-left: auto;
}
.row-right::before {
  left: 50%;
  transform-origin: left;
}

/* --- CARD CONTENT --- */
.img-area {
  height: 300px; /* Pehle 220px tha, ab bada kiya */
  width: 100%;
  overflow: hidden;
  position: relative;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay Badge on Image */
.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.text-area {
  padding: 35px; /* Zyada spacing */
  position: relative;
}

/* Number Watermark */
.cat-bg-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Merriweather", serif;
  line-height: 1;
}

.cat-title {
  font-family: "Merriweather", serif;
  font-size: 28px; /* Bada Font */
  color: var(--dark-green);
  margin-bottom: 5px;
  position: relative;
}

.cat-hindi {
  font-family: "Tiro Devanagari Marathi", serif;
  color: var(--light-green);
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
}

.cat-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  font-weight: 500;
}

.btn-arrow {
  margin-top: 20px;
  display: inline-block;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border-bottom: 2px solid var(--light-green);
  padding-bottom: 2px;
}

/* --- HOVER EFFECTS --- */

.content-box:hover .img-area img {
  transform: scale(1.1);
}

.content-box:hover .node-dot {
  background: var(--dark-green);
  transform: translateX(-50%) scale(1.2); /* Dot bada hoga */
}
.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);
}


/* =========================================
           3. NEUMORPHIC FAQ SECTION
           ========================================= */
        .transparency-header { text-align: center; margin-bottom: 60px; }
        .transparency-header .sub-tag { color: var(--c-light); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 10px; }
        .transparency-header h2 { font-size: 42px; color: var(--c-darkest); margin: 0 0 10px 0; font-family: 'Playfair Display', serif; }
        .transparency-header p { color: var(--c-mid); font-size: 16px; }

        /* =========================================
           UNIFIED GUARANTEE PLAQUE (LICENSES)
           ========================================= */
        .trust-registry-section {
            background: linear-gradient(to bottom, #ffffff 0%, var(--bg-color) 30%); /* Tune smooth blend manga tha */
        }

        .unified-plaque {
            max-width: 1000px; margin: 0 auto; background: var(--bg-color);
            border-radius: 40px; padding: 50px 60px; display: flex; align-items: center; gap: 60px;
            box-shadow: 20px 20px 40px rgba(36, 63, 18, 0.08), -20px -20px 40px #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .plaque-left { flex-shrink: 0; }

        .premium-seal {
            width: 180px; height: 180px; border-radius: 50%; background: var(--bg-color);
            box-shadow: inset 8px 8px 16px rgba(36, 63, 18, 0.12), inset -8px -8px 16px #ffffff;
            display: flex; align-items: center; justify-content: center; padding: 20px;
        }

        .seal-inner {
            width: 100%; height: 100%; border-radius: 50%; background: var(--bg-color);
            box-shadow: 6px 6px 12px rgba(36, 63, 18, 0.08), -6px -6px 12px #ffffff;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .seal-text { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--c-darkest); letter-spacing: 2px; }
        .seal-year { font-size: 10px; font-weight: 600; color: var(--c-mid); letter-spacing: 1px; margin-top: 2px; }

        .plaque-right { flex: 1; display: flex; flex-direction: column; gap: 25px; }

        .plaque-row {
            display: flex; align-items: center; justify-content: space-between; padding-bottom: 25px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.8); box-shadow: 0 2px 2px -1px rgba(36, 63, 18, 0.05);
        }

        .plaque-row:last-child { padding-bottom: 0; border-bottom: none; box-shadow: none; }

        .row-info h4 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--c-darkest); margin: 0 0 5px 0; }
        .row-info p { font-size: 14px; color: var(--c-mid); margin: 0; }

        .row-number {
            background: var(--bg-color); padding: 12px 20px; border-radius: 12px;
            font-family: monospace; font-size: 16px; font-weight: 600; color: var(--c-darkest); letter-spacing: 1.5px;
            box-shadow: inset 5px 5px 10px rgba(36, 63, 18, 0.1), inset -5px -5px 10px #ffffff;
        }

        /* =========================================
           NEUMORPHIC FAQ SECTION
           ========================================= */



        .faq-container { max-width: 900px; margin: 0 auto; }
        .faq-list { display: flex; flex-direction: column; gap: 25px; }

        .neu-faq-item {
            background: var(--bg-color); border-radius: 20px; overflow: hidden;
            box-shadow: 8px 8px 16px rgba(36, 63, 18, 0.08), -8px -8px 16px #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.5); transition: all 0.4s ease;
        }

        .neu-faq-item.active { box-shadow: inset 4px 4px 10px rgba(36, 63, 18, 0.05), inset -4px -4px 10px #ffffff; }

        .neu-faq-question {
            width: 100%; text-align: left; padding: 24px 30px; background: transparent; border: none;
            font-size: 18px; font-weight: 600; color: var(--c-darkest); cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            font-family: 'Poppins', sans-serif; transition: color 0.3s;
        }

        .neu-faq-icon {
            width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--bg-color);
            display: flex; align-items: center; justify-content: center; color: var(--c-light);
            box-shadow: 4px 4px 8px rgba(36, 63, 18, 0.1), -4px -4px 8px #ffffff; transition: all 0.4s ease;
        }

        .neu-faq-item.active .neu-faq-question { color: var(--c-light); }
        .neu-faq-item.active .neu-faq-icon {
            transform: rotate(45deg); color: var(--c-darkest);
            box-shadow: inset 3px 3px 6px rgba(36, 63, 18, 0.1), inset -3px -3px 6px #ffffff;
        }

        .neu-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
        .neu-faq-answer p { margin: 0; padding: 0 30px 30px; color: var(--c-mid); line-height: 1.7; font-size: 15px; }


/* 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: #e0e0e0;
  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;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-heading {
    font-size: 56px;
  }

  .section-heading {
    font-size: 40px;
  }
              .unified-plaque { flex-direction: column; padding: 40px 20px; gap: 35px; text-align: center; width: 100%; box-sizing: border-box; }
            .plaque-right { width: 100%; }
            .plaque-row { flex-direction: column; gap: 12px; align-items: center; text-align: center; padding-bottom: 20px; }
            .row-info h4 { font-size: 20px; }
            .row-number { width: 100%; max-width: 320px; margin: 0 auto; font-size: 14px; padding: 12px 10px; word-break: break-all; }
}

@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%;
  }
  .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: 850px) {
            .neu-faq-question { font-size: 15px; padding: 20px; gap: 15px; }
            .neu-faq-answer p { padding: 0 20px 20px; }
            .neu-faq-icon { width: 36px; height: 36px; }
            .transparency-header h2 { font-size: 32px; }
        }

@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 */
  }

  .center-line {
    left: 25px;
  }
  .node-dot {
    left: 25px;
  }
  .timeline-row {
    justify-content: flex-end;
    margin-bottom: 50px;
  }
  .content-box {
    width: 85%;
    margin-left: auto;
  } /* Card width full on mobile */
  .timeline-row::before {
    left: 25px;
    width: 30px;
  }

  .img-area {
    height: 220px;
  } /* Mobile pe thoda chhota */
  .text-area {
    padding: 25px;
  }
  .cat-title {
    font-size: 24px;
  }

  .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;
  }

  .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%;
  }
  
            .premium-seal { width: 140px; height: 140px; padding: 15px; }
            .seal-text { font-size: 14px; }
            .row-number { font-size: 13px; }
}

/* --- MOBILE RESPONSIVE --- */
