/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@400;500;700;800&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

/* Color Variables and Tokens */
:root {
  --gold-primary: #c18d3b;
  --gold-light: #f5edd8;
  --gold-dark: #8c5c1e;
  --gold-accent: #e5b869;
  --border-gold: #d9a752;
  --bg-light: #faf7f2;
  --bg-white: #ffffff;
  --bg-dark: #0f1216;
  --bg-dark-accent: #191e24;
  --text-dark: #2c251c;
  --text-muted: #6e6456;
  --text-light: #faf7f2;
  --text-light-muted: #b0a79a;
  
  --shadow-premium: 0 10px 30px rgba(193, 141, 59, 0.08);
  --shadow-deep: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Planetary Colors */
  --color-sun: #ff3b30;       /* सूर्य का सुर्ख लाल */
  --color-moon: #ffffff;      /* चन्द्रमा का श्वेत (सफेद) */
  --color-mars: #e02424;      /* मंगल का लाल */
  --color-mercury: #059669;   /* बुध का हरा */
  --color-jupiter: #fbbf24;   /* बृहस्पति का पीला */
  --color-venus: #f3f4f6;     /* शुक्र का सफेद */
  --color-saturn: #111827;    /* शनि का काला */
  --color-rahu: #1d4ed8;      /* राहु का नीला */
  --color-ketu: #4b5563;      /* केतु का काला/ग्रे */
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-title {
  font-family: 'Noto Serif Devanagari', 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  color: var(--gold-primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Subpage Banner styling */
.subpage-banner {
  background: linear-gradient(135deg, rgba(15, 18, 22, 0.9) 0%, rgba(25, 30, 36, 0.95) 100%), url('assets/hero-bg.png') no-repeat center center / cover;
  padding: 60px 0;
  text-align: center;
  color: var(--text-light);
  border-bottom: 2px solid var(--border-gold);
}

.subpage-banner-title {
  font-size: 2.8rem;
  color: var(--gold-accent);
  margin-bottom: 10px;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.breadcrumbs a {
  color: var(--text-light);
  margin: 0 5px;
}

.breadcrumbs a:hover {
  color: var(--gold-accent);
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(217, 167, 82, 0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a:hover {
  color: var(--gold-primary);
}

.lang-switch {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Main Navigation Header */
.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-premium);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(193, 141, 59, 0.1);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.6rem;
  color: var(--gold-dark);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-item:hover .nav-link {
  color: var(--gold-primary);
}

.nav-item:hover .nav-link::after {
  width: 100%;
}

/* Dropdown / Submenus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  min-width: 650px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-gold);
  border-left: 1px solid var(--border-gold);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-title {
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 6px;
  margin-bottom: 4px;
}

.dropdown-link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-item i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.dropdown-item:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.dropdown-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Planet List in Dropdown */
.planet-color-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.planet-color-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--bg-light);
}

.planet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* Right Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon-btn {
  position: relative;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.cart-icon-btn:hover {
  color: var(--gold-primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--gold-primary);
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 18, 22, 0.8) 0%, rgba(15, 18, 22, 0.95) 100%), url('assets/hero-bg.png') no-repeat center center / cover;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding: 80px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--border-gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 2;
}

.hero-sub {
  color: var(--gold-accent);
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-title span {
  display: block;
  font-size: 4.5rem;
  color: var(--gold-accent);
  margin-top: 5px;
  text-shadow: 0 0 20px rgba(229, 184, 105, 0.3);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 550px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--text-light);
  border: 1px solid var(--gold-primary);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(193, 141, 59, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border-gold);
}

.btn-secondary:hover {
  background-color: rgba(217, 167, 82, 0.1);
  transform: translateY(-2px);
}

.hero-yogi-container {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Pulsating Aura & Chakras */
.yogi-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(193, 141, 59, 0.2));
}

.chakra-point {
  animation: pulse-chakra 2s infinite alternate;
}

@keyframes pulse-chakra {
  0% {
    r: 6px;
    fill-opacity: 0.8;
  }
  100% {
    r: 10px;
    fill-opacity: 1;
    filter: drop-shadow(0 0 6px var(--chakra-color));
  }
}

/* Features Trust Badges Row */
.trust-badges-row {
  background-color: var(--bg-white);
  padding: 30px 0;
  border-bottom: 1px solid rgba(193, 141, 59, 0.1);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: var(--transition-smooth);
}

.badge-card:hover {
  transform: translateY(-5px);
}

.badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.6rem;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.badge-card:hover .badge-icon {
  background-color: var(--gold-primary);
  color: var(--text-light);
  transform: rotateY(180deg);
}

.badge-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Split Section Styling (Founder and general layouts) */
.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.premium-quote {
  background-color: var(--bg-white);
  border-left: 5px solid var(--gold-primary);
  border-right: 1px solid var(--gold-light);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--gold-dark);
  box-shadow: var(--shadow-premium);
  border-radius: 0 12px 12px 0;
  position: relative;
}

.premium-quote::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -15px;
  left: 10px;
  opacity: 0.1;
  color: var(--gold-primary);
}

