* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f2f2f2;
  font-family: 'Roboto','Montserrat','Segoe UI', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* COMMON */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
html {
  scroll-behavior: smooth;
}

.header {
    position: fixed;
    left: 0;
    z-index: 1000;
    background: rgb(255 255 255);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* border-radius: 30px; */
  width:100%;
  top: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
}

.menu a {
  margin: 0 14px;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #222;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}
.menu a:hover::after,
.menu a.active::after {
  width: 100%;
} 
.headbtn {
  background:#77A661;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
  font-family: Montserrat !important;
} 
/* .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 80px; /* avoids overlap with header */
/* } */ 
/* Ensure the section has a height and relative positioning */
/* 1. The Container: Needs a specific height to hold the video */
/* Header height */


.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  left:0;
  top: 75px;
}

/* VIDEO */
.bg-video {
  position: absolute;
  inset: 0;
 width: 100%;
  height: 100%;
 object-fit:fill;         
  background: #000;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
   background: rgba(0,0,0,0.2); 
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}


/* Button Styling (Optional) */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #88b068; /* Based on your image */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.btn-primary {
  background:#77A661;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* SECTION */
.why-choose {
  padding: 80px 20px;
  background: #f9faf7;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.why-choose h2 {
    font-family: Montserrat !important;
    font-size: 42px !important;
    font-weight: lighter !important;
    margin-top: 50px !important;
}

h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.why-choose .subtitle {
    color: #555;
    margin-bottom: 50px;
    font-size: 21px;
    font-family: Montserrat !important;
}
.feature-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card Styling */
.feature-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Icon Circle Styling */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #ffffff; /* Icons are white */
}

