/* =====================================================
   RESET & BASE STYLES
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Google Font Load in HTML, not here */

/* =====================================================
   NAVBAR - TRANSPARENT + SCROLL EFFECT
===================================================== */
:root {
  --navbar-height: 80px; /* Adjust if needed */
  --transition: all 0.4s ease;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: transparent;
  transition: var(--transition);
  color: white;
  font-weight: 500;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.navbar .logo a {
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar .nav-links a {
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .nav-links a:hover {
  color: #a7f3d0 !important;
}

/* Mobile Nav Toggle (Optional) */
.navbar-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }
  .navbar .nav-links {
    display: none;
  }
}/* =====================================================
   PAGE BANNER - LARGE VERTICAL BANNER
===================================================== */
.page-bannerr {
  position: relative;
  width: 100%;
  height: 100vh;         /* Full screen height */
  min-height: 800px;     /* Minimum tall banner */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--navbar-height); /* Makes space for navbar */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../img/moringabanner.png") center center / cover no-repeat;
  z-index: 1;
  color: white;
}

/* Banner Text Styling */
.page-bannerr h1,
.page-bannerr .banner-title {
  font-size: clamp(40px, 8vw, 70px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 900px;
  padding: 0 20px;
}

.page-bannerr p,
.page-bannerr .banner-text {
  font-size: clamp(18px, 3vw, 24px);
  color: #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  padding: 0 20px;
}
/* =====================================================
   PRODUCT DETAIL SECTION
===================================================== */
.product-detail-section {
  padding: 100px 20px;
  background: #f9f9f9;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.product-image img {
  max-width: 750px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.03);
}

.product-content {
  flex: 1 1 300px;
  max-width: 600px;
}

.product-content h2 {
  font-size: 42px;
  color: #2a9d8f;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}
/* =====================================================
   HIGHLIGHT SECTION
===================================================== */
.product-highlight-section {
  padding: 80px 20px;
  background: #3f524b;
  color: #e5e7eb;
}

.highlight-header {
  text-align: center;
  margin-bottom: 50px;
}

.highlight-header h2 {
  font-size: 36px;
  color: #a7f3d0;
  font-weight: 600;
}

.highlight-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-box {
  background: #fff;
  color: #333;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-box h4 {
  font-size: 20px;
  color: #2a9d8f;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 14px;
  color: #555;
}

.highlight-box:hover {
  background: #2a9d8f;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlight-box:hover h4,
.highlight-box:hover p {
  color: #fff;
}
/* =====================================================
   FEATURES SECTION
===================================================== */
.features-usage-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

.features-usage-section h2 {
  text-align: center;
  font-size: 36px;
  color: #1b4965;
  margin-bottom: 50px;
  font-weight: 600;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.feature-card:hover {
  background: #1b4965;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  color: #1b4965;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #fff;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Tablet */
@media (max-width: 992px) {
  .page-bannerr {
    height: 90vh;
    min-height: 600px;
    background-attachment: scroll;
  }

  .page-bannerr h1 {
    font-size: 48px;
  }

  .page-bannerr p {
    font-size: 18px;
  }

  .product-detail-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .highlight-boxes,
  .features-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile */
@media (max-width: 576px) {
  :root {
    --navbar-height: 70px;
  }

  .navbar {
    padding: 0 15px;
  }

  .navbar .nav-links {
    gap: 15px;
  }

  .navbar .nav-links a {
    font-size: 14px;
  }

  .page-bannerr {
    height: 85vh;
    min-height: 500px;
    padding-top: 70px;
  }

  .page-bannerr h1 {
    font-size: 36px;
  }

  .page-bannerr p {
    font-size: 16px;
    padding: 0 15px;
  }

  .product-content h2 {
    font-size: 32px;
  }

  .highlight-header h2,
  .features-usage-section h2 {
    font-size: 28px;
  }
}


/* =====================================================
   🛑 1. PRODUCT IMAGE & DETAIL FIX 
===================================================== */
.product-detail-section {
    padding: 80px 20px !important;
    background: #f9f9f9 !important;
    display: block !important;
    width: 100% !important;
}

.product-detail-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.product-image {
    flex: 1 1 300px !important;
    width: 100% !important;
    text-align: center !important;
}


.product-image img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    display: inline-block !important;
    object-fit: cover !important;
}

.product-content {
    flex: 1 1 400px !important;
    width: 100% !important;
    text-align: left !important;
}


/* =====================================================
   🛑 2. FEATURES & USAGE SECTION FIX
===================================================== */
.features-usage-section {
    padding: 80px 20px !important;
    background: linear-gradient(135deg, #f0f8ff, #e6f7ff) !important;
    display: block !important;
    width: 100% !important;
}

.features-area h2, .usage-area h2 {
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #1b4965 !important;
}

/* 🔥 Features Cards ची ग्रिड डिझाईन */
.features-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 25px !important;
    max-width: 1100px !important;
    margin: 0 auto 50px auto !important;
}

.feature-card {
    background: #ffffff !important;
    padding: 25px 20px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}

/* 🔥 HOVER FIX: आता Hover केल्यावर Background Dark निळा होईल, त्यामुळे पांढरा Text स्पष्ट दिसेल */
.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    background: #1b4965 !important; 
}

.feature-card p {
    font-size: 15px !important;
    color: #555 !important;
    margin-top: 10px !important;
    transition: color 0.3s ease !important;
}

.feature-card:hover p {
    color: #ffffff !important; /* पांढरा टेक्स्ट आता बॅकग्राउंडमुळे एकदम परफेक्ट दिसेल */
}

/* 🔥 Usage Cards (List) ची डिझाईन */
.usage-cards {
    list-style: none !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.usage-cards li {
    background: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-size: 16px !important;
    color: #333 !important;
}

.usage-cards li span {
    font-size: 24px !important;
}

.banner-breadcrumb {
    position: relative !important;
    z-index: 20 !important; 
    display: inline-block !important; 
    margin-top: 30px !important;
    background: rgba(255, 255, 255, 0.2) !important; 
    padding: 10px 25px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    text-align: center !important;
}

.banner-breadcrumb a, 
.banner-breadcrumb span {
    color: #ffffff !important; 
    font-size: 15px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    padding: 0 5px !important;
}

.banner-breadcrumb a:hover {
    color: #a7f3d0 !important; 
}

.banner-breadcrumb span.active {
    color: #d4af37 !important; 
    font-weight: 700 !important;
}