@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Exo:700");
@import url("https://fonts.googleapis.com/css?family=Abel");
.text-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.text-black {
  color: #000000;
}

.bg-black {
  background-color: #000000;
}

.text-gray-100 {
  color: #f8f9fa;
}

.bg-gray-100 {
  background-color: #f8f9fa;
}

.text-gray-200 {
  color: #e9ecef;
}

.bg-gray-200 {
  background-color: #e9ecef;
}

.text-gray-300 {
  color: #dee2e6;
}

.bg-gray-300 {
  background-color: #dee2e6;
}

.text-gray-400 {
  color: #ced4da;
}

.bg-gray-400 {
  background-color: #ced4da;
}

.text-gray-500 {
  color: #adb5bd;
}

.bg-gray-500 {
  background-color: #adb5bd;
}

.text-gray-600 {
  color: #6c757d;
}

.bg-gray-600 {
  background-color: #6c757d;
}

.text-gray-700 {
  color: #495057;
}

.bg-gray-700 {
  background-color: #495057;
}

.text-gray-800 {
  color: #343a40;
}

.bg-gray-800 {
  background-color: #343a40;
}

.text-gray-900 {
  color: #212529;
}

.bg-gray-900 {
  background-color: #212529;
}

.text-primary {
  color: #0d6efd;
}

.bg-primary {
  background-color: #0d6efd;
}

.text-secondary {
  color: #6c757d;
}

.bg-secondary {
  background-color: #6c757d;
}

.text-success {
  color: #198754;
}

.bg-success {
  background-color: #198754;
}

.text-info {
  color: #0dcaf0;
}

.bg-info {
  background-color: #0dcaf0;
}

.text-warning {
  color: #ffc107;
}

.bg-warning {
  background-color: #ffc107;
}

.text-danger {
  color: #dc3545;
}

.bg-danger {
  background-color: #dc3545;
}

.text-light {
  color: #f8f9fa;
}

.bg-light {
  background-color: #f8f9fa;
}

.text-dark {
  color: #212529;
}

.bg-dark {
  background-color: #212529;
}

p {
  font-size: 18px;
}

.button-1 {
  padding: 10px 10px;
  border: 0;
  border-radius: 18px;
  color: #212121;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: 1000;
  font-size: 17px;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  overflow: hidden;
}

.button-1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 0;
  border-radius: 18px;
  background-color: #212121;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}

.button-1:hover {
  color: #e8e8e8;
}

.button-1:hover::before {
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}

.button-1:active {
  transform: scale(80%);
}

/* Loader Overlay */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9); /* optional backdrop */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader .loader {
  width: 50px;
  aspect-ratio: 1;
  color: #dc1818;
  background: radial-gradient(circle at 60% 65%, currentColor 62%, transparent 65%) top left, radial-gradient(circle at 40% 65%, currentColor 62%, transparent 65%) top right, linear-gradient(to bottom left, currentColor 42%, transparent 43%) bottom left, linear-gradient(to bottom right, currentColor 42%, transparent 43%) bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

#page-loader .loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.4;
  animation: l3 0.7s infinite;
}

@keyframes l3 {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}
/* General Card Styles */
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.img-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Sidebar */
.sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 15px;
}

.sidebar__menu li {
  margin-bottom: 10px;
}

.sidebar__link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  color: #333;
  transition: background 0.3s, color 0.3s;
}

.sidebar__link:hover,
.sidebar__link.active {
  background: #27ae60;
  color: #fff;
}

/* Benefits List */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-item-6 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-icon {
  font-size: 1.3rem;
  color: #27ae60;
  flex-shrink: 0;
}

.card-item-6 strong {
  color: #2c3e50;
}