/* Vibrant Pastel Colors */
.bg-millet { background-color: #77A661; }        /* Sage Green */
.bg-protein { background-color: #A3C15A; }       /* Olive Pastel */
.bg-vegan { background-color: #6CB7B3; }         /* Soft Teal */
.bg-preservatives { background-color: #F1B24A; } /* Warm Amber */
.bg-roasted { background-color: #E87A67; }       /* Soft Coral */
.bg-b2b { background-color: #5A9BBF; }           /* Sky Blue */

/* Typography */
.feature-card h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
 
/* --- Milhana Section --- */
.milhana-section {
  padding: 80px 20px;
}

.milhana-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.milhana-image img {
  max-width: 420px;
  /* width: 100%; */
  border-radius: 16px;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}

.milhana-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.milhana-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.milhana-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.milhana-list li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.milhana-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color:#3C8EB5;
  font-weight: bold;
}

.milhana-note {
  background: #FFF3C4;
  border-left: 5px solid #F6C89F;
  padding: 18px;
  border-radius: 6px;
  font-size: 14px;
}

/* --- Benefits Section --- */
/* Container and Header */
.benefits-section {
  padding: 80px 20px;
  background: #ffffff;
}

.benefits-header {
  max-width: 600px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.benefits-header p {
  font-size: 14px;
  color: #666;
}
/* Grid System */
.benefits-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
img.footerlogo {
    border-radius: 10px !important;
    padding: 5px !important;
}
/* Card Styling */
.benefit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow like benefits.png */
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

/* Icon Circle Styling */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff; /* Icons are white */
}

/* Vibrant Pastel Palette */
.bg-green  { background-color: #4CAF50; }
.bg-orange { background-color: #FFB74D; }
.bg-red    { background-color: #E57373; }
.bg-lime   { background-color: #C6E070; }
.bg-teal   { background-color: #80CBC4; }
.bg-coral  { background-color: #FF8A65; }

/* Typography */
.benefit-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.benefit-card p {
  color: #777;
  line-height: 1.6;
  font-size: 15px;
}

/* CTA */
.cta-section {
  background: url("../images/millets.jpg") center/cover no-repeat;
  height:400px;
  position: relative;
  color: #fff;
}
.phone-circle {
  color: #fff;
  font-size: 20px;
}

.phone-circle i {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
}

.cta-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 120px 100px;
}
.phone-circle a {
    text-decoration: none;
    color: #ffffff;
}
.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  background:#77A661;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Section */
.nutrition-section {
  padding: 80px 20px;
  background: #fafaf7;
}

.nutrition-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.nutrition-container h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.nutrition-container .subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

/* Grid */
.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

/* Left */
.nutrition-left h4,
.nutrition-right h4 {
  margin-bottom: 20px;
  font-size: 16px;
}

/* Card Container */
.nutrition-card {
  max-width: 450px;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft professional shadow */
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.nutrition-card h4 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #333;
  font-weight: 700;
}

/* List Styling */
.macro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.macro-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
}

.macro-list li:last-child {
  border-bottom: none;
}

/* Vibrant Icon Circles */
.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #ffffff; /* White Icons */
  font-size: 16px;
  flex-shrink: 0;
}

/* Colors from your nutri.png image */
.bg-calories { background-color: #FF9F68; } /* Orange */
.bg-protein  { background-color: #FF8BA0; } /* Pink */
.bg-fiber    { background-color: #5E9E76; } /* Green */
.bg-carbs    { background-color: #F2C45A; } /* Gold */
.bg-fat      { background-color: #E88365; } /* Coral */
.bg-vitamins { background-color: #A3D8D4; } /* Teal */

/* Typography */
.label {
  flex-grow: 1;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.value {
  font-size: 16px;
  color: #222;
  font-weight: 700;
  text-align: right;
}


/* Right */
.nutrition-right {
  background: #f7f9f1;
  padding: 25px;
  border-radius: 12px;
}

.pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.pill-grid span {
  background: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Important Note */
.important-note {
  background: #ffffff;
  border: 1px solid #e2e6d8;
  padding: 15px;
  border-radius: 8px;
  font-size: 12px;
  color: #555;
}

/* GI Note */
.gi-note {
  margin-top: 40px;
  background: #fff4cf;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 13px;
}

/* PARTNER SECTION */
.partner-section {
text-align: center;
  padding: 70px 20px;
  background: #fff;
}

.partner-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.partner-section .subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

/* Card Wrapper Layout */

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}
/* Base Card Styling */
.info-card {
  padding: 40px 25px;
  border-radius: 15px;
  color: #ffffff; /* White text for contrast */
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card .icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #ffffff;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Gradient Backgrounds from your image */
.green-gradient {
  background: linear-gradient(135deg, #A8D1E7 0%, #B8D3A3 100%);
}

.orange-gradient {
  background: linear-gradient(135deg, #F9E6A1 0%, #E69D87 100%);
}

.purple-gradient {
  background: linear-gradient(135deg, #C9BFE3 0%, #E79B9B 100%);
}

/* Button Styling (White Pill Buttons) */
.pat {
  background: #ffffff;
  color: #666; /* Default gray text */
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Custom button text colors to match card highlights */
.green-gradient .pat { color: #5B7A46; }
.orange-gradient .pat { color: #A68D26; }
.purple-gradient .pat { color: #8A5A5A; }

/* FAQ SECTION */
.faq-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.faq-section .subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

/* GRID */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 14px 18px;
}
.faq-item:hover {
  background: #F1F8F4;
}
.faq-item summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.faq-item summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
}

/* FOOTER */
.faq-footer {
  margin-top: 40px;
}

.faq-footer p {
  font-size: 14px;
  margin-bottom: 14px;
}

.btncon {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #e98473;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #E87A67;
}
.footer {
  background: #243f32;
  color: #dfe9e3;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4.brand {
  color: #a6d49f;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col h5 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #c9d7cf;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #c9d7cf;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #a6d49f;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2f5646;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #4f8f74;
}

/* Contact */
.contact li {
  display: flex;
  gap: 8px;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #355f4d;
  padding-top: 15px;
  font-size: 13px;
  color: #b7c8bf;
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px; */
  text-align: center !important;
}


/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-box {
  width: 600px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Header */
.popup-header {
  background:#243f32;
  color: #fff;
  padding: 20px;
  position: relative;
}

.popup-header h2 {
  margin: 0 0 5px;
}

.popup-header p {
  margin: 0;
  font-size: 14px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Form */
.popup-form {
  padding: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-group textarea {
  resize: none;
  height: 90px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Buttons */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.submit-btn {
  background:#243f32;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.cancel-btn {
  background: #eee;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* --- Desktop Adjustments --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 24px;
    cursor: pointer;
    color: #243f32;
}

.mobile-menu {
    display: none; /* Hidden on desktop */
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#formResponse {
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

#formResponse ul {
    background: #fff5f5;
    border-left: 4px solid #ff4d4d;
    padding: 10px 15px !important;
}

.submit-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed;
}
/*  Resposive   */
/* --- RESPONSIVE STYLES --- */

/* Mobile Devices (max 768px) */
@media only screen and (max-width: 768px) {
    
    .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 2;
    height:240px;
}

 /* FORCE NO HORIZONTAL SCROLL */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* This is the most important line */
  position: relative;
}

* {
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}
  .menu {
        display: none; /* Hide standard menu */
    }

    .desktop-only {
        display: none; /* Hide the big button from the main nav */
    }

    .menu-toggle {
        display: block; /* Show hamburger */
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 2000;
        transition: 0.4s ease-in-out;
    }

    .mobile-menu.active {
        right: 0; /* Slide in */
    }

    .mobile-menu a {
        font-size: 18px;
        text-decoration: none;
        color: #243f32;
        margin: 15px 0;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        cursor: pointer;
        color: #243f32;
    }

    .mobile-menu .headbtn {
        margin-top: 20px;
        padding: 15px 40px;
    }
    /* Header & Nav */
    
    .menu {
        display: none; /* Usually replaced by a hamburger menu in full builds */
    }
.header {
    border-radius: 0; 
  }
  .nav {
    padding: 10px 15px;
  }
  .nutrition-grid, 
  .feature-grid, 
  .benefits-grid, 
  .faq-grid, 
  .footer-container {
    grid-template-columns: 1fr !important; /* Force single column */
    width: 100%;
  }

  /* FIX THE MAP (The iframe is likely what is moving your screen) */
  .footer-col iframe {
    width: 100% !important; /* Scale to fit phone */
    height: 200px;
    border-radius: 10px;
  }

  /* FIX THE POPUP BOX */
  .popup-box {
    width: 95% !important; /* Prevent it from hitting screen edges */
    margin: 10px;
  }

  .form-row {
    flex-direction: column; /* Stack form inputs vertically */
    gap: 0;
  }
  
  /* FIX HERO TEXT */
  .hero-content h1 {
    font-size: 28px !important;
    padding: 0 10px;
  }  
 .bg-video {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    height: 217px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
} 
.hero {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

    /* Why Choose & Features */
    .why-choose {
    padding: 30px 20px;
}
.icon-circle {
    width: 50px;
    height: 50px;
}
    .why-choose h2 {
        font-size: 28px !important;
    }
.why-choose .subtitle {
    font-size: 15px;
}
.feature-grid {
    gap: 10px;
}
.feature-card h3 {
    font-size: 15px;
}
.feature-card {
    padding: 15px 20px;
}

    /* What is Milhana Section */
    .milhana-section {
    padding: 20px 20px;
}
.milhana-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
}
    .milhana-container {
        flex-direction: column; /* Image on top, text below */
        gap: 30px;
        text-align: center;
    }
    .milhana-image img {
        max-width:250px !important;
    }
    .milhana-list li {
        text-align: left;
    }

    /* Health Benefits Grid */
.benefits-section {
    padding: 30px 20px;
    background: #ffffff;
}
.benefits-header h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.benefits-grid {
    gap: 10px;
}
    .benefit-card {
        padding: 20px;
    }
    .icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.benefit-card h4 {
    font-size: 15px;
}

/* cta */
.cta-overlay {
    padding: 50px 50px;
}

.cta-overlay h2 {
    font-size: 45px !important;
    /* text-align: justify; */
}

    /* Nutrition Section */
.nutrition-section {
    padding: 30px 20px;
    background: #fafaf7;
}
.nutrition-card h4 {
    font-size: 18px;
}
.important-note {
    font-size: 15px;
    line-height: 30px;
}
    .nutrition-container h2 {
    font-size: 20px;
}
    .nutrition-left, .nutrition-right {
        max-width: 100%;
    }
    .pill-grid {
        grid-template-columns: 1fr 1fr; /* Keep 2 columns for safety badges */
    }

    /* Partner Section */
.partner-section {
    padding: 30px 20px;
}
.partner-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.partner-section .subtitle {
    font-size: 16px;
}
    .card-wrapper {
        grid-template-columns: 1fr; /* Stack the colorful gradient cards */
    }
    .info-card {
        margin-bottom: 8px;
        padding: 25px 25px;
    }
    .info-card .icon {
    font-size: 30px;
    margin-bottom: 5px;
    color: #ffffff;
}
.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.info-card p {
    font-size: 15px;
    margin-bottom: 10px;
}
    /* FAQ Grid */
   .faq-section {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-col h4.brand {
        margin-top: 20px;
    }
}

/* Tablet / iPad (768px to 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: 40vh;
}
.why-choose {
    padding: 40px 20px;
}
.why-choose h2 {
    font-size: 25px !important;
}
.feature-card {
    padding: 20px 20px;
}
.icon-circle {
    width: 50px;
    height: 50px;
}
.feature-card h3 {
    font-size: 15px;
}
    .hero-content h1 {
        font-size:30px;
    }
    .hero-content p {
    font-size: 15px;
}
.milhana-section {
    padding: 45px 20px;
}
.milhana-content h2 {
    font-size: 25px;
}
.milhana-content p {
    font-size: 15px !important;
}
.milhana-list li {
    font-size: 14px;
}
.milhana-note {
    font-size: 12px;
}
.milhana-image img {
    max-width: 300px;
}
.benefits-section {
    padding: 40px 20px;
}
.benefits-header h2 {
    font-size: 25px;
}
.benefits-grid {
    gap: 10px;
}
.benefit-card {
    padding: 20px;
}
.icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.benefit-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
}
.nutrition-container h2 {
    font-size: 25px;
    margin-bottom: 5px;
}
.nutrition-card {
    max-width:100%;
}
.important-note {
    font-size: 15px;
}
.nutrition-section {
    padding: 50px 20px;
}
.partner-section {
    padding: 50px 20px;
}
.partner-section h2 {
    font-size: 25px;
}
.partner-section .subtitle {
    font-size: 15px;
}
.info-card {
    padding: 25px 25px;
}
.info-card .icon {
    font-size: 35px;
    margin-bottom: 10px;
}
.info-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}
.info-card p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.pat {
    padding: 12px 20px;
}
    .feature-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x3 grid */
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x3 grid */
    }

    .milhana-container {
        gap: 30px;
    }

    .nutrition-grid {
        grid-template-columns: 1fr; /* Still stack nutrition on smaller tablets */
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    }
}

/* Large Desktop Adjustments (1680px and above) */
@media only screen and (min-width: 1680px) {
    .container {
        max-width: 1400px; /* Wider view for big screens */
    }
    .hero-content h1 {
        font-size: 72px;
    }
}

/* Landscape Mode Adjustments for Small Mobile */
@media screen and (orientation: landscape) and (max-width: 812px) {
    .hero {
        height: auto;
        padding: 100px 0;
    }
    .hero-content {
        height: auto;
    }
}