* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  z-index: 100;
}

nav.scrolled {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s;
}

nav:not(.scrolled) .logo {
  color: white;
}

nav.scrolled .logo {
  color: #1f2937;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.dropdown-btn {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  font-family: Poppins, sans-serif;
  align-items: center;
  gap: 6px;
  color: black;
  transition: all 0.3s;
  text-decoration: none;
  background: none;
  border: none;
}
.partners {
  font-family: Poppins, sans-serif;
}

/* nav:not(.scrolled) .nav-links a,
      nav:not(.scrolled) .dropdown-btn {
        color: white;
      } */

nav.scrolled .nav-links a,
nav.scrolled .dropdown-btn {
  color: #374151;
}

.nav-links a:hover,
.dropdown-btn:hover {
  color: #ff6666;
  transform: scale(1.05);
}

.nav-links a:hover {
  color: #f96f49;
}

.chevron {
  transition: transform 0.3s ease;
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20%;
  width: 220px;
  background: white;
  border-radius: 8px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0) translateY(-16px);
  transform-origin: top;
  transition: all 0.3s;
  pointer-events: none;
}
.span-info {
  /* height: 30px; */
  text-align: center;
  /* width: 30px; */
  padding: 6px 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 13px;
  background-color: #c266ff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.span-info:hover {
  background-color: #a041fe;
  cursor: pointer;
}

.dropdown-menu.show {
  opacity: 1;
  transform: scaleY(1) translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  /* background-color: #eff6ff; */
  color: #ff6666;
}

.dropdown-menu.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 50px;
  gap: 8px;
  width: 600px;
  padding: 12px 16px;
  background: white;
  position: absolute;
  top: 100%;
  left: -100%;
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  z-index: 50;
  opacity: 0;
  transform: scaleY(0) translateY(-10px);
  transform-origin: top;
  transition: all 0.3s;
  pointer-events: none;
}

.dropdown-menu.partners.show {
  opacity: 1;
  transform: scaleY(1) translateY(0);
  pointer-events: auto;
}

.dropdown-menu.partners a {
  border: none;
  text-align: start;
  padding: 10px;
  border-radius: 6px;
  /* background: #f9fafb; */
  transition: all 0.3s;
  font-size: 14px;
}

.dropdown-menu.partners a:hover {
  /* background-color: #eff6ff; */
  color: #ff6666;
  transform: scale(1.05);
}

.call-btn {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  padding: 8px 10px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

nav.scrolled .call-btn {
  background-color: #f96f49;
  color: white;
}

nav:not(.scrolled) .call-btn {
  background-color: white;
  /* color: #2563eb; */
  border: #f96f49 2px solid;
}

.call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.dropdown-menu.customers a:hover {
  color: #ff6666;
}

.phone-icon {
  display: inline-block;
  animation: phone-shake 1.5s ease-in-out infinite;
}

@keyframes phone-shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  background: none;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(8deg);
  }
}

.mobile-menu-btn.shake {
  animation: shake 1.5s ease-in-out infinite;
}

.mobile-dropdown-toggle .chevron {
  transition: transform 0.22s ease;
  transform-origin: center;
  display: inline-block;
}
.mobile-dropdown-toggle.open .chevron {
  transform: rotate(180deg);
}

