/* ===================================================================
   ROKADIYA INDUSTRIES V2 – styles.css
   Color Palette:
   --green:  #1a6b3a  (deep forest green)
   --gold:   #c8952a  (warm amber/gold)
   --dark:   #0f1c12  (very dark green-black)
   --cream:  #faf7f0  (warm off-white)
   =================================================================== */

:root {
  --green: #1a6b3a;
  --green-light: #2a8c4e;
  --green-dark: #0f3d22;
  --gold: #c8952a;
  --gold-light: #e8b84b;
  --dark: #0f1c12;
  --cream: #faf7f0;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --font-main: 'Inter', 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --transition: 0.3s ease;
}

/* ======================== RESET & BASE ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ======================== TOP BAR ======================== */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 8px 0;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-inner span { gap: 6px; }

/* ======================== NAVBAR ======================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links li a.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links li a.nav-link:hover,
.nav-links li a.nav-link.active {
  background: rgba(26,107,58,0.08);
  color: var(--green);
}
.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,107,58,0.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: white;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,149,42,0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { font-size: 1.1rem; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ======================== SECTION COMMON ======================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(26,107,58,0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ======================== HERO BANNER (motheragrifood style) ======================== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(110deg, #fff9eb 0%, #faecc5 60%, #e6f0db 100%);
}
@media (max-width: 768px) { .hero-banner { height: auto; min-height: 400px; } }

/* ---- Slide wrapper ---- */
.slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---- Individual slide ---- */
.banner-slide {
  position: relative;
  opacity: 1;
  transition: none;
  transform: none;
  pointer-events: auto;
  height: 100%;
}

/* ---- Background image layer & Overlay (Removed for seamless mask approach) ---- */
.banner-bg { display: none; }
.banner-overlay { display: none; }

/* ---- Inner layout: text left, image right ---- */
.banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

/* ---- Text block (left) ---- */
.banner-text {
  max-width: 480px;
  position: relative;
  z-index: 3;
}
.banner-welcome {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: #6b6b4a;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.banner-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  font-style: italic;
  color: #2d3a1a;
  line-height: 1.15;
  margin-bottom: 18px;
}
.banner-desc {
  font-size: 1.05rem;
  color: #4a5c3a;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 400px;
}
.btn-banner {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(26,107,58,0.25);
}
.btn-banner:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,107,58,0.35);
}

/* ---- Product image block (Seamless masked right side) ---- */
.banner-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 65%;
  z-index: 1;
  /* Creates a seamless fade on the left edge into the background gradient */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 5%, rgba(0,0,0,0.8) 25%, black 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 5%, rgba(0,0,0,0.8) 25%, black 40%);
}
.banner-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
/* Spice slide visual */
.spice-bowl-visual,
.globe-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.spice-ring, .globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(200,149,42,0.4);
  animation: spinRing 12s linear infinite;
}
.r1, .gr1 { width: 220px; height: 220px; animation-direction: normal; }
.r2, .gr2 { width: 160px; height: 160px; animation-direction: reverse; border-color: rgba(26,107,58,0.3); }
.globe-ring { border-color: rgba(26,107,58,0.35); }
.gr2 { border-color: rgba(200,149,42,0.3); }
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.spice-center, .globe-center {
  font-size: 5rem;
  z-index: 2;
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Slider dots ---- */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(100,80,30,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.dot.active {
  background: var(--green);
  transform: scale(1.25);
}
.dot:hover { background: var(--gold); }

/* ---- Prev / Next arrows ---- */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.slide-arrow:hover {
  background: var(--green);
  color: white;
  transform: translateY(-50%) scale(1.08);
}
.slide-prev { left: 16px; }
.slide-next { right: 60px; }

/* ---- Quick Inquiry vertical tab ---- */
.quick-inquiry-tab {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 20;
  background: var(--dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  transition: background 0.3s, padding 0.2s;
  cursor: pointer;
}
.quick-inquiry-tab:hover { background: var(--green); }

/* ---- Banner responsive ---- */
@media (max-width: 900px) {
  .banner-inner { padding: 0 24px; gap: 12px; }
  .banner-product-img { max-width: 100%; }
  .banner-heading { font-size: 2.6rem; }
  .spice-bowl-visual, .globe-visual { width: 200px; height: 200px; }
  .r1, .gr1 { width: 160px; height: 160px; }
  .r2, .gr2 { width: 110px; height: 110px; }
}
@media (max-width: 768px) {
  .banner-img-wrap {
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.7) 40%, black 60%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.7) 40%, black 60%);
  }
  .banner-text { max-width: 380px; }
}
@media (max-width: 640px) {
  .hero-banner { height: auto; min-height: 580px; }
  .banner-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .banner-inner { 
    flex-direction: column; 
    padding: 60px 20px 20px; 
    justify-content: flex-start; 
    height: auto;
    z-index: 2;
  }
  .banner-text { max-width: 100%; text-align: center; }
  .banner-desc { max-width: 100%; margin: 0 auto 28px auto; }
  
  /* Move image to bottom and fade upwards */
  .banner-img-wrap { 
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: auto;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    z-index: 1;
  }
  .banner-product-img { max-width: 100%; height: 100%; object-fit: cover; object-position: center; }
  
  .slide-next { right: 16px; }
  .quick-inquiry-tab { display: none; }
}

