:root {
  --dark-green: #1e3b24;
  --olive-green: #4d7c35;
  --accent-green: #92b85a;
  --cream-bg: #f6f2ea;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

[data-aos] {
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: #2d2d2d;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  display: none;
}

/* ::-webkit-scrollbar-track {
  background: var(--cream-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--olive-green);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
} */

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green) !important;
  transition: var(--transition-smooth);
}

.navbar-brand i {
  color: var(--olive-green);
  margin-right: 8px;
}

.nav-link {
  color: #2d2d2d !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--olive-green);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--olive-green) !important;
  transform: translateY(-2px);
}

.nav-cta {
  background: var(--dark-green) !important;
  color: white !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px !important;
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--olive-green) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-hover);
}

.nav-cta::after {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #ffffff 100%);
  overflow: hidden;
}

.herbal-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  animation: fadeInUp 0.8s ease;
}

.accent-text {
  color: var(--olive-green);
  position: relative;
  display: inline-block;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(146, 184, 90, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  animation: fadeInUp 1.2s ease;
}

.cta-btn {
  background: var(--dark-green);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  margin-right: 1rem;
}

.cta-btn:hover {
  background: var(--olive-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-secondary {
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-outline-secondary:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.trust-badges span {
  margin-right: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  transition: var(--transition-smooth);
}

.trust-badges span:hover {
  transform: translateY(-2px);
  color: var(--dark-green);
}

.trust-badges i {
  color: var(--accent-green);
  margin-right: 0.5rem;
}

.hero-img-wrapper {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.floating-leaf {
  position: absolute;
  font-size: 2rem;
  color: var(--accent-green);
  animation: spin 8s linear infinite;
  opacity: 0.6;
}

.leaf-1 { top: 10%; left: 0; }
.leaf-2 { bottom: 10%; right: 0; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.bg-cream {
  background: var(--cream-bg);
}

/* ============================================
   CARDS WITH BACKGROUND IMAGES 
   (Pain, Feature, Benefit Sections)
   ============================================ */

/* --- Base Styles for all cards --- */
.pain-card,
.feature-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  border: none;
  color: #ffffff;
  z-index: 1;
}

/* --- Dark Overlay (for text readability) --- */
.pain-card::before,
.feature-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  z-index: -1;
  transition: var(--transition-smooth);
}

/* --- Hover Overlay Lightening & Zoom Effect --- */
.pain-card:hover::before,
.feature-card:hover::before,
.benefit-card:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

.pain-card:hover,
.feature-card:hover,
.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* --- Content Positioning (above overlay) --- */
.pain-card *,
.feature-card *,
.benefit-card * {
  position: relative;
  z-index: 2;
}

/* --- Icon Styling (Golden for premium look) --- */
.pain-card i,
.feature-card i,
.benefit-card i {
  font-size: 3rem;
  color: #ffe082;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.pain-card:hover i,
.feature-card:hover i,
.benefit-card:hover i {
  transform: scale(1.1);
}

/* --- Text Colors --- */
.pain-card h4,
.feature-card h4,
.benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pain-card p,
.feature-card p,
.benefit-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   PAIN CARDS (4)
   ============================================ */

.row .col-md-3:nth-child(1) .pain-card{
  background-image:url('joints-pain.png');
}

.row .col-md-3:nth-child(2) .pain-card{
  background-image:url('fatigue.png');
}

.row .col-md-3:nth-child(3) .pain-card{
  background-image:url('mucles-stiffness.png');
}

.row .col-md-3:nth-child(4) .pain-card{
  background-image:url('stress-pain.png');
}

/* ============================================
   FEATURE CARDS (6)
   ============================================ */

.why-choose .col-md-4:nth-child(1) .feature-card{
  background-image:url('herbal-formula.png');
}

.why-choose .col-md-4:nth-child(2) .feature-card{
  background-image:url('traditional-ingrdients.png');
}

.why-choose .col-md-4:nth-child(3) .feature-card{
  background-image:url('deep-relief.png');
}

.why-choose .col-md-4:nth-child(4) .feature-card{
  background-image:url('no-harsh-chemicals.png');
}

.why-choose .col-md-4:nth-child(5) .feature-card{
  background-image:url('relaxation-support.png');
}

.why-choose .col-md-4:nth-child(6) .feature-card{
  background-image:url('lab-tested.jpeg');
}

/* ============================================
   BENEFIT CARDS (5)
   ============================================ */

.benefits .col-md-4:nth-child(1) .benefit-card{
  background-image:url('deep-relief.png');
}

.benefits .col-md-4:nth-child(2) .benefit-card{
  background-image:url('mucles-stiffness.png');
}

.benefits .col-md-4:nth-child(3) .benefit-card{
  background-image:url('better-circulation.webp');
}

.benefits .col-md-4:nth-child(4) .benefit-card{
  background-image:url('joints-support.avif');
}

.benefits .col-md-4:nth-child(5) .benefit-card{
  background-image:url('stress-relief.jpg');
}
.benefits .col-md-4:nth-child(6) .benefit-card{
  background-image:url('natural-recovery.jpg');
}

/* ============================================
   COMMON CARD STYLING
   ============================================ */

.pain-card,
.feature-card,
.benefit-card{
  position:relative;
  overflow:hidden;

  min-height:250px;
  border-radius:20px;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  color:#fff;
  padding:2rem;
}

/* Dark Overlay */

.pain-card::before,
.feature-card::before,
.benefit-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* Keep Content Above Overlay */

.pain-card *,
.feature-card *,
.benefit-card *{
  position:relative;
  z-index:2;
}

/* Icons */

.pain-card i,
.feature-card i,
.benefit-card i{
  font-size:2.5rem;
  margin-bottom:15px;
}

/* Hover Effect */

.pain-card:hover,
.feature-card:hover,
.benefit-card:hover{
  transform:translateY(-8px);
  transition:0.3s ease;
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width:575px){

  .pain-card,
  .feature-card,
  .benefit-card{
    min-height:180px;
    padding:1.2rem;
  }

  .pain-card i,
  .feature-card i,
  .benefit-card i{
    font-size:2rem;
  }

  .pain-card h4,
  .feature-card h4,
  .benefit-card h4{
    font-size:1.1rem;
  }

  .pain-card p,
  .feature-card p,
  .benefit-card p{
    font-size:0.85rem;
  }
}
/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card i {
  font-size: 2rem;
  color: var(--accent-green);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: white;
  font-weight: 600;
  padding: 1.2rem;
  font-size: 1rem;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background: var(--cream-bg);
  color: var(--dark-green);
}

.accordion-body {
  padding: 1.5rem;
  color: #666;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '🌿';
  position: absolute;
  font-size: 15rem;
  opacity: 0.1;
  bottom: -50px;
  right: -50px;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn-light {
  background: white;
  color: var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition-smooth);
  border: none;
}

.cta-btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--olive-green);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-hover);
  z-index: 1000;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(360deg);
  color: white;
  background: #128C7E;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 50px 0 20px;
}

.footer h4, .footer h5 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.social-links a {
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: var(--transition-smooth);
  display: inline-block;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* Ingredient Cards (Glassmorphism) */
.ingredient-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

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

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

.ingredient-info {
  padding: 1.5rem;
}

.ingredient-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

.benefit-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  padding: 100px 0 80px;
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
/* =========================
   Mission Section
========================= */

.mission-section {
  background: #f8f5ef;
}

/* CARD BASE */
.mission-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  color: #fff;
}

/* DARK OVERLAY */
.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  transition: 0.4s ease;
}

/* CONTENT ABOVE OVERLAY */
.mission-card * {
  position: relative;
  z-index: 1;
}

/* HOVER EFFECT */
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.mission-card:hover::before {
  background: rgba(0,0,0,0.65);
}

/* ICON */
.mission-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #d4af37; /* golden accent */
}

