/* =========================
   ROOT & RESET
========================= */
:root {
  --primary: #2D5A27;
  --white: #ffffff;
  --light: #F4F4F4;
  --dark: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* =========================
   IMAGE CONTROL (CRITICAL)
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   NAVBAR (GLASSMORPHISM)
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.logo img {
  max-height: 50px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

/* Hover underline */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* =========================
   HERO
========================= */
/* .hero {
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  color: white;
}

.hero-content {
  max-width: 600px;
  background: rgba(0,0,0,0.45);
  padding: 30px;
  border-radius: 10px;
} */

/* =========================
   HERO (FIXED PROFESSIONAL)
========================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background Image Layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url('../img/hero-bg.jpg') no-repeat center;
  background-size: cover;

  /* KEY FIX: reduce zoom */
  transform: scale(1.05);

  z-index: -2;
}

/* Optional overlay (NO GREEN BLUR) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45); /* dark overlay, NOT green */

  z-index: -1;
}

/* Content */
.hero-content {
  max-width: 550px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 12px 22px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #1e3d1a;
}

/* =========================
   SECTION
========================= */
.section {
  padding: 80px 0;
  background: var(--light);
}

/* =========================
   PRODUCT GRID
========================= */
.product-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

/* Desktop: 3 columns */
@media(min-width: 992px){
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet: 2 columns */
@media(min-width: 600px) and (max-width: 991px){
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media(max-width: 599px){
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PRODUCT CARD
========================= */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 350px;
  margin: auto;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image wrapper (FIXES BIG IMAGES) */
.card-img-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card body */
.card-body {
  padding: 20px;
  text-align: center;
}

/* =========================
   EXPERT
========================= */
.expert {
  text-align: center;
}

.expert img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 30px;
}

/* =========================
   MOBILE NAV
========================= */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:768px){
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 8%;
    background: white;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
  }
}

/* =========================
   EXPERT CARD (PRO DESIGN)
========================= */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.expert-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

/* Image */
.expert-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* Content */
.expert-content {
  flex: 1;
}