.quote-author {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 15px;
  text-align: right;
  letter-spacing: 1px;
}

/* Interactive Diagram styling */
.diagram-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.orbit-system {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-mat-center {
  width: 200px;
  height: 150px;
  z-index: 5;
  cursor: pointer;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.orbit-mat-center:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Mat Stripes dynamic styles */
.mat-svg-rect {
  transition: var(--transition-fast);
  cursor: pointer;
}

.mat-svg-rect.highlighted {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(193, 141, 59, 0.8));
}

.planet-node {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 6;
}

.planet-sphere {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: inset -5px -5px 10px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
  position: relative;
}

.planet-label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  background-color: var(--bg-white);
  padding: 1px 6px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border: 1px solid var(--gold-light);
  white-space: nowrap;
}

.planet-node:hover .planet-sphere,
.planet-node.active .planet-sphere {
  transform: scale(1.2);
  box-shadow: inset -3px -3px 8px rgba(0,0,0,0.4), 0 0 15px var(--planet-glow);
}

.planet-node:hover .planet-label,
.planet-node.active .planet-label {
  background-color: var(--gold-primary);
  color: var(--text-light);
  border-color: var(--gold-primary);
}

/* Planet positions around mat center */
.p-sun     { top: 5%; left: 45%; --planet-glow: var(--color-sun); }
.p-moon    { top: 15%; right: 15%; --planet-glow: var(--color-moon); }
.p-mars    { top: 40%; right: 5%; --planet-glow: var(--color-mars); }
.p-mercury { top: 65%; right: 12%; --planet-glow: var(--color-mercury); }
.p-jupiter { top: 85%; right: 35%; --planet-glow: var(--color-jupiter); }
.p-venus   { top: 85%; left: 35%; --planet-glow: var(--color-venus); }
.p-saturn  { top: 65%; left: 12%; --planet-glow: var(--color-saturn); }
.p-rahu    { top: 40%; left: 5%; --planet-glow: var(--color-rahu); }
.p-ketu    { top: 15%; left: 15%; --planet-glow: var(--color-ketu); }

.planet-info-card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 12px 20px;
  width: 320px;
  box-shadow: var(--shadow-deep);
  z-index: 10;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.planet-info-card.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-10px);
}

.planet-info-title {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.planet-info-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Vision Mission Values Dashboard Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.value-card {
  background-color: var(--bg-white);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-deep);
}

.value-card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold-primary);
}

.value-card-title {
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.value-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Initiatives & Core Sectors Grid */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.initiative-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(193, 141, 59, 0.12);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.initiative-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: left;
}

.initiative-card:hover::before {
  transform: scaleX(1);
}

.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--border-gold);
}

.init-icon-box {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.init-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.init-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Portfolio Section split current vs upcoming */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.upcoming-card {
  background: var(--bg-white);
  border: 1px dashed var(--border-gold);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.upcoming-card:hover {
  background: var(--gold-light);
  border-style: solid;
  transform: scale(1.03);
}

.upcoming-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.upcoming-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.upcoming-badge {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--gold-dark);
  background: rgba(193, 141, 59, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 6px;
  font-weight: 500;
}

/* R&D and Rationale grids */
.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.research-list-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-premium);
}

.research-list-title {
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 10px;
}

.research-items-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.research-item-btn {
  background: var(--bg-light);
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.research-item-btn:hover {
  background-color: var(--gold-primary);
  color: var(--text-light);
  border-color: var(--gold-primary);
}

/* Government Schemes and Potential Alignment */
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.scheme-badge-card {
  background: var(--bg-white);
  border: 1.5px solid var(--gold-light);
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120px;
  box-shadow: var(--shadow-premium);
}

.scheme-badge-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.scheme-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.scheme-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.disclaimer-block {
  background: rgba(193, 141, 59, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 15px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 40px;
  text-align: justify;
}

/* Future Roadmap Timeline */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px 0;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  z-index: 1;
}

.timeline-item.left::after {
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

.timeline-content {
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--gold-light);
  display: inline-block;
  text-align: left;
  max-width: 320px;
}

.timeline-year {
  font-size: 1.25rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Contact and Forms layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-card-box {
  background: var(--bg-white);
  border: 1.5px solid var(--gold-light);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow-premium);
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item-row i {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-top: 4px;
}

.contact-item-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item-details p, .contact-item-details a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.premium-form {
  background-color: var(--bg-white);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-deep);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 0.9rem;
  border: 1.5px solid var(--gold-light);
  border-radius: 6px;
  background-color: var(--bg-light);
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background-color: var(--bg-white);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  height: 120px;
}

/* Plants Carousel Slider & details */
.carousel-outer {
  position: relative;
  padding: 0 40px;
  margin-top: 40px;
}

.plants-carousel-track-container {
  overflow: hidden;
}

.plants-carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 0;
}

