:root{
      --brand-orange:#f97316; /* orange */
      --brand-green:#16a34a;  /* green */
      --muted:#6b7280;
      --card-radius:18px;
      --glass: rgba(255,255,255,0.85);
      font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }
    body{background:#fff;color:#222;}
    .navbar{background:linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.95));backdrop-filter: blur(6px);} 
    .brand{font-weight:700;color:var(--brand-green);}
    .hero{padding:10px 0;background:linear-gradient(180deg, rgba(250,250,250,1), rgba(255,255,255,0.95));}
    .hero .lead{color:var(--muted)}

    /* Section backgrounds (parallax-like) */
    .section-bg{
      background-size:cover;background-position:center;background-attachment:fixed; padding:80px 0; position:relative;
    }
    /* overlay now blurs the image behind it to create the soft blurred background */
    .section-overlay{
      background:linear-gradient(90deg, rgba(0,0,0,0.38), rgba(0,0,0,0.12));
      padding:60px 0;
      backdrop-filter: blur(6px); /* <-- blur applied */
      -webkit-backdrop-filter: blur(6px);
    }

    .card-product{border-radius:16px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s ease;}
    .card-product img{height:210px;object-fit:cover;width:100%;}
    .card-body{padding:18px}
    .price-old{ text-decoration:line-through;color:var(--muted);}
    .card-product:hover{
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 15px 30px rgb(0,64, 128,0.28);
    }
    /* Make selected card information bold for readability */
    .card-body h5,
    .card-body .h5,
    .card-body .price-old,
    .card-body .small {
      font-weight: 700;
    }

    .btn-cta{background:linear-gradient(90deg,var(--brand-orange), #ff7a2a); border:0; color:#fff;}

    /* Benefits */
    .benefit-card{border-radius:14px;padding:20px;background:var(--glass);box-shadow:0 6px 20px rgba(16,24,40,0.05)}

    /* Footer */
    footer{background:#0f172a;color:#fff;padding:28px 0}

    /* Popups */
    .modal-content{border-radius:14px}

    /* Bottom fixed contact */
    .fixed-contact{position:fixed;right:18px;bottom:18px;z-index:1200;display:flex;flex-direction:column;gap:10px}
    .fixed-contact a{display:flex;align-items:center;justify-content:center;width:58px;height:58px;border-radius:50%;box-shadow:0 8px 20px rgba(0,0,0,0.12);background:#fff;color:#111}
    .fixed-contact a .fa-whatsapp{color:#25D366}

    /* Responsive tweaks */
    @media(max-width:767px){
      .section-bg{background-attachment:scroll}
      .card-product img{height:160px}
      .hero{padding:48px 0}
    }

    /* small helper */
    .section-title{font-weight:700;margin-bottom:18px}

    /* Floating BG container */
    .floating-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 1;
      pointer-events: none;
    }

    .float-item {
      position: absolute;
      opacity: 0.18;
      animation: floatUpDown ease-in-out infinite;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
      transform-origin: center;
    }

    /* Leaf positions */
    .leaf.l1 { top: 5%; left: 8%; width: 100px; animation-duration: 22s; animation-delay: 0s; }
    .leaf.l2 { top: 25%; right: 12%; width: 80px; animation-duration: 18s; animation-delay: 2s; }
    .leaf.l3 { bottom: 15%; left: 15%; width: 70px; animation-duration: 24s; animation-delay: 4s; }
    .leaf.l4 { bottom: 5%; right: 10%; width: 90px; animation-duration: 26s; animation-delay: 6s; }

    /* Fruits */
    .fruit.f1 { top: 30%; left: 45%; width: 120px; animation-duration: 28s; animation-delay: 3s; }
    .fruit.f2 { bottom: 10%; right: 40%; width: 100px; animation-duration: 30s; animation-delay: 1s; }

    /* Glowing soft circles */
    .glow {
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255,165,0,0.25), transparent);
      filter: blur(25px);
    }
    .glow.g1 { width: 160px; height: 160px; top: 10%; left: 25%; animation-duration: 25s; animation-delay: 2s; }
    .glow.g2 { width: 220px; height: 220px; bottom: 20%; right: 20%; animation-duration: 30s; animation-delay: 4s; }
    .glow.g3 { width: 140px; height: 140px; top: 50%; right: 35%; animation-duration: 20s; animation-delay: 1s; }

    /* Floating Animation */
    @keyframes floatUpDown {
      0% { transform: translateY(0) rotate(0deg) scale(1); }
      50% { transform: translateY(-40px) rotate(10deg) scale(1.1); }
      100% { transform: translateY(0) rotate(0deg) scale(1); }
    }

    /* Parallax Movement */
    .hero {
      position: relative;
      overflow: hidden;
    }
    /* Beautiful Navbar */
    .beautiful-navbar {
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.25);
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
    }

    .beautiful-navbar:hover {
      background: rgba(255,255,255,0.95);
    }

    /* Brand styling */
    .brand-logo {
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,0.4);
      box-shadow: 0 0 10px rgba(255,165,0,0.4);
    }

    .brand-name {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--brand-green);
      letter-spacing: 1px;
      background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Navbar links */
    .nav-link {
      position: relative;
      color: #333 !important;
      font-weight: 600;
      margin: 0 10px;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: var(--brand-orange) !important;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -3px;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
      border-radius: 3px;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    /* Subscribe button */
    .btn-cta-nav {
      background: linear-gradient(90deg, var(--brand-orange), #7e421cff);
      border: none;
      color: #fff;
      font-weight: 600;
      border-radius: 30px;
      padding: 8px 18px;
      box-shadow: 0 4px 12px rgba(255,137,40,0.4);
      transition: all 0.3s ease;
    }

    .btn-cta-nav:hover {
      background: linear-gradient(90deg, var(--brand-green), #00c853);
      box-shadow: 0 6px 20px rgba(0,200,83,0.3);
      transform: translateY(-2px);
    }

    /* Subscription section gradient */
    .subscribe-section {
      background: linear-gradient(135deg, rgba(137, 163, 22, 0.1), rgba(249, 154, 22, 0.06));
      border-radius: 14px;
      padding: 28px;
      box-shadow: 0 8px 30px rgba(16,24,40,0.06);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .img-fluid:hover{ 
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 15px 30px rgb(0,64, 128,0.28);

    }
    .img-fluid{
      transition: all 0.4s ease;
    }
    .display-6
    {
      font-size: 50 px;
      font-weight: 800;
    
      color: var(--brand-green);
      letter-spacing: 1px;
      background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    section {
  position: relative;
  backdrop-filter: blur(4px);
  background-color: rgba(255,255,255,0.7);
  border-radius: 20px;
}
 /* popup now appears near clicked image */
.info-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  background: none;      /* remove dark background */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.info-popup-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: popupScale 0.2s ease;
  position: absolute;
}

.info-popup-overlay.show {
  display: block;
}

  /* info button look */
  .info-btn {
    width: 34px; height: 34px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  
#products {
  perspective: 1000px;
}

/* 3D Product Card */
.card-product {
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}
/*.card-product:hover {
//  transform: rotateY(6deg) rotateX(3deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.4);
}

/* Product Image */
.card-product img {
  border-radius: 15px 15px 0 0;
  height: 250px;
  
  transition: transform 0.6s ease;
}
.card-product:hover img {
  transform: scale(1.1) rotateZ(1deg);
  animation: float 2.5s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1.1); }
  50% { transform: translateY(-8px) scale(1.12); }
}

/* Orange Button Glow */
.btn-order {
  background: linear-gradient(135deg, #ff7b00, #ffb347);
  color: #fff;
  border: none;
  transition: 0.3s ease;
}
.btn-order:hover {
  background: linear-gradient(135deg, #ff6600, #ffa94d);
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
  transform: scale(1.08);
}

/* Animate the logo zoom in-out continuously */
.brand-logo {
  animation: zoomInOut 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Keyframes for zoom effect */


 body {
      background: linear-gradient(135deg, #ffffff 0%, #fffaf4 100%);
      font-family: 'Noto Sans Devanagari', sans-serif;
      overflow-x: hidden;
    }

    .premium-intro {
      animation: fadeSlideIn 2s ease-out forwards;
      opacity: 0;
      transform: translateY(-30px);
    }

   

    .glow-text {
      color: #2e7d32;
      text-shadow: 0 0 10px rgba(46, 125, 50, 0.3);
      letter-spacing: 0.3px;
    }

    .subline {
      color: #555;
      animation: fadeIn 3s ease-out forwards;
      opacity: 0;
      animation-delay: 1s;
    }


    .btn {
      transition: all 0.3s ease-in-out;
      border-radius: 2rem;
      padding: 10px 25px;
      font-weight: 600;
    }

    .btn-cta {
      background-color: #2e7d32;
      color: white;
    }

    .btn-cta:hover {
      background-color: #256628;
      box-shadow: 0 0 12px rgba(46, 125, 50, 0.4);
      transform: translateY(-2px);
    }

    .btn-outline-secondary:hover {
      background-color: #ff7a00;
      color: #fff;
      border-color: #ff7a00;
    }

    .fade-content {
      animation: fadeIn 2.5s ease-in forwards;
      opacity: 0;
      animation-delay: 1.5s;
    }
     .top-slogan {
      text-align: center;
      font-size: 1.7rem;
      font-weight: 600;
      color: #2b572e;
      letter-spacing: 0.5px;
      text-shadow: 0 0 10px rgba(43, 87, 46, 0.2);
      margin-top: 40px;
      animation: glowPulse 4s infinite ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .top-slogan i {
      color: #4caf50;
      font-size: 1.6rem;
      animation: leafFloat 3s infinite ease-in-out alternate;
    }
     /* ðŸŒŸ Features Section */
    .features {
      margin-top: 25px;
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      font-size: 1rem;
      color: #333;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
      transition: transform 0.3s;
    }

    .feature-item:hover {
      transform: scale(1.05);
      color: #ff7a00;
    }

    .feature-item i {
      color: #ff7a00;
      font-size: 1.2rem;
    }

    /* âœ¨ Buttons */
    .btn {
      border-radius: 50px;
      padding: 10px 25px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-cta {
      background-color: #ff7a00;
      color: white;
      box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
    }

    .btn-cta:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
    }

    .btn-outline-secondary:hover {
      background-color: #2b572e;
      color: #fff;
    }



     /* ðŸ¥— Responsive Salad Image */
  .salad-image {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: floatImage 4s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .salad-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
  }

  @keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* ðŸ“± Responsive Adjustments */
  @media (max-width: 992px) {
    .salad-image {
      max-width: 400px;
      margin-top: 30px;
    }
  }

  @media (max-width: 768px) {
    .salad-image {
      max-width: 90%;
      border-radius: 15px;
    }
  }

  @media (max-width: 576px) {
    .salad-image {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
      animation: none;
    }
  }


   .top-slogan {
      text-align: center;
      font-size: 2.2rem; /* Increased font size */
      font-weight: 700;
      color: #2e7d32;
      letter-spacing: 1px;
      margin-top: 25px;
      text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
      animation: float 3s ease-in-out infinite;
    }

    .top-slogan i {
      color: #ff7a00;
      margin: 0 8px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .salad-image {
      width: 85%;
      max-width: 480px;
      animation: floatImage 4s ease-in-out infinite;
    }

    @keyframes floatImage {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .features {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .feature-item {
      background: #f8fff4;
      padding: 10px 18px;
      border-radius: 50px;
      font-weight: 600;
      color: #388e3c;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
    }

    .feature-item:hover {
      background: #dfffd8;
      transform: translateY(-3px);
    }

    .glow-text {
      color: #2e7d32;
      text-shadow: 0px 0px 10px rgba(255, 122, 0, 0.4);
    }




    .card-product .h5.mb-0.text-success {
  font-size: 1.8rem; /* Increase main price size */
  color: #2e8b57 !important; /* Slightly darker green for better visibility */
  font-weight: 700;
}

.card-product .text-decoration-line-through.small {
  font-size: 1rem; /* Slightly bigger for old price */
  color: #999 !important;
}




.section-bg {
  background: linear-gradient(120deg, #f8fff8 0%, #ffffff 50%, #fffaf0 100%);
  padding: 100px 30px;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
}

/* Soft light floating orbs */
.section-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 25% 25%, rgba(40, 167, 69, 0.08), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 153, 51, 0.08), transparent 55%);
  animation: floatBg 10s ease-in-out infinite alternate;
  z-index: 1;
}


/* ====== Floating Title ====== */
.section-bg h2 {
  font-size: 2.8em;
  color: #00592d;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  animation: floatTitle 4s ease-in-out infinite alternate;
}

/* ====== Benefit Cards (Bolder & 3D Glow) ====== */
.journey-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.journey-box {
  background: linear-gradient(180deg, #ffffff, #f8fff4);
  border-radius: 18px;
  padding: 30px;
  border-top: 5px solid #28a745;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08),
              0 0 35px rgba(40, 167, 69, 0.15);
  transition: all 0.6s ease;
  transform-style: preserve-3d;
}
.journey-box:hover {
  transform: rotateY(10deg) rotateX(6deg) scale(1.08);
  box-shadow: 0 25px 45px rgba(56, 204, 93, 0.35),
              0 0 60px rgba(255, 153, 51, 0.25);
}

/* ====== Text ====== */
.section-bg p, 
.section-bg li {
  z-index: 2;
  position: relative;
  color: #333;
}

.contact-section {
  background: linear-gradient(135deg, #f9fff8 0%, #ffffff 50%, #fff9f3 100%);
  position: relative;
  overflow: hidden;
}

/* Floating glow animation */
.contact-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(56, 204, 93, 0.1), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255, 153, 51, 0.1), transparent 60%);
  animation: floatLights 10s ease-in-out infinite alternate;
  z-index: 1;
}


/* ====== Contact Cards ====== */


/* Button */
.btn-success {
  background: linear-gradient(90deg, #25a6baff, #378581ff);
  border: none;
  transition: 0.3s ease;
}
.btn-success:hover {
  background: linear-gradient(90deg, #239b56, #27ae60);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}


.fixed-contact {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  color: #151b17;
}

.fixed-contact a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(230, 200, 144);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
}




.fixed-contact i {
  color: #151b17; /* WhatsApp green */
  font-size: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.fixed-contact a:last-child i {
  font-size: 2rem;
  color: #03070cff; /* Call icon - blue */
}

.fixed-contact i:hover {
  transform: scale(1.2);
}
  
 @keyframes floatTitle {
  from { transform: translateY(0px); }
  to { transform: translateY(-8px); }
}
@keyframes floatBg {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}
@keyframes floatLights {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }
     @keyframes fadeSlideIn {
      0% {
        opacity: 0;
        transform: translateY(-30px);
      }
      60% {
        opacity: 1;
        transform: translateY(5px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes popupScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.contact-info-box {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08),
              0 0 30px rgba(40, 167, 69, 0.1);
  border-top: 5px solid #28a745;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-info-box:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(40, 167, 69, 0.25);
}

/* ====== Form Styling ====== */
.contact-form {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06),
              0 0 25px rgba(255, 153, 51, 0.1);
  border-left: 5px solid #28a745;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(56, 204, 93, 0.2);
}

/* Inputs */
.contact-form .form-control {
  border: 2px solid #e2f5e3;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}
/* ====== Form Styling ====== */
.contact-form {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06),
              0 0 25px rgba(255, 153, 51, 0.1);
  border-left: 5px solid #28a745;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(56, 204, 93, 0.2);
}

/* Inputs */
.contact-form .form-control {
  border: 2px solid #e2f5e3;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}