.expert-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.designation {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.expert-desc {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* MOBILE FIX */
@media(max-width:768px){
  .expert-card {
    flex-direction: column;
    text-align: center;
  }

  .expert-img img {
    width: 150px;
    height: 150px;
  }
}
/* ===== HERO PREMIUM ===== */
.hero {
  padding-top: 100px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #f4f4f4, #e9f2e6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* .hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-content p {
  margin-bottom: 20px;
  color: #555;
} */
/* .hero-content {
    background: rgba(255,255,255,0.85);
    padding: 25px;
    border-radius: 10px;
} */
.hero-content h1 {
    color: #222;   /* DARK TEXT */
  }
  
  .hero-content p {
    color: #444;
}

.hero-buttons {
  display: flex;
  gap: 10px;
}

.hero-visual {
  border-radius: 12px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

body.loaded .fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s;
}

/* Mobile */
@media(max-width: 768px){
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual img {
    height: 250px;
  }
}

/* Smooth fade effect */
.hero-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
}

/* =========================
   EXPERT MODERN DESIGN
========================= */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* Card */
.expert-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex-wrap: wrap;
  transition: 0.3s;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Image */
.expert-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* Content */
.expert-content {
  flex: 1;
}

.expert-content h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.designation {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.expert-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Badges */
.expert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.expert-badges span {
  background: #e9f2e6;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){
  .expert-card {
    flex-direction: column;
    text-align: center;
  }

  .expert-img img {
    width: 150px;
    height: 150px;
  }
}

/* =========================
   CONSULT SECTION PREMIUM
========================= */
.consult-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f4f4f4, #e9f2e6);
}

/* Main Card */
.consult-card {
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

/* LEFT SIDE */
.consult-info {
  flex: 1;
}

.consult-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.consult-info p {
  color: #555;
  margin-bottom: 20px;
}

.consult-info ul {
  margin-bottom: 20px;
}

.consult-info li {
  margin-bottom: 10px;
  list-style: none;
}

/* RIGHT FORM */
.consult-form {
  flex: 1;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
}

.consult-form h3 {
  margin-bottom: 15px;
}

/* FORM INPUTS */
.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* TEXTAREA */
.consult-form textarea {
  min-height: 100px;
}

/* MOBILE FIX */
@media(max-width:768px){
  .consult-card {
    flex-direction: column;
  }
}

/* FILTER */
.product-filter {
  margin-top: 20px;
}

.filter-btn {
  padding: 8px 15px;
  margin-right: 10px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 5px;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
}

/* BADGES */
.badges {
  margin: 10px 0;
}

.badges span {
  background: #eef5ea;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 15px;
  font-size: 12px;
}

/* ACCORDION */
.accordion {
  width: 100%;
  padding: 10px;
  border: none;
  background: #eee;
  cursor: pointer;
  margin-top: 10px;
}

.panel {
  display: none;
  padding: 10px;
  background: #f9f9f9;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form textarea {
  min-height: 120px;
}

/* Social */
.social-icons {
  margin: 15px 0;
}

.social-icons a {
  font-size: 20px;
  margin-right: 10px;
  color: var(--primary);
}

/* Mobile */
@media(max-width:768px){
  .contact-grid {
    flex-direction: column;
  }
}

/* =========================
   FOUNDER CLEAN DESIGN
========================= */
.founder-clean {
  background: #fff;
}

/* BOX */
.founder-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: center;

  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

/* IMAGE */
.founder-img {
  text-align: center;
}

/* BIG AVATAR */
.avatar-circle.large {
  width: 100px;
  height: 100px;
  font-size: 32px;
}

/* CONTENT */
.founder-content h2 {
  font-size: 18px;
  color: #888;
  margin-bottom: 5px;
}

.founder-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.designation {
  font-size: 14px;
  color: #2D5A27;
  margin-bottom: 10px;
}

.founder-content p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){
  .founder-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================
   CORE VALUES MODERN
========================= */
.values-modern {
  background: #f9f9f9;
  padding: 80px 8%;
}

/* CENTER TITLE */
.section-title.center {
  text-align: center;
  margin-bottom: 40px;
}

/* GRID */
.values-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.value-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;

  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON CIRCLE */
.value-icon {
  width: 60px;
  height: 60px;
  background: #2D5A27;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  margin: 0 auto 15px;
}

/* TEXT */
.value-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.value-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* =========================
   HERO PREMIUM 
========================= */
.hero-premium {
  height: 60vh;
  position: relative;

  background: url('../img/hero-bg.jpg') center/cover no-repeat;

  display: flex;
  align-items: center;
}

/* LEFT DARK GRADIENT (Premium Look) */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

/* CONTENT WRAPPER */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
  width: 100%;
}

/* TEXT AREA */
.hero-text {
  max-width: 500px;
  color: #fff;
}

/* TITLE */
.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* SUBTEXT */
.hero-text p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* BUTTON */
.hero-text .btn {
  background: #2D5A27;
  padding: 12px 22px;
  border-radius: 6px;
}

/* MOBILE FIX */
@media(max-width:768px){
  .hero-premium {
    height: 50vh;
    text-align: center;
  }

  .hero-overlay {
    background: rgba(0,0,0,0.6);
  }

  .hero-text {
    margin: auto;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}
.hero-text h1 {
    letter-spacing: -0.5px;
  }

  /* =========================
   ABOUT PREMIUM DESIGN
========================= */
.about-premium {
  padding: 90px 8%;
  background: #f9f9f9;
}

/* MAIN BOX */
.about-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;

  background: #fff;
  padding: 40px;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.about-image {
  overflow: hidden;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

/* IMAGE HOVER */
.about-image:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.about-info .tag {
  font-size: 12px;
  color: #2D5A27;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-info h2 {
  font-size: 32px;
  margin: 10px 0 15px;
}

.about-info p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* FEATURES */
.about-features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;

  background: #eef5ea;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.feature i {
  color: #2D5A27;
}

/* MOBILE */
@media(max-width:768px){
  .about-box {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .about-image img {
    height: 250px;
  }
}

/* =========================
   WHY HERBAL PREMIUM
========================= */
.why-premium {
  padding: 90px 8%;
  background: #fff;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header .tag {
  font-size: 12px;
  color: #2D5A27;
  font-weight: 600;
  letter-spacing: 1px;
}

.why-header h2 {
  font-size: 32px;
  margin: 10px 0;
}

.why-header p {
  color: #666;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.why-card {
  padding: 30px;
  border-radius: 14px;
  background: #f9f9f9;
  transition: 0.3s;
}

/* HEADINGS */
.why-card h3 {
  margin-bottom: 20px;
}

/* LIST */
.why-card ul {
  list-style: none;
}

.why-card li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* BAD (RED) */
.why-card.bad {
  border-left: 5px solid #e74c3c;
}

.why-card.bad i {
  color: #e74c3c;
}

/* GOOD (GREEN) */
.why-card.good {
  border-left: 5px solid #2D5A27;
  background: #eef5ea;
}

.why-card.good i {
  color: #2D5A27;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* MOBILE */
@media(max-width:768px){
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MANUFACTURING PREMIUM
========================= */
.manufacturing-premium {
  padding: 90px 8%;
  background: #f9f9f9;
}

/* MAIN BOX */
.manufacturing-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;

  background: #fff;
  padding: 40px;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.manufacturing-img {
  overflow: hidden;
  border-radius: 12px;
}

.manufacturing-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

/* IMAGE HOVER */
.manufacturing-img:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.manufacturing-content .tag {
  font-size: 12px;
  color: #2D5A27;
  font-weight: 600;
  letter-spacing: 1px;
}

.manufacturing-content h2 {
  font-size: 30px;
  margin: 10px 0 15px;
}

.manufacturing-content p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* FEATURES */
.manufacturing-features {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.manufacturing-features div {
  background: #eef5ea;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;

  display: flex;
  align-items: center;
  gap: 6px;
}

.manufacturing-features i {
  color: #2D5A27;
}

/* MOBILE */
@media(max-width:768px){
  .manufacturing-box {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .manufacturing-img img {
    height: 250px;
  }
}

/* =========================
   CONSULT HERO
========================= */
.consult-hero {
  height: 60vh;
  position: relative;
  background: url('../img/consult.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.consult-content {
  position: relative;
  color: white;
  text-align: center;
}

.consult-content h1 {
  font-size: 36px;
}

/* =========================
   CONSULT SECTION
========================= */
.consult-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

/* GRID */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.consult-form {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* INFO */
.consult-info {
  padding: 20px;
}

.consult-info ul {
  list-style: none;
  margin-top: 20px;
}

.consult-info li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

/* BUTTONS */
.consult-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn.call {
  background: #2D5A27;
}

.btn.whatsapp-btn {
  background: #25D366;
}

.btn.download {
  background: #444;
}

/* MOBILE */
@media(max-width:768px){
  .consult-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ABOUT HERO (SAME STYLE)
========================= */
.about-hero {
  background: url('../img/about-hero.jpg') center/cover no-repeat;
}