/* Background Card */
.bg-image {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

/* Responsive font scaling */
@media (max-width: 767px) {
  .card-title {
    font-size: 1.2rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
}
/* Custom Card Style */
.custom-card {
  background: #fff;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #27ae60 !important; /* Green vertical bar */
  padding: 16px 20px !important;
  transition: transform 0.3s, box-shadow 0.3s;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon-wrapper {
  color: #27ae60;
  font-size: 0.7rem;
  margin-bottom: 8px;
}

.custom-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2c3e50;
}

.custom-card .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Card CSS */
.card-8 {
  background-color: #f9fbfc;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.56);
  width: 250px; /* Adjust size if needed */
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-8-icon {
  font-size: 28px;
  color: #2f855a; /* green color */
  margin-bottom: 15px;
}

.card-8-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.card-8-text {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.card-8-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  color: #2f855a;
  border: 1px solid #2f855a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.card-8-btn:hover {
  background-color: #2f855a;
  color: #fff;
}

.card-8:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Card 9 Container */
.card-9 {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  line-height: 1.7;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.card-9:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Title */
.card-9-title {
  color: #27ae60;
  font-size: 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Body Box */
.card-9-body {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

/* Each Item */
.card-9-item {
  flex: 1 1 45%;
  min-width: 180px;
  color: #555;
}

/* Description */
.card-9-desc {
  color: #555;
  margin-top: 15px;
}

/* Glass Card Base */
.card-10 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card hover lift */
.card-10:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 32px rgba(72, 209, 204, 0.6);
}

/* Holographic shimmer */
.card-10::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 0, 150, 0.2), rgba(0, 255, 255, 0.3), rgba(0, 200, 255, 0.2));
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2;
}

.card-10:hover::before {
  left: 125%;
  opacity: 1;
}

.card-10 img,
.card-content {
  position: relative;
  z-index: 3;
  border-radius: inherit;
  width: 100%;
}

/* Badge style - single solid colors */
.card-content .badge {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
}

.card-content .badge.bg-success {
  background-color: #28a745;
} /* Fruit */
.card-content .badge.bg-warning {
  background-color: #ffc107;
  color: #212529;
} /* Special */
/* Card title & text */
.card-10 h5 {
  font-weight: 700;
  color: #0a2540;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.card-10 p {
  font-weight: 400;
  color: #334155;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-10 h5 {
    font-size: 1rem;
  }
  .card-10 p {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .card-10 {
    border-radius: 15px;
  }
  .card-content {
    padding: 1rem;
  }
}
.faq-question {
  width: 100%;
  text-align: left;
  background: #f7f7f7;
  border: none;
  outline: none;
  padding: 15px 20px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
}

.faq-answer {
  padding: 0 20px 15px 20px;
  display: none;
  background: #fff;
  border-left: 3px solid #8e44ad;
  margin-bottom: 10px;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #555;
}

.Weight-loss-header {
  background-image: url("/images/home/0745aa7f-ba6a-4716-8792-d9032e1882be.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.weight-loss-sub {
  position: relative;
  width: 100%;
  padding-top: 30.25%; /* 16:9 aspect ratio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.weight-loss-sub-img {
  background-image: url("/images/weigthloss/personalized-diet-plans/Personalized-Diet.webp");
}

.Nutrition-Plans-sub-img {
  background-image: url("/images/weigthloss/nutrition-plan/Nutrition-Plans.jpg");
}

.Healthy-Vegetables-sub-img {
  background-image: url("/images/weigthloss/healthy-vegetables/Healthy-Vegetables.jpg");
}

.fresh-juices-sub-img {
  background-image: url("/images/weigthloss/fresh-juices/Fresh-Juices.jpg");
}

.Day-Rapid-Weight-Loss-sub-img {
  background-image: url("/images/weigthloss/7-Day Rapid Weight Loss Diet Plan/Day Rapid Weight Loss Diet.jpg");
}

@font-face {
  font-family: "Amita";
  src: url("/fonts/Amita/Amita-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Amita";
  src: url("/fonts/Amita/Amita-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/static/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
/* Variable font files (optional, fallback or modern browser support) */
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: "NataSans";
  src: url("/fonts/Nata_Sans/NataSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: "Space_Grotesk";
  src: url("/fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
.Space_Grotesk {
  font-family: "Space_Grotesk", sans-serif !important;
}

.NataSans {
  font-family: "NataSans", sans-serif !important;
}

.amita-text {
  font-family: "Amita", cursive !important;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-bold-italic {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.georgia-serif {
  font-family: Georgia, serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  background-image: url("/images/home/ZenGlow-Weight-Loss.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: -25px;
}

.card-box {
  background: white;
  padding: 60px 40px;
  border-radius: 40px;
  max-width: 600px;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.highlight {
  color: #7a8c23;
  font-weight: 600;
}

.btn-custom {
  background-color: #7a8c23;
  color: white;
  border-radius: 15px;
  padding: 10px 25px;
  border: none;
}

.btn-outline-custom {
  border: 1px solid #7a8c23;
  color: #7a8c23;
  border-radius: 15px;
  padding: 10px 25px;
  background-color: transparent;
}

.image-container {
  position: relative;
  z-index: 1;
}

.image-container img {
  max-width: 700px;
  width: 100%;
  margin-left: -80px; /* image overlaps left card */
  border-radius: 0px 0px 0px 100px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 20px;
  }
  .image-container img {
    margin-left: 0;
    margin-top: 30px;
    border-radius: 20px;
  }
  .card-box {
    padding: 30px 20px;
    text-align: center;
  }
}
.home-section {
  color: #28a745 !important;
  text-decoration: none !important;
  font-weight: bold;
}

.home-section:hover {
  color: #218838 !important; /* darker green */
  text-decoration: underline !important;
}

/* =======================
   🌟 Navbar Styling
   ======================= */
/* Default Navbar */
.navbar {
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Scrolled Navbar */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Active Link */
.nav-link.active {
  border-bottom: 2px solid green;
  color: green !important;
}

.nav-link.text-success.fw-bold {
  border-bottom: 2px solid green;
}

/* =======================
   📂 Dropdown Styling
   ======================= */
/* Smooth dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Fade effect for dropdown */
.fade-effect {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  margin-top: 0.5rem;
  display: block;
  pointer-events: none;
}

.nav-item.dropdown:hover > .fade-effect {
  pointer-events: auto;
}

/* =======================
   🖋 Brand & Logo Styling
   ======================= */
/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

/* Logo Image */
.logo-img {
  height: 50px;
  width: auto;
}
@media (max-width: 576px) {
  .logo-img {
    height: 38px;
  }
}

/* Logo Text */
.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem; /* Balanced size for desktop */
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  /* 📱 Mobile adjustments */
}
.logo-text span:first-child {
  color: #000; /* Zen - black for contrast */
}
.logo-text .highlight {
  color: #7a8c23; /* Glow - brand green */
}
@media (max-width: 576px) {
  .logo-text {
    font-size: 1rem;
    font-weight: 500;
  }
}

/* Side mobile menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -250px; /* hide offscreen */
    height: 100vh;
    width: 250px;
    background-color: #fff;
    padding: 2rem 1rem;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1050;
  }
  .navbar-collapse.show {
    left: 0; /* slide in */
  }
  .navbar-nav .nav-link {
    display: block;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
  }
  .navbar-nav .nav-link.text-success {
    color: #198754; /* active link */
  }
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .nav-sidebar .nav-link {
    flex: 0 0 auto; /* prevent squishing */
    padding: 10px 14px;
    font-size: 14px;
  }
  .nav-sidebar {
    position: sticky;
    top: 100px;
    border-left: solid green;
    padding-left: 18px;
    border-radius: 30px;
    padding-top: 12px;
    /* border-right: solid; */
  }
}
.footer-dark {
  background-color: #0b3b2e !important;
  color: #fff;
}

.footer-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-image: radial-gradient(#a3c940 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.footer-dark {
  background-color: #0b3b2e !important;
  color: #fff;
}

.footer-dark a {
  color: #cfd8dc;
  transition: color 0.3s ease;
}

.footer-dark a:hover {
  color: #a3c940;
}

.footer-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-image: radial-gradient(#a3c940 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.footer-icon {
  color: #a3c940;
  margin-right: 8px;
  font-size: 1rem;
}

.hero-2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  background-image: url("/images/weigthloss/Transform-Your-Health.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: -25px;
}

.card-box-2 {
  padding: 60px 40px;
  border-radius: 40px;
  max-width: 600px;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  background: rgba(234, 239, 233, 0.7490196078);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #66bb6a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
}

.change-90 {
  background-image: url("/images/home/Change-your-life.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 60px 20px;
  position: relative;
}

/* Optional overlay */
.change-90::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.change-90 .container {
  position: relative;
  z-index: 2;
}

.Change-your-life h2 {
  font-size: 54px;
}

.Change-your-life p {
  font-size: 20px;
}

.Personalized h5 {
  font-size: 28px;
}

.Personalized hr {
  width: 40px;
  border: 2px solid #000000;
}

/* section 3 */
.card1, .card2, .card3 {
  background-image: url("/images/home/vivid-blurred-colorful-wallpaper-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-page {
  background-color: #dfe6e9;
  margin: 0;
  padding: 0;
  font-family: "Abel", sans-serif;
  -webkit-transform: perspective(900px);
  transform-style: preserve-3d;
}

.main-page .title {
  text-align: center;
  padding-top: 50px;
}

.main-page .title h1 {
  font-size: 50px;
  font-family: "Exo", sans-serif;
}

.main-page .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px;
  perspective: 1000px;
}

.main-page .card {
  width: 260px;
  height: 370px;
  border-radius: 15px;
  text-align: center;
  transition: 0.6s;
  transform: rotateX(75deg) translateY(-200px) translateZ(-100px);
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 15px;
}

.main-page .card:hover {
  transform: rotateX(0deg);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.main-page .card2 {
  animation: animate 1s linear infinite;
}

.main-page .card img {
  transform: translateY(15px);
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.main-page .card2 img {
  width: 180px;
  height: 150px;
}

.main-page .card h3 {
  font-size: 25px;
  color: rgb(0, 0, 0);
  font-family: "Abel", sans-serif;
  text-shadow: 0 0 2px white;
  margin-top: 15px;
}

.main-page .card p {
  color: rgb(110, 110, 110);
  font-size: 14px;
  width: 90%;
  margin: 10px auto 0;
}

.main-page .footer {
  text-align: center;
  margin-top: 40px;
}

.main-page .footer h2 {
  font-size: 18px;
  font-family: "Exo", sans-serif;
}

@keyframes animate {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .main-page .card {
    transform: none;
    height: auto;
  }
}
.glass-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.glass-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #198754; /* Bootstrap green */
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #555;
  margin-bottom: 2rem;
}

.custom-section {
  background: linear-gradient(135deg, #e6f1f6, #ffffff);
  padding: 80px 0;
}

.read-more-btn {
  margin-top: 25px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid #198754;
  background-color: transparent;
  color: #198754;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.read-more-btn:hover {
  background-color: #198754;
  color: white;
  text-decoration: none !important;
}

.qualification-header {
  background: linear-gradient(to right, #0099A8, #00B4D8);
  color: white;
  text-align: center;
  padding: 60px 20px 30px;
  position: relative;
}

.qualification-header h2 {
  font-size: 2.5rem;
  font-family: "Pacifico", cursive;
  font-weight: 700;
}

.qualification-header small {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-grid .col {
  padding: 5px;
}

.Welcome-section-2 {
  font-size: 55px;
}

.info-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  background-image: url("/images/weigthloss/shoes-measuring-tape-dumbbell-earphone-cellphone-bowl-oats-.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  position: relative;
}

.info-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.info-box {
  background-color: #fff;
  padding: 40px;
  border-left: 4px dashed #ccc;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.info-box h6 {
  color: #555;
  font-weight: 400;
  font-family: serif;
  margin-bottom: 10px;
}

.info-box h2 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.author {
  margin-top: 30px;
}

.author-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.author-title {
  color: #777;
  font-size: 0.95rem;
}

.how-it-works {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.how-it-works h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.how-it-works h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.how-it-works p {
  color: #555;
  margin-bottom: 10px;
}

.how-it-works a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: all 0.2s ease;
}

.how-it-works a:hover {
  color: #ffc107;
}

.how-it-works hr {
  margin: 25px 0;
  color: #ccc;
}

.custom-rounded-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.howtoit h1 {
  font-size: 70px;
}

.card-modern {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(46, 204, 113, 0.25);
}

.card-img-top {
  height: 220px;
}

.card-body-weigthloss {
  padding: 50px;
}

.card-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.card-text {
  color: #7f8c8d;
  font-size: 15px;
  margin-bottom: 20px;
}

.card-btn {
  color: #2ECC71;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.card-btn:hover {
  color: #27ae60;
  text-decoration: underline;
}

.section-header {
  color: #2ECC71;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-green {
  background-color: #2ECC71;
  color: white;
  border-radius: 30px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background-color: #27AE60;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
  color: #fff;
}

.pricing-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.money-back-banner {
  background-color: #28a745;
  color: white;
  padding: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  border-radius: 5px;
  font-weight: bold;
}

.pricing-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s;
  margin-bottom: 20px;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 180px;
  object-fit: contain;
  padding: 1rem;
}

.product-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #343a40;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2ECC71;
  margin: 1rem 0;
}

.btn-order {
  background-color: #2ECC71 !important;
  color: white !important;
  padding: 0.5rem 2rem !important;
  font-weight: bold !important;
  border-radius: 50px !important;
  border: none !important;
  width: 100% !important;
}

.btn-order:hover {
  background-color: #19b331 !important;
  color: white !important;
}

.affiliate-disclaimer {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
  margin-top: 2rem;
}

/* Custom styling for the quote section */
.quote-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  background: url("/images/weigthloss/top-view-spa-element-collection.jpg") no-repeat center center;
  background-size: cover;
  color: white;
}

/* FAQ Section Styles */
.faq-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.faq-header {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-header h1 {
  color: #212529;
  font-weight: 700;
  font-size: 2.2rem;
}

/* Accordion Customization */
.accordion {
  --bs-accordion-border-color: #dee2e6;
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: calc(10px - 1px);
  --bs-accordion-btn-padding-x: 1.5rem;
  --bs-accordion-btn-padding-y: 1.25rem;
  --bs-accordion-body-padding-x: 1.5rem;
  --bs-accordion-body-padding-y: 1.5rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #f8fafc;
  color: #212529;
  transition: all 0.2s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #e7f1ff;
  color: #0c63e4;
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1.2rem;
}

.accordion-body {
  color: #495057;
  line-height: 1.6;
}

/* Sub Questions */
.sub-question {
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: #343a40;
}

/* Question Icon */
.question-icon {
  margin-right: 12px;
  color: #0d6efd;
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-header {
    padding: 1.5rem;
  }
  .faq-header h1 {
    font-size: 1.8rem;
  }
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
}
/* Arrow icon for parent links */
.nav-link-natural[href^="#"]::after {
  content: "▼";
  float: right;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.nav-link-natural[aria-expanded=true]::after {
  transform: rotate(-180deg);
}

/* Smooth submenu animation */
.nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.nav-submenu.open {
  max-height: 1000px; /* Large enough for all items */
}

----------------------------------------- _________________________________________ .food-section {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Section heading */
.section-title {
  color: #2c3e50;
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.section-title i {
  color: #27ae60;
}

/* Image */
.food-image {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Description */
.description {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Table wrapper (desktop scroll if overflow) */
.table-wrapper {
  overflow-x: auto;
}

/* Table (desktop view) */
.food-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.food-table th {
  background: #27ae60;
  color: #fff;
  padding: 12px;
  text-align: left;
}

.food-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.food-table tr:nth-child(even) {
  background: #f9f9f9;
}

/* ✅ Mobile: stack table as cards */
@media (max-width: 600px) {
  .food-table,
  .food-table thead,
  .food-table tbody,
  .food-table th,
  .food-table td,
  .food-table tr {
    display: block;
    width: 100%;
  }
  /* hide table head */
  .food-table thead {
    display: none;
  }
  /* each row becomes a card */
  .food-table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 10px;
  }
  /* each cell becomes label + value */
  .food-table td {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    font-size: 14px;
  }
  /* add label before content */
  .food-table td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 1;
    padding-right: 10px;
    color: #2c3e50;
  }
  /* value styling */
  .food-table td {
    flex: 2;
    color: #333;
  }
}
/* Section Background */
#personalized-diet-plans {
  background: linear-gradient(to bottom, #f9fdf9, #f3f9f4);
}

/* Headings */
#personalized-diet-plans h2 {
  font-size: 2rem;
  border-left: 5px solid #28a745;
  padding-left: 10px;
}

#personalized-diet-plans h4 {
  font-size: 1.3rem;
  color: #1e7e34;
  border-bottom: 2px solid #e0f3e0;
  padding-bottom: 6px;
}

/* Image */
#personalized-diet-plans img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

#personalized-diet-plans img:hover {
  transform: scale(1.05);
}

/* Lists */
#personalized-diet-plans ul li {
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

#personalized-diet-plans ul li:hover {
  background: #e9f9ed;
  transform: translateX(5px);
}

/* Table */
#personalized-diet-plans table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

#personalized-diet-plans thead {
  background: #28a745 !important;
  color: #fff;
}

#personalized-diet-plans tbody tr:nth-child(even) {
  background-color: #f9fdf9;
}

/* Section Styling */
#benefits {
  padding-bottom: 54px;
  padding-top: 10px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* Main Title */
.benefits__title {
  color: #27ae60;
  font-size: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  border-bottom: 2px solid #e6f4ec;
  padding-bottom: 10px;
}

.may-prevent-diabetes {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.8;
}

.may-prevent-diabetes__title {
  color: #16a085;
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.may-prevent-diabetes__text {
  color: #555;
  margin-bottom: 20px;
}

.may-prevent-diabetes__text--last {
  margin-top: 15px;
}

.may-prevent-diabetes__list {
  list-style: none;
  padding-left: 0;
  color: #555;
}

.may-prevent-diabetes__item {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.may-prevent-diabetes__icon {
  color: #16a085;
  margin-right: 8px;
  min-width: 20px;
}

.sweet-potato h1 {
  color: #E57D34;
}

/*# sourceMappingURL=app.css.map */