.mobile-menu {
  position: fixed;
  top: 0px;
  right: -320px;
  width: 300px;
  height: calc(100% - 0px);
  background: white;

  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease-in-out;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.close-button-mobile {
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
}

.mobile-menu.show {
  transform: translateX(-320px);
}

.mobile-links {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* .mobile-links a, */
.mobile-links button {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-links a {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-dropdown {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-dropdown a {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  background: none;
  border: none;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-dropdown.show {
  max-height: 450px;
  opacity: 1;
}

.overlay-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.overlay-nav.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .phone-icon {
    animation: none;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

main {
  margin-top: 80px;
}

:root {
  --emerald: #059669;
  --teal: #0d9488;
  --cyan: #06b6d4;
}

body {
  background: linear-gradient(to bottom right, #ecfdf5, #f0fdfa, #e0f2fe);
  color: #1f2937;
  overflow-x: hidden;
}

.yoga-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .yoga-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 1.5rem;
  grid-template-columns: 1fr;
} */

@media (min-width: 1024px) {
  .yoga-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.yoga-content {
  order: 2;
  text-align: center;
}

@media (min-width: 1024px) {
  .yoga-content {
    order: 1;
    text-align: left;
  }
}

.yoga-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 1.5rem;
}

.yoga-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  /* margin-bottom: 1rem; */
}
.yoga-title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media (min-width: 640px) {
  .yoga-title {
    font-size: 3rem;
  }
}

.yoga-highlight {
  color: var(--emerald);
}

.yoga-subtitle {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.yoga-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #a7f3d0;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin-bottom: 2rem;
}

.yoga-btns {
  display: flex;
  /* flex-direction: column; */
  flex-wrap:wrap;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .yoga-btns {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.yoga-btn-primary {
  background: linear-gradient(to right, var(--emerald), var(--teal));
  color: white;
  font-weight: 600;
  padding: 1rem;
  font-size:1rem;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yoga-btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(to right, #047857, #0f766e);
}

.yoga-btn-secondary {
  background: white;
  color: var(--emerald);
  font-weight: 600;
  padding: 1rem;
  font-size:1rem;
  /* font-family:Poppins sans-serif; */
  border-radius: 0.8rem;
  border: 2px solid #a7f3d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yoga-btn-secondary:hover {
  border-color: #6ee7b7;
  transform: translateY(-3px);
}

.yoga-stats {
  display: flex;
  justify-content: start;
  gap: 2rem;
  /* margin-top: 2rem; */
}

.yoga-stat {
  text-align: center;
}

.yoga-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
}
.yoga-habuild-logo {
  height: 70px;
  width: 150px;
}

.yoga-stat-label {
  font-size: 0.9rem;
  /* color: #6b7280; */
  font-weight:bold;
}

.yoga-image {
  order: 2;
  position: relative;
}

@media (min-width: 1024px) {
  .yoga-title-box {
    /* display: flex; */
    justify-content: start;
    /* align-items: flex-start; */
    gap: 10px;
  }

  .yoga-image {
    order: 2;
  }
}

.yoga-image img {
  width: 100%;
  /* border-radius: 1.5rem; */
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
  /* transition: transform 0.3s ease; */
}

.yoga-image img:hover {
  /* transform: scale(1.05); */
}

.yoga-tag {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(to right, var(--emerald), var(--teal));
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}


/* Default (mobile-first) */
.yoga-grid {
  display: grid;
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 1.5rem;
  grid-template-columns: 1fr;
}

.yoga-content {
  order: 3; /* content comes after image */
  text-align: center;
}

.yoga-image {
  order: 2; /* image comes right after heading */
}

.yoga-title-box,
.yoga-badge,
.yoga-title {
  order: 1; /* ensure heading/title area is first */
}

/* Large screens (no changes) */
@media (min-width: 1024px) {
  .yoga-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .yoga-content {
    order: 1;
    text-align: left;
  }

  .yoga-image {
    order: 2;
  }

  .yoga-title-box,
  .yoga-badge,
  .yoga-title {
    order: unset;
  }
}





/* fonder section  */
.founder-section {
  text-align: center;
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #2c1250, #441c78, #6d2ba3); */
  /* background:#fdf0d5; */
  background:#c2f1f9;
  /* color: #fff; */
}

.founder-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.founder-highlight {
  color: #7c9eff;
}

.founder-subtitle {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  /* color: #ddd; */
}

.founder-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.founder-card {
  /* background: rgba(255, 255, 255, 0.05); */
  background:#e8fbff;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
}

.founder-img-container {
  /* background: linear-gradient(135deg, #4a1e84, #693bbd); */
  background:#68d8d6;
  padding: 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.founder-img-container img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.founder-name {
  font-size: 1.4rem;
  margin: 10px 0 5px;
  /* color: #fff; */
}

.founder-role {
  color: #7c9eff;
  margin-bottom: 15px;
}

.founder-description {
  font-size: 0.95rem;
  /* color: #ddd; */
  margin-bottom: 20px;
}

.founder-socials a {
  margin: 0 8px;
  display: inline-block;
}

.founder-socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.founder-socials img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .founder-cards-container {
    flex-direction: column;
    align-items: center;
  }
}

/* testimonials  */

.testimonial-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f1f5f9 100%);
  overflow: hidden;
}

/* background blobs */
.testimonial-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  animation: pulse 6s ease-in-out infinite alternate;
}
.testimonial-bg-1 {
  width: 320px;
  height: 320px;
  background: #bfdbfe;
  top: 40px;
  left: 40px;
}
.testimonial-bg-2 {
  width: 320px;
  height: 320px;
  background: #a5f3fc;
  bottom: 40px;
  right: 40px;
  animation-delay: 2s;
}
@keyframes pulse {
  to {
    transform: scale(1.08);
  }
}

/* container & header */
.testimonial-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-header h2 {
  font-size: 2.6rem;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}
.testimonial-header p {
  color: #475569;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* slider layout */
.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}
.testimonial-wrapper {
  display: flex;
  transition: transform 600ms cubic-bezier(0.22, 0.9, 0.32, 1);
  will-change: transform;
}

/* card style */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 13px;
  margin: 0 12px;
  min-width: 320px;
  flex: 0 0 calc(33.333% - 24px);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testimonial-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #bfdbfe;
}
.testimonial-text h3 {
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 2px;
  font-weight: 600;
}
.testimonial-text p {
  color: #64748b;
  font-size: 0.9rem;
}
.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.testimonial-content {
  color: #334155;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: 4px;
}
.testimonial-quote {
  text-align: right;
  color: #3b82f6;
  opacity: 0.18;
  font-size: 56px;
  margin-top: 12px;
  font-family: serif;
}

/* nav buttons */
.testimonial-btn {
  background: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(2, 6, 23, 0.08);
  transition: transform 0.18s ease, background 0.18s;
}
.testimonial-btn:hover {
  transform: scale(1.06);
  background: #3b82f6;
  color: #fff;
}

/* dots */
.testimonial-dots {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.testimonial-dots button.active {
  /* width: 30px; */
  /* border-radius: 6px; */
  background: #3b82f6;
}

.prev {
  position: absolute;
  z-index: 9999;
  left: -20px;
}
.next {
  position: absolute;
  /* z-index: 9999; */
  right: -20px;
}

@media (max-width: 1023px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 24px);
    min-width: 340px;
  }
  .prev {
    position: absolute;
    z-index: 9999;
    left: -10px;
  }
  .next {
    position: absolute;
    /* z-index: 9999; */
    right: -10px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 60px 12px;
  }

  .testimonial-slider {
    gap: 8px;
  }

  .testimonial-viewport {
    overflow: hidden;
  }

  .testimonial-wrapper {
    transition: transform 0.5s ease-in-out;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
    min-width: 100%;
  }

  .testimonial-header h2 {
    font-size: 1.8rem;
  }

  .testimonial-header p {
    font-size: 0.95rem;
  }

  .testimonial-btn {
    width: 43px;
    height: 40px;
  }

  .testimonial-quote {
    font-size: 44px;
  }

  .prev {
    position: absolute;
    z-index: 9999;
    bottom: -50px;
    left: 5px;
  }
  .next {
    position: absolute;
    bottom: -50px;
    left: 55px;
  }
}

.oroglee-stat-section {
  background: #f8fafc;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.oroglee-stat-heading {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 50px;
  font-weight: 700;
}

.oroglee-stat-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.oroglee-stat-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.oroglee-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.oroglee-stat-icon {
  font-size: 2.5rem;
  color: #0ea5e9;
  margin-bottom: 20px;
}

.oroglee-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.oroglee-stat-label {
  font-size: 1rem;
  color: #64748b;
  margin-top: 8px;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .oroglee-stat-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .oroglee-stat-container {
    grid-template-columns: 1fr;
  }

  .oroglee-stat-card {
    padding: 30px 15px;
  }

  .oroglee-stat-heading {
    font-size: 1.7rem;
  }

  .oroglee-stat-number {
    font-size: 1.8rem;
  }

  .oroglee-stat-icon {
    font-size: 2.2rem;
  }
}

:root {
  --emerald: #10b981;
  --teal: #14b8a6;
  --cyan: #06b6d4;
}

/* Modal Base */
.yoga-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.yoga-modal.active {
  display: flex;
}

.yoga-modal-content {
  background: white;
  border-radius: 1.5rem;
  max-width: 700px;
  width: 90%;
  padding: 2rem;
  overflow-y: auto;
  max-height: 85vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.yoga-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #475569;
}

.yoga-modal-header {
  background: linear-gradient(
    to right,
    var(--emerald),
    var(--teal),
    var(--cyan)
  );
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-text {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #374151;
  font-weight: 500;
}

/* Steps Container */
.yoga-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Plan Card */
.yoga-modal-plan {
  background: #f9fafb;
  border: 2px solid #a7f3d0;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yoga-modal-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.2);
}

.yoga-modal-plan h4 {
  color: var(--emerald);
  margin-top: 10px;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.total {
  border-color: var(--teal);
  background: #ecfdf5;
  font-weight: 600;
}

/* ======= Banner Ribbon ======= */
/* Banner Ribbon - Top Left */
.plan-banner {
  position: absolute;
  top: 15px;
  left: -55px; /* move to left */
  background: #22c55e; /* default */
  color: white;
  font-weight: 700;
  padding: 0.4rem 0;
  width: 180px;
  text-align: center;
  transform: rotate(-45deg); /* rotate negatively for top-left */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Different Plan Colors */
.plan-banner.riser {
  background: #0ea5e9;
}
.plan-banner.achiever {
  background: #f59e0b;
}
.plan-banner.pro {
  background: #a855f7;
}

/* Responsive Adjustment */
@media (max-width: 600px) {
  .plan-banner {
    width: 130px;
    font-size: 0.7rem;
    left: -45px;
    top: 12px;
  }
}

/* Arrow Animation */
.arrow-down {
  text-align: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin: 0.4rem 0 1rem 0;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======= Responsive ======= */
@media (max-width: 600px) {
  .yoga-modal-content {
    padding: 1.5rem;
  }

  .yoga-modal-plan {
    padding: 0.8rem;
  }

  .plan-banner {
    width: 130px;
    font-size: 0.7rem;
    left: -45px;
    top: 12px;
  }

  .arrow-down {
    font-size: 1.2rem;
    margin: 0.3rem 0 0.8rem 0;
  }
}

/* habuild hero section home page */
.habuild-hero-section {
  position: relative;
  /* min-height: 100vh; */
  background: linear-gradient(to bottom right, #fef3c7, #fff7ed, #fee2e2);
  overflow: hidden;
  /* display: none; */
  /* padding-top: 5rem; */
}

/* Decorative Shapes */
.habuild-shape {
  position: absolute;
  border-radius: 50%;
  transform: rotate(45deg);
  z-index: 1;
}

.habuild-shape1 {
  top: 80px;
  left: 40px;
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom right, #f59e0b, #ea580c);
  opacity: 0.2;
}

.habuild-shape2 {
  top: 160px;
  right: 80px;
  width: 96px;
  height: 96px;
  background: linear-gradient(to bottom right, #ef4444, #ec4899);
  opacity: 0.1;
  transform: rotate(12deg);
}

.habuild-shape3 {
  bottom: 80px;
  left: 80px;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom right, #f97316, #ef4444);
  opacity: 0.15;
  transform: rotate(-12deg);
}

.habuild-shape4 {
  bottom: 160px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: linear-gradient(to bottom right, #f59e0b, #ea580c);
  opacity: 0.2;
}

/* SVG Blob Shape */
.habuild-svg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  opacity: 0.1;
  z-index: 1;
}

.habuild-svg-inner {
  width: 100%;
  height: 100%;
}

.habuild-svg-color {
  color: #d97706;
}

/* Hero Container */
.habuild-hero-container {
  /* max-width: 1000px; */
  margin: 0 auto;
  /* padding: 0 2rem; */
  position: relative;
  z-index: 2;
}

.habuild-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* min-height: 100vh; */
  padding: 2rem 1rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .habuild-hero-grid {
    flex-direction: row;
    align-items: center;
  }
}

/* Hero Left */
.habuild-hero-text h1 {
  font-size: 2.5rem;
  color: #1f2937;
  font-weight: 300;
}

.habuild-hero-text h1 .habuild-highlight {
  font-weight: 500;
  font-style: italic;
  color: #b45309;
}

.habuild-hero-text p {
  color: #4b5563;
  font-size: 1.1rem;
  max-width: 500px;
  margin-top: 1rem;
}

.habuild-hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.habuild-btn-primary {
  background: linear-gradient(to right, #d97706, #ea580c);
  color: white;
  /* padding: 1rem 2rem;*/
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.habuild-btn-primary:hover {
  background: linear-gradient(to right, #b45309, #c2410c);
  transform: scale(1.05);
}

.habuild-btn-outline {
  border: 2px solid #d97706;
  color: #b45309;
  background-color: transparent;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.habuild-btn-outline:hover {
  background-color: #fef3c7;
}

/* Hero Right */
.habuild-hero-image-wrapper {
  position: relative;
}

.habuild-image-box {
  position: relative;
  /* padding: 1.5rem; */
  /* background: rgba(255, 255, 255, 0.2); */
  backdrop-filter: blur(12px);
  /* border-radius: 2rem; */
  /* box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1); */
}

.habuild-image-box img {
  /* max-width: 100%; */
  width: 100%;
  /* max-width: 350px; */

  height: 300px;
  /* border-radius: 1.5rem; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); */
  object-fit: contain;
}

/* @media (max-width:786px){
  
} */

/* Dots */
.habuild-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
}

.habuild-dot1 {
  top: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom right, #f59e0b, #ea580c);
  opacity: 0.8;
}

.habuild-dot2 {
  bottom: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, #ef4444, #ec4899);
  opacity: 0.6;
}

.hero-stats {
  display: grid;
  color: white;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* margin-top: 40px; */
  /* max-width: 530px; */
}

.hero-stat-box {
  background: linear-gradient(135deg, #3a1a6a, #6e3aff);
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
}

/* .hero-stat-box-fitness {
  background: linear-gradient(to bottom right, #f59e0b, #ea580c);
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
} */

.hero-stat-box-fitness {
  background: linear-gradient(to bottom right, #f59e0b, #ea580c);
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
}

.hero-stat-box-fitness1 {
  /* background: linear-gradient(to bottom right, #3fe0fcff, #25d9f4ff); */
  /* background: linear-gradient(to bottom right, #f59e0b, #ea580c); */
  padding: 10px 0;
  text-align: center;
  /* border-radius: 16px; */
  padding: 14px 28px;
  border-radius: 999px;
  /* background: linear-gradient(
    90deg,
    var(--saurabh-accent-1),
    var(--saurabh-accent-2)
  ); */
  background: linear-gradient(to bottom right, #3a1a6a, #6e3aff);
  color: white;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.18);
  transition: transform 220ms var(--saurabh-transition),
    box-shadow 220ms var(--saurabh-transition);
}

.hero-stat-box .hero-number {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-stat-box .hero-label {
  font-size: 0.95rem;
  color: #aaa;
}

.hero-right {
  flex: 1 1 320px;
  max-width: 320px;
  margin-right: 10%;
  /* margin-top: 10%; */
  display: flex;
  gap: 10px;
  flex-direction: column;
  /* justify-content: center;
  align-items: center; */
  position: relative;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-logo {
  height: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 110px;
}

/* footer  */

.footer {
  background: #002147;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.footer h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease-in-out, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #f8c102;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.footer-links div {
  text-align: left;
}

.footer-links h2 {
  font-size: 1rem;
  font-weight: 300;
  text-decoration: underline;
  margin-bottom: 10px;
}

.footer-links a {
  color: #f8c102;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: white;
}

.footer-banner {
  background: #f8c102;
  color: #002147;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  border-radius: 10px;
  display: inline-block;
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer h2 {
    font-size: 1.5rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links div {
    text-align: center;
  }

  .footer-banner {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer h2 {
    font-size: 1.3rem;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-links h2 {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-banner {
    padding: 10px;
    font-size: 0.9rem;
  }
}





.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  gap: 20px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px 0px;
}

.section img.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: auto;
}

.section img.nutrition-image {
  height: 340px;
  width: 320px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
}

.sub-heading {
  font-weight: bold;
  background-color: #f1f1f1;
}

.desc-col {
  background-color: #fefefe;
}

.ticks {
  text-align: center;
}

.tick::before {
  content: "\2713";
  color: green;
  font-weight: bold;
}

.section.fitness {
  background: linear-gradient(to right, #ffffff, #d6f1ed);
}

.section.nutrition {
  background: linear-gradient(to right, #fff5e7, #ffe9c4);
}

.section.dental-products {
  background: linear-gradient(to right, #f2eaff, #e0d4ff);
}

.section.dental {
  background: #ffcebc;
  background: linear-gradient(
    90deg,
    rgba(255, 206, 188, 1) 0%,
    rgba(255, 171, 140, 1) 100%
  );
}

.vision {
  background: linear-gradient(to right, rgb(203, 220, 237), #ffffff);
}

.note-point {
  font-style: italic;
  font-size: 12px;
  padding-top: 5px;
}
.improvedSleep {
  background: linear-gradient(to bottom right, #f1f5f9, #e0f2fe, #e0e7ff);
}
.spa {
  background: linear-gradient(to bottom right, #ffe4e6, #fff7ed, #fce7f3);
}
.mental {
  background: #ffccd5;
  background: linear-gradient(
    90deg,
    rgba(255, 204, 213, 1) 0%,
    rgba(255, 181, 194, 1) 100%,
    rgba(255, 240, 243, 1) 100%
  );
}
.section.fitness .custom-table {
  background-color: #e1faf4;
}
.section.fitness .sub-heading {
  background-color: #d1f5ec;
}
.section.fitness .desc-col {
  background-color: #f5fdfc;
}

/* .mental .custom-table{
  background:rgba(255, 240, 243, 1) 100%;
} */

/* .mental .sub-heading{
  background-color:rgb(237, 182, 192) 100%,
} */
/* NUTRITION Table (section.nutrition) */
.section.nutrition .custom-table {
  background-color: #fff2dc;
}
.section.nutrition .sub-heading {
  background-color: #ffe4b8;
}
.section.nutrition .desc-col {
  background-color: #fffaf1;
}

/* DENTAL PRODUCTS Table (section.dental-products) */
.section.dental-products .custom-table {
  background-color: #eee5ff;
}
.section.dental-products .sub-heading {
  background-color: #d9ccff;
}
.section.dental-products .desc-col {
  background-color: #f6f0ff;
}

.section.dental .custom-table {
  background-color: #ffcebc;
}

.section.dental .sub-heading {
  background-color: #ffab8c;
}
.section.dental .desc-col {
  background-color: #ffe0d5;
}

.how-it-works-btn {
  margin-top: 20px;
  padding: 10px 18px;
  border: none;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.how-it-works-btn:hover {
  background-color: #555;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  /* max-width:240px; */
  overflow-y: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;

  /* ✅ Hide scrollbar but allow scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}
.popup::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

.close-btn:hover {
  color: #000;
}

.popup.active {
  display: block;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.overlay.active {
  display: block;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 40%;
  width: 100%;
}

/* Timeline container should grow with content */
.timeline-container {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100%;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section {
    flex-direction: column;
  }
  .section img.nutrition-image {
    width: 100%;
    height: 250px;
  }
  .popup {
    max-width: 90%;
    margin: auto;
  }
}
.popup {
  scroll-behavior: smooth;
  /* max-width:90%; */
}

/* timeline */
/* .timeline-container {
  position: relative;
} */
.timeline-container {
  position: relative;
  width: 100%;
  height: 500px;
  /* overflow-x: hidden;  */
}

.timeline {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  width: 9px;
  background: #ccc;
  height: 500px;
}
.progress {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  width: 9px;
  background: #002147;
  height: 0;
  transition: height 1s linear;
}
.step {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.steps {
  position: absolute;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  white-space: normal; /* changed from nowrap - else the sentence was not wrapping on putting a width*/
}

.step-4 {
  margin-bottom: 10%;
}
.steps div {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.steps div p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.book-now {
  background: #002147;
  font-size: 16px;
  color: white;
  padding: 6px;
  border-radius: 4px;
  font-family: "Poppins", serif;
  cursor: pointer;
  border: none;
  align-self: flex-start;
}
@keyframes zoomInOut {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

.dot {
  width: 40px;
  height: 40px;
  background: #002147;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.gif {
  width: 45px;
  height: 45px;
}

.info {
  width: 20px;
  height: 20px;
}
.text {
  margin-top: 10px;
}
#step1 {
  top: 0px;
}
#step2 {
  top: 166.6px;
}
#step3 {
  top: 332.6px;
}
#step4 {
  top: 500px;
}

.infos {
  height: 18px;
  cursor: pointer;
}

.info-button {
  border: none;
  display: flex;
  gap: 8px;
  background: white;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.know-more {
  text-decoration: underline;
}

@media (max-width: 567px) {
  /* body {
    justify-content: start;
    padding-left: 30px;
  } */
  .timeline {
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    width: 9px;
    background: #ccc;
    height: 500px;
  }

  .progress {
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    width: 9px;
    background: #002147;
    height: 0;
    transition: height 1s linear;
  }
  .step {
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .dot {
    width: 40px;
    height: 40px;
    background: #002147;
    border-radius: 50%;
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .steps {
    margin-left: 40px;
  }
}

.sub-heading-mental {
  background: rgb(255, 171, 188) 100%;
}

.desc-col-mental {
  background: #ffccd5;
}

.custom-table-mental {
  background: #ffb7c4;
}

.sub-heading-sleep {
  background: #a2d2ff;
}

.desc-col-sleep {
  background: #bde0fe;
}

.custom-table-sleep {
  background: #e0e7ff;
}

.sub-heading-vision {
  background: #a8dadc;
}

.desc-col-vision {
  background: #e0fbfc;
}

.custom-table-vision {
  background: #cbeef3;
}

.sub-heading-tattva {
  background: #faedcd;
}

.desc-col-tattva {
  background: #fde4cf;
}

.custom-table-tattva {
  background: #f5ebe0;
}

.sections-hidden {
  display: none;
}

.sections-show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}



.button-container {
  display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content: center;
  padding:20px;
  /* margin-bottom: 2rem; */
}

.toggle-btn {
  padding: 10px 20px;
  background-color: #0288d1;
   background: linear-gradient(90deg, #03ccb8ff, #44d5efff);
  border: none;
  font-family: "Poppins", serif;
  cursor: pointer;
  color: white;
  font-weight:600;
  border-radius: 8px;
  margin:6px;
  /* cursor: pointer; */
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background-color: #01579b;
  transform: scale(1.05);
}


// floating button 
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffc107); /* gold-like */
  color: #000;
  border: none;
  z-index: 999999;
  border-radius: 30px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
  animation: floatUpDown 2.5s ease-in-out infinite;
}

.floating-btn:hover {
  background: linear-gradient(135deg, #ffc107, #ffb300);
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .floating-btn {
    font-size: 14px;
    padding: 12px 18px;
    bottom: 15px;
    right: 15px;
  }
}



.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  background: linear-gradient(135deg, #ffd700, #ffc107); /* gold-like */
  color: #000;
  border: none;
  z-index: 999999;
  border-radius: 30px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
  animation: floatUpDown 2.5s ease-in-out infinite;
}

.floating-btn:hover {
  background: linear-gradient(135deg, #ffc107, #ffb300);
}





.careplus-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px;
  text-align: center;
}

.careplus-heading {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.careplus-subheading {
  font-size: 18px;
  color: #475569;
  margin-bottom: 36px;
}

.careplus-card {
  /* background: #ffffff; */
  /* border-radius: 16px; */
  padding: 32px 24px;
  /* box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12); */
  /* border: 1px solid #e2e8f0; */
}

.careplus-benefits {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 28px;
}

/* Family rows */
.careplus-family-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.careplus-row1 {
  background: #e0f2fe;
  /* light blue */
}

.careplus-row2 {
  background: #cbf1fa;
  /* light green */
}

.careplus-row3 {
  background: #fef9c3;
  /* light yellow */
}

.careplus-member {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  font-size: 15px;
}

.careplus-member span {
  font-size: 18px;
}

.careplus-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #2563eb;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.careplus-button:hover {
  background: #1e40af;
}

.sections-hidden {
  display: none;
}

.sections-show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}