.plant-card {
  min-width: calc(33.333% - 17px);
  flex-shrink: 0;
  background-color: var(--bg-light);
  border: 1px solid rgba(193, 141, 59, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plant-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--border-gold);
}

.plant-img-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.plant-card:hover .plant-img-wrapper {
  transform: scale(1.05);
  border-color: var(--gold-primary);
}

.plant-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.plant-sci {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.plant-benefits {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-gold {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 4px;
  background: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--gold-primary);
  color: var(--text-light);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-deep);
  z-index: 2;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background-color: var(--gold-primary);
  color: var(--text-light);
  border-color: var(--gold-primary);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Products Showcase Section */
.products-section {
  background-color: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(193, 141, 59, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.product-img-box {
  position: relative;
  width: 100%;
  padding-bottom: 85%;
  background: #fcfbf9;
  overflow: hidden;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e02424;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 1;
}

.product-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.reviews-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.btn-buy {
  background-color: var(--gold-primary);
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-buy:hover {
  background-color: var(--gold-dark);
  transform: scale(1.05);
}

.all-products-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Guidelines and Rationale Section */
.guidance-section {
  background-color: var(--bg-white);
  border-top: 1px solid rgba(193, 141, 59, 0.1);
}

.guidance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.guidance-block {
  background: var(--bg-light);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 30px;
}

.guidance-block-title {
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-gold);
  padding-bottom: 10px;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.rule-item i {
  color: var(--gold-primary);
  margin-top: 4px;
  font-size: 1.1rem;
}

.rationale-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.rationale-shlok {
  background-color: var(--bg-white);
  border-left: 4px solid var(--gold-primary);
  padding: 15px;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 15px 0;
  text-align: center;
}

/* Botanical Mappings Table Section */
.table-section {
  background-color: var(--bg-light);
}

.table-wrapper {
  overflow-x: auto;
  background-color: var(--bg-white);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  margin-top: 30px;
}

.botanical-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.botanical-table th, .botanical-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--gold-light);
}

.botanical-table th {
  background-color: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 700;
}

.botanical-table tr:hover {
  background-color: var(--bg-light);
}

/* News and Press Releases */
.news-section {
  background-color: var(--bg-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.news-card {
  background: var(--bg-light);
  border: 1px solid rgba(193, 141, 59, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.news-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: var(--gold-primary);
  color: white;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 4px;
}

.news-body {
  padding: 20px;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 15px;
}

.news-headline {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Shopping Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--bg-white);
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  z-index: 110;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  color: var(--gold-dark);
}

.cart-close-btn {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-empty-message {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
}

.cart-item {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--bg-light);
  padding-bottom: 15px;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 4px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.qty-btn:hover {
  background-color: var(--gold-primary);
  color: white;
}

.cart-item-remove {
  color: #e02424;
  font-size: 0.8rem;
  background: transparent;
  align-self: flex-start;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--gold-light);
  background-color: var(--bg-light);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.btn-checkout {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Plant Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 18, 22, 0.7);
  backdrop-filter: blur(5px);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.plant-modal {
  background-color: var(--bg-white);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.open .plant-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-dark);
  z-index: 1;
}

.modal-header-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.modal-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 30px;
}

.modal-plant-title {
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 2px;
}

.modal-plant-sci {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-primary);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.modal-plant-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-plant-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.modal-benefit-item i {
  color: var(--gold-primary);
}

/* Footer Bottom Bar */
.bottom-badges-row {
  background-color: var(--bg-dark);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.bottom-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
}

.bottom-badge-icon {
  font-size: 1.8rem;
  color: var(--gold-accent);
}

.bottom-badge-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.bottom-badge-text p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo h2 {
  color: var(--gold-accent);
  font-size: 1.5rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

/* Floating Actions */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  z-index: 95;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-primary);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 95;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--gold-dark);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-desc {
    margin: 0 auto 35px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .split-layout, .split-layout.reverse, .contact-grid, .research-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .diagram-container {
    order: -1;
  }
  
  .guidance-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid, .initiatives-grid {
    grid-template-columns: 1fr;
  }
  
  .roadmap-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  
  .timeline-item.left {
    text-align: left;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-item.left::after, .timeline-item.right::after {
    left: 12px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-title span {
    font-size: 3.2rem;
  }
  
  .plant-card {
    min-width: calc(50% - 13px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .plant-card {
    min-width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
  
  .research-items-col {
    grid-template-columns: 1fr;
  }
}