/* TEXT */
.mission-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.mission-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* =========================
   BACKGROUND IMAGES
========================= */

.card-1 {
  background-image: url("pure-potent.png");
}

.card-2 {
  background-image: url("sustainable-healing.webp");
}

.card-3 {
  background-image: url("evidence-based.jpg");
}

.trust-list {
  margin-top: 2rem;
}

.trust-list div {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.trust-list i {
  color: var(--accent-green);
  margin-right: 0.8rem;
}

/* Image Styles */
.hero-product {
  max-width: 120%;
  height: auto;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.25));
  transition: all .5s ease !important;
}

.hero-product:hover {
  transform:scale(1.1);
}

.hero-img-wrapper {
  position: relative;
  z-index: 5;
}

.herbal-bg-overlay {
  z-index: 1;
}

.story-section img,
.mission-section img,
.trust-section img {
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.story-section img:hover,
.mission-section img:hover,
.trust-section img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .ingredient-img {
    height: 220px;
  }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pain-card, .feature-card, .benefit-card {
    padding: 1.5rem;
  }
  
  .ingredient-img {
    height: 200px;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .trust-badges span {
    margin-right: 1rem;
    font-size: 0.8rem;
  }
}

/* Mobile Landscape (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .pain-card, .feature-card, .benefit-card {
    padding: 1.2rem;
  }
  
  .pain-card i {
    font-size: 2.5rem;
  }
  
  .feature-card i, .benefit-card i {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .ingredient-img {
    height: 250px;
  }
  
  .page-hero {
    padding: 80px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .final-cta {
    padding: 60px 0;
  }
  
  .final-cta h2 {
    font-size: 1.8rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  /* General */
  body {
    font-size: 14px;
  }
  
  /* Navbar */
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }
  

  
  /* Hero Section */
  .hero-section {
    padding: 50px 0 40px;
  }
  
  .herbal-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-right: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }
  
  .trust-badges span {
    margin-right: 0;
    font-size: 0.75rem;
  }
  
  .floating-leaf {
    font-size: 1.2rem;
  }
  
  /* Section Titles */
  .section-badge {
    font-size: 0.7rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  /* Cards */
  .pain-card, .feature-card, .benefit-card, .testimonial-card, .mission-card {
    padding: 1.2rem;
  }
  
  .pain-card i {
    font-size: 2rem;
  }
  
  .pain-card h4, .feature-card h4, .benefit-card h4 {
    font-size: 1.1rem;
  }
  
  .feature-card i, .benefit-card i {
    font-size: 1.8rem;
  }
  
  
  /* Testimonials */
  .testimonial-card p {
    font-size: 0.9rem;
  }
  
  .testimonial-card h5 {
    font-size: 1rem;
  }
  
  /* FAQ */
  .accordion-button {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Final CTA */
  .final-cta {
    padding: 50px 0;
  }
  
  .final-cta h2 {
    font-size: 1.5rem;
  }
  
  .final-cta p {
    font-size: 0.9rem;
  }
  
  .cta-btn-light {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer h4, .footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer p, .footer-links li {
    font-size: 0.85rem;
  }
  
  
  .social-links {
    margin-top: 1rem;
  }
  
  /* Ingredients Page */
  .ingredient-img {
    height: 200px;
  }
  
  .ingredient-info {
    padding: 1rem;
  }
  
  .ingredient-info h4 {
    font-size: 1.1rem;
  }
  
  .ingredient-info p {
    font-size: 0.85rem;
  }
  
  .benefit-badge {
    font-size: 0.7rem;
  }
  
  /* About Page */
  .page-hero {
    padding: 60px 0 50px;
  }
  
  .page-hero h1 {
    font-size: 1.8rem;
  }
  
  .page-hero p {
    font-size: 0.9rem;
  }
  
  .story-section .lead {
    font-size: 1rem;
  }
  
  .trust-list div {
    font-size: 0.9rem;
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 15px;
    right: 15px;
  }
  
  /* Spacing Adjustments */
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .g-4 {
    --bs-gutter-y: 1rem;
  }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .pain-card, .feature-card, .benefit-card {
    padding: 1rem;
  }
  
  .pain-card h4 {
    font-size: 1rem;
  }
  
  .btn {
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .whatsapp-float, .nav-cta, .hero-buttons .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-section, .final-cta {
    background: white;
    color: black;
  }
}

/* Hover Effects for Touch Devices */
@media (hover: hover) {
  .feature-card:hover, .benefit-card:hover, .pain-card:hover {
    transform: translateY(-5px);
  }
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Utility Classes */
.text-center-mobile {
  text-align: center;
}

@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .order-first-mobile {
    order: -1;
  }
}

.page-hero{
  position: relative;
  padding: 140px 0 100px;
  background: url('hero\ image.png') center/cover no-repeat;
  overflow: hidden;
}

.page-hero .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-hero .container{
  position: relative;
  z-index: 2;
}

.hero-page-title{
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.hero-page-subtitle{
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

@media(max-width:768px){

  .hero-page-title{
    font-size: 2.5rem;
  }

  .page-hero{
    padding: 100px 0 70px;
  }

}

.offer-badge{
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.offer-price{
  margin-top: 1.5rem;
}

.old-price{
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 1.5rem;
  margin-right: 10px;
}

.new-price{
  font-size: 3rem;
  font-weight: 800;
  color: #ffe082;
}

.countdown-wrapper{
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-box{
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  min-width: 100px;
}

.time-box span{
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.time-box small{
  color: rgba(255,255,255,0.8);
}

.offer-warning{
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}


  .nav-cta {
    display: inline-block;
    width: auto;
    margin-left: 10px;
    color: #e0e0e0 !important;
    background-color: #1e3b24;
    border: none;
    outline: none;
  }

  /* ============================================
   PRIVACY & RETURN POLICY SECTION STYLES
   ============================================ */

.policy-section {
  position: relative;
  overflow: hidden;
}

.policy-card {
  background: var(--white);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.policy-card:hover {
  box-shadow: var(--shadow-hover);
}

.policy-section-block {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 1.5rem;
}

.policy-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.policy-section-block h4 i {
  color: var(--olive-green);
  font-size: 1.8rem;
}

.policy-section-block h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  padding-left: 0;
  border-left: 3px solid var(--accent-green);
  padding-left: 12px;
}

.policy-section-block p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.policy-section-block strong {
  color: var(--dark-green);
  font-weight: 600;
}

/* Responsive adjustments for policy section */
@media (max-width: 768px) {
  .policy-card {
    padding: 1.5rem;
  }
  
  .policy-section-block h4 {
    font-size: 1.4rem;
  }
  
  .policy-section-block h4 i {
    font-size: 1.4rem;
  }
  
  .policy-section-block h5 {
    font-size: 1rem;
  }
  
  .policy-section-block p {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .policy-card {
    padding: 1.2rem;
    border-radius: 20px;
  }
  
  .policy-section-block h4 {
    font-size: 1.2rem;
    flex-wrap: wrap;
  }
  
  .policy-section-block h5 {
    font-size: 0.95rem;
  }
}


.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}


.solution-box {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;

  /* HERO STYLE GREEN GRADIENT */
  background: linear-gradient(180deg, #2f5a33, #1e3b24);

  border-radius: 24px;
  position: relative;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: #fff;

  border: 1px solid rgba(255,255,255,0.08);
}

/* soft glow overlay like hero */
.solution-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(146, 184, 90, 0.25),
    transparent 60%
  );
  opacity: 0.7;
}

/* content above overlay */
.solution-box * {
  position: relative;
  z-index: 1;
}

/* ICON (hero style accent) */
.solution-box i {
  font-size: 2.8rem;
  color: #92b85a;
  margin-bottom: 1rem;
  display: inline-block;
  animation: floatArrow 1.8s infinite ease-in-out;
}

/* TITLE */
.solution-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

/* TEXT */
.solution-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* hover like hero button feel */
.solution-box:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* animation */
@keyframes floatArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* free delivery */
.top-offer-bar{
  background: linear-gradient(90deg,#4d7c35,#1e3b24);
  color:#fff;
  text-align:center;
  padding:8px 15px;
  font-size:14px;
  font-weight:600;
  line-height:1.3;
}

.mobile-offer{
  display:none;
}

@media (max-width:576px){

  .desktop-offer{
    display:none;
  }
  .mobile-offer{
    display:inline;
    font-size:11px;
  }
}