/* ======================== MARQUEE ======================== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
.marquee-track .sep {
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======================== ABOUT ======================== */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  padding-bottom: 40px;
}
.about-img-inner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  font-size: 3rem;
  flex-direction: column;
  gap: 16px;
}
.field-scene {
  text-align: center;
}
.field-sun { font-size: 3rem; }
.field-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.field-row {
  height: 8px;
  background: linear-gradient(90deg, #4caf50, #2e7d32);
  border-radius: 4px;
  width: 180px;
}
.field-label { font-size: 0.9rem; color: var(--green); font-weight: 600; }
.about-badge-card {
  position: absolute;
  bottom: 0;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-badge-card-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--green);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  color: white;
}
.about-badge-card-2 .abc-title { color: white; }
.about-badge-card-2 .abc-sub { color: rgba(255,255,255,0.75); }
.abc-icon { font-size: 1.8rem; }
.abc-title { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.abc-sub { font-size: 0.75rem; color: var(--gray); }
.about-lead {
  font-size: 1.08rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-body {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all var(--transition);
}
.pillar:hover { background: rgba(26,107,58,0.06); }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; }
.pillar-title { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.pillar-desc { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.about-missions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.mission-card {
  padding: 16px;
  border-left: 3px solid var(--green);
  background: rgba(26,107,58,0.04);
  border-radius: 0 8px 8px 0;
}
.mission-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.mission-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ======================== STATS ======================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 32px 16px;
}
.stat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-suffix { font-size: 1.5rem; color: var(--gold-light); font-weight: 700; display: inline; }
.stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 8px; }

/* ======================== PRODUCTS ======================== */
.products {
  padding: 100px 0;
  background: var(--cream);
}
.product-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: white;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(26,107,58,0.25);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.product-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prod-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .prod-photo { transform: scale(1.06); }
.product-emoji {
  font-size: 3.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.product-specs span {
  font-size: 0.72rem;
  background: var(--light-gray);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}
.product-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  transition: all var(--transition);
}
.product-cta:hover { color: var(--gold); letter-spacing: 0.5px; }
.product-card.hidden { display: none; }

/* ======================== WHY US ======================== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.why-card:hover::before { transform: scaleY(1); }
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ======================== PROCESS ======================== */
.process {
  padding: 100px 0;
  background: var(--cream);
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  text-align: center;
  padding: 28px 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.process-step h3 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process-step p { font-size: 0.76rem; color: var(--gray); line-height: 1.5; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ======================== EXPORTS ======================== */
.exports {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.exports .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.exports .section-title { color: white; }
.exports .section-subtitle { color: rgba(255,255,255,0.65); }
.export-regions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.region-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.region-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.region-flag { font-size: 1.5rem; margin-bottom: 10px; }
.region-name { font-weight: 700; color: white; font-size: 0.9rem; margin-bottom: 6px; }
.region-countries { font-size: 0.74rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ======================== CERTIFICATIONS ======================== */
.certifications {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
}
.cert-badge:hover { border-color: var(--green); transform: translateY(-2px); }
.cert-icon { font-size: 1.5rem; }
.cert-badge span { font-size: 0.72rem; font-weight: 700; color: var(--dark); }

/* ======================== CONTACT ======================== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 3px; }
.ci-value { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
}
.social-link:hover { background: var(--green); color: white; border-color: var(--green); }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: all var(--transition);
  background: var(--cream);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(26,107,58,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  background: rgba(26,107,58,0.08);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-success.visible { display: block; }

/* Form attention-shake triggered by floating CTA click */
@keyframes shakeForm {
  0%        { transform: translateX(0); }
  15%       { transform: translateX(-8px); }
  30%       { transform: translateX(8px); }
  45%       { transform: translateX(-6px); }
  60%       { transform: translateX(6px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
  100%      { transform: translateX(0); }
}
.shake-attention {
  animation: shakeForm 0.7s cubic-bezier(.36,.07,.19,.97) both;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius);
}


/* ======================== FOOTER ======================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.5fr;
  gap: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 8px; }
.footer .logo-main { color: white; }
.footer .logo-sub { color: var(--gold-light); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ======================== REGISTER BAR (bottom-center) ======================== */

/* Outer: full-width invisible centering wrapper */
.register-bar-outer {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  opacity: 0;
}
.register-bar-outer.visible {
  transform: translateY(0);
  opacity: 1;
}
.register-bar-outer.dismissed {
  display: none;
}

/* Inner: compact pill button */
.register-bar {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,107,58,0.2);
  position: relative;
}

/* Main button link */
.register-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.register-bar-btn:hover {
  background: linear-gradient(90deg, var(--green-light) 0%, var(--green-dark) 100%);
  transform: translateY(-2px);
}

.register-bar-btn:active {
  transform: translateY(0);
}

/* Remove the pulsing glow animation */

/* Dismiss × */
.register-bar-close {
  background: rgba(0,0,0,0.22);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  padding: 13px 16px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.register-bar-close:hover {
  background: rgba(160,0,0,0.6);
  color: #fff;
}

/* Mobile */
@media (max-width: 480px) {
  .register-bar-btn { font-size: 0.82rem; padding: 12px 20px; }
  .register-bar-close { padding: 12px 14px; }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .export-regions { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: white;
    padding: 32px 24px;
    gap: 8px;
    z-index: 999;
    animation: slide-down 0.3s ease;
  }
  @keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open li a.nav-link {
    font-size: 1.1rem;
    padding: 14px 16px;
    display: block;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta.open {
    display: block;
    margin: 16px auto 0;
    text-align: center;
    width: 100%;
    max-width: 320px;
  }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-card { right: 8px; }
  .about-badge-card-2 { left: 8px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .export-regions { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-missions { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .fc1, .fc2, .fc3, .fc4 { display: none; }
}

@media (max-width: 600px) {
  .top-bar-inner { justify-content: center; gap: 12px; }
  .hero { padding: 100px 16px 60px; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .export-regions { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .cert-row { flex-direction: column; align-items: flex-start; }
  .about-pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATION ENHANCEMENTS (Bharat Global + Mother Agri combo)
   ============================================================ */

/* ---- HERO ENTRANCE ANIMATIONS ---- */
.hero-badge  { animation: heroSlideDown 0.8s ease 0.2s both; }
.hero-title  { animation: heroSlideUp   0.9s ease 0.4s both; }
.hero-subtitle { animation: heroFadeIn 0.9s ease 0.65s both; }
.hero-actions  { animation: heroFadeIn 0.9s ease 0.85s both; }
.hero-stats    { animation: heroFadeIn 0.9s ease 1.05s both; }
.hero-scroll-indicator { animation: heroFadeIn 1s ease 1.4s both; }

@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- HERO FLOATING PARTICLES ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20px) rotate(720deg);  opacity: 0; }
}

/* ---- FLOATING CARDS (extra 2) ---- */
.fc5 { top: 40%; left: 2.5%; animation-delay: 4s; }
.fc6 { top: 28%; right: 3%; animation-delay: 5s; }

/* ---- ENHANCED FLOATING CARDS ---- */
.floating-card {
  background: rgba(255,255,255,0.14) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: background 0.3s, box-shadow 0.3s;
}
.floating-card:hover {
  background: rgba(255,255,255,0.22) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ---- PRODUCT CARDS – Stagger + Shimmer + 3D Hover ---- */
.product-card {
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 800px;
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.18) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  transform: translateX(-100%);
}
.product-card:hover::after {
  opacity: 1;
  animation: shimmerSweep 0.65s ease forwards;
}
@keyframes shimmerSweep {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%);  }
}
/* Subtle 3D tilt on hover handled in JS via mousemove */
.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 60px rgba(26,107,58,0.2), 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--green);
}
/* Staggered AOS for product cards set in JS */
.product-card .product-img {
  overflow: hidden;
  transition: all 0.5s ease;
}
.product-card:hover .product-img {
  border-radius: 12px 12px 0 0;
}
.prod-photo { transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.product-card:hover .prod-photo { transform: scale(1.1); }

/* Product tag animated underline */
.product-cta {
  position: relative;
  display: inline-block;
}
.product-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.product-cta:hover::after { width: 100%; }

/* ---- MARQUEE STRIP – enhanced with glow ---- */
.marquee-strip {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--gold) 50%, var(--green-dark) 100%);
  background-size: 200% 100%;
  animation: marqueeStrip 6s linear infinite;
  position: relative;
  overflow: hidden;
}
@keyframes marqueeStrip {
  0%   { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}
.marquee-track span {
  letter-spacing: 0.8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ---- PROCESS STEP enhanced ---- */
.process-step {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
}
.process-step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 48px rgba(26,107,58,0.2);
  border-color: var(--gold);
}
.process-step .step-num {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.9;
  font-family: var(--font-display);
  font-weight: 800;
}

/* ---- STAT CARDS pulse glow ---- */
.stat-card {
  position: relative;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.04);
}
.stat-number {
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION HEADINGS animated underline ---- */
.section-title {
  position: relative;
  display: inline-block;
}
.section-header .section-title::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.65,0,0.35,1) 0.3s;
}
.section-header.aos-animate .section-title::after,
[data-aos].aos-animate .section-title::after {
  width: 80px;
}

/* ---- NAVBAR refined entrance ---- */
.navbar { animation: navbarDrop 0.5s ease 0.1s both; }
@keyframes navbarDrop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ---- CERT BADGES animated border ---- */
.cert-badge {
  position: relative;
  overflow: hidden;
}
.cert-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.cert-badge:hover { color: white; border-color: transparent; }
.cert-badge:hover::before { opacity: 1; }
.cert-badge:hover span { color: white; }

/* ---- HERO VISUAL circular decor (Bharat Global) ---- */
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.1);
  animation: rotateSlow 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  right: -2%;
  top: 20%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(200,149,42,0.12);
  animation: rotateSlow 20s linear infinite reverse;
  pointer-events: none;
  z-index: 1;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

