@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ----------- Hero Section Layout ----------- */
:root {
  --blue: #0061fe;
  --gold: #d97706;
  --text: #1f2937;
  --muted: #6b7280;
  --surface: #ffffff;
  --bg: #eef2ff;
  /* --radius: 1rem; */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #f0f4f8, #ffffff);
  overflow-x: hidden;
}

.card-price-heading {
  text-align: center;
  font-weight: 600;
  padding-top: 20px;
}

.col-head-basic {
  background: #0000CB;
  color: white;
  text-align: center;
}

.col-head-gold {
  background: #FFF022;
  text-align: center;
}

/* .card-price{
  display:flex;
  justify-content:flex-end;
  align-items:end;
} */

.main-logo {
  height: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 110px;
}

.main-logo1 {
  height: 40px;
  position: absolute;
  top: 38px;
  left: 5px;
  width: 110px;
}

/* navbar  */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  /* background: transparent; */
  /* background: white; */
  z-index: 30;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  gap: 20px;
  margin-left: 50px;
  margin-right: 50px;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: 150px;
}

.nav-logo .nav-title {
  font-size: 26px;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-menu-item {
  position: relative;
}

#appPicker {
  position: fixed;
  top: 10%;
  right: 10%;
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#appPicker h3 {
  margin: 20px 0;
}

#appPicker ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#appPicker ul li {
  list-style: none;
}

#appPicker ul li a {
  text-decoration: none;
}

#closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.nav-menu-item i {
  margin-left: 10px;
}

.nav-menu-item:hover i {
  rotate: 360deg;
}

.nav-menu-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.nav-menu-link:hover {
  color: #ff6666;
}

.nav-menu-link:hover i {
  rotate: 180deg;
  transition-duration: 0.5s;
}

.nav-desktop-btn-wrapper {
  opacity: 0;
  animation: fade-in 1s ease forwards 2s;
  display: inline-block;
}

.nav-desktop-btn {
  padding: 14px 16px;
  background: transparent;
  border: 2px solid #ff6666;
  border-radius: 10px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-desktop-btn:hover {
  transform: scale(0.9);
}

.nav-desktop-btn i {
  transform: rotate(0deg);
  animation: toggle 1s ease forwards infinite;
}

@keyframes toggle {
  100% {
    transform: rotate(40deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-submenu {
  display: block;
  position: absolute;
  top: 10px;
  left: -60px;
  padding: 40px 0;
  list-style: none;
  white-space: nowrap;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.nav-submenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  padding: 10px 20px;
  border: 1px solid #ccc;
  width: 500px;
  position: absolute;
  left: -120px;
}

.nav-submenu ul h3 {
  margin: 0px;
  padding: 0px;
}

.nav-submenu ul p {
  white-space: wrap;
  margin: 0px;
  padding: 0px;
}

.all-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.all-links li a {
  white-space:wrap;
}

.all-links div:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.all-links div:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.all-links div:nth-child(n + 3) {
  grid-column: 2;
  grid-row: auto;
}

.all-links li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.all-links li div {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: purple;
  display: flex;
  justify-content: center;
  align-items: center;
}

.all-links img {
  height: 60px;
  width: 60px;
  position: absolute;
  bottom: 50px;
  right: 30px;
}

.nav-submenu-link {
  text-decoration: none;
  color: black;
  display: block;
}

.nav-menu-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.nav-header.scrolled {
  background: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.nav-submenu-link:hover {
  color: #ff6666;
  width: 100%;
}

.nav-mobile-menu {
  display: none;
}

@media screen and (max-width: 1080px) {
  .nav-container {
    margin-left: 0px;
    /* margin-right: 0px; */
  }

  .nav-mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
  }

  .nav-mobile-menu.open {
    left: 0;
  }

  .mbl-nav-submenu {
    list-style-type: none;
  }

  .mbl-nav-submenu .mbl-nav-submenu-link {
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    color: #c266ff;
  }

  .mbl-nav-submenu .mbl-nav-submenu-link:hover {
    color: #8a00e6;
  }

  .nav-menu-close {
    font-size: 24px;
    cursor: pointer;
    text-align: right;
  }

  .nav-mobile-menu-items {
    list-style: none;
    margin-top: 20px;
  }

  .nav-mobile-menu-item {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }


  .nav-mobile-menu-item i {
    margin-left: 10px;
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .nav-mobile-menu-item:hover i.open {
    transform: rotate(180deg);
  }

  .nav-mobile-menu-item .mbl-nav-submenu {
    display: none;
    padding: 10px 0;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    height: auto;
  }

  .nav-mobile-menu-item .mbl-nav-submenu.open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nav-mobile-btn {
    padding: 12px 0;
    color: white;
    background: linear-gradient(to right, #f06, #f35, #f39);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    padding: 14px 30px;
    position: absolute;
    bottom: 40px;
    left: 10%;
  }

  .nav-menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-desktop {
    display: none;
  }

  .nav-desktop-btn-wrapper {
    display: none;
  }
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* min-height: 100vh; */
  padding: 2rem 1rem;
  justify-content: center;
}

.dummy-section {
  height: 40vh;
  width: 100%;
}

.hero-main * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.band {
  background: white;
  padding: 20px;
  width: full;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.hero-main {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #1a1330, #0d0a17);
  color: white;
  padding: 10% 5%;
  display: flex;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-left {
  flex: 1 1 320px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.hero-title {
  /* font-size: 2.5rem; */
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: "Roboto";
  font-size: 3rem;
}

.hero-purple {
  color: #7c5aff;
  margin-right: 10px;
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.multiple {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.hero-underline {
  width: 144px;
  height: 4px;
  background: linear-gradient(90deg, #7c5aff, #b18aff);
  border-radius: 9999px;
  margin-bottom: 24px;
}

.poweredBy-title {
  font-size: 1.3rem;
}

.hero-description {
  /* color: #b0b0b0; */
  font-size: 1rem;
  line-height: 1.5;
  /* max-width: 400px; */
  margin-bottom: 32px;
}

.hero-btn-get-app {
  background: linear-gradient(90deg, #7c5aff, #b18aff);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn-get-app:hover {
  filter: brightness(1.1);
}

.hero-avatars {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #1a1330;
  margin-left: -12px;
  object-fit: cover;
}

.hero-avatars .hero-count {
  background: #ff9d76;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 12px;
}

.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-dental {
  background: linear-gradient(90deg, #6847e6, #7938fc);
  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-nutrition {
  background: linear-gradient(to bottom right,
      rgb(200, 255, 218),
      rgb(88, 242, 170));
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
  color: black;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-stat-box-maxivision {
  background: linear-gradient(to right, rgb(145, 196, 247), #ffffff);
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
  color: black;

  font-weight: 500;
  /* padding:20px; */
}

.hero-stats-maxivision {
  display: grid;
  color: white;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  padding-left: 0px;
  /* margin-top: 40px; */
  /* max-width: 530px; */
}

.hero-stat-box-sleep {
  /* background: linear-gradient(to bottom right, #ffe4e6, #fff7ed, #fce7f3); */
  background: linear-gradient(to bottom right,
      #f1f5f9,
      rgb(148, 212, 255),
      rgb(178, 196, 255));
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
  color: black;

  font-weight: 500;
  /* padding:20px; */
}

.hero-stats-sleep {
  display: grid;
  color: white;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  padding-left: 0px;
  /* margin-top: 40px; */
  /* max-width: 530px; */
}

.hero-stat-box-tattva {
  background: linear-gradient(to bottom right,
      rgb(255, 201, 205),
      rgb(255, 235, 211),
      rgb(255, 201, 232));
  /* background: linear-gradient(to bottom right, #f1f5f9,rgb(148, 212, 255),rgb(178, 196, 255)); */
  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
  color: black;

  font-weight: 500;
  /* padding:20px; */
}

.hero-stats-tattva {
  display: grid;
  color: white;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  padding-left: 0px;
  /* margin-top: 40px; */
  /* max-width: 530px; */
}

.hero-stat-box-food {
  background: linear-gradient(135deg,
      rgb(210, 255, 222),
      rgb(255, 242, 180),
      rgb(255, 209, 209));

  padding: 10px 0;
  text-align: center;
  border-radius: 16px;
  color: black;

  font-weight: 500;
  /* padding:20px; */
}

.hero-stats-food {
  display: grid;
  color: white;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  padding-left: 0px;
  /* margin-top: 40px; */
  /* max-width: 530px; */
}

.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;
}

.dental-button {
  /* margin-bottom:40%; */
  position: absolute;
  background: #ff7f50;
  color: white;
  font-size: 16px;
  border-radius: 25px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  padding: 10px 12px;
  border: none;
  top: -100px;
  right: 0px;
}

.hero-card-3d {
  width: 320px;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00c6ff 0%, #7c5aff 100%);
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.6);
  transform: rotate(15deg);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hero-card-3d:hover {
  transform: rotate(15deg) scale(1.05);
}

.hero-card-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6a00ff 0%, #00d2ff 100%);
  border-radius: 16px;
  filter: blur(25px);
  opacity: 0.5;
  z-index: 0;
}

.hero-card-3d .hero-top-row,
.hero-card-3d .hero-bottom-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}

.hero-card-3d .hero-card-number {
  font-size: 1.4rem;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 2px;
  margin-top: 1.2rem;
  z-index: 1;
}

.hero-visa-logo {
  /* background: white; */
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
}

.hero-visa-logo img {
  width: 100%;
}

.hero-wireless-icon {
  font-size: 1.2rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-number {
    font-size: 13px;
  }

  .hero-label {
    font-size: 13px;
  }

  .hero-main {
    padding-top: 30%;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card-3d {
    width: 280px;
    height: 180px;
    transform: rotate(10deg);
  }

  .hero-card-3d:hover {
    transform: rotate(10deg) scale(1.05);
  }

  .dental-button {
    top: 260px;
  }

  .band {
    padding: 10px;
  }

  .hero-card-3d .hero-card-number {
    margin-top: 0.8rem;
  }

  .hero-btn-get-app {
    background: linear-gradient(90deg, #7c5aff, #b18aff);
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
}

/* dental oroglee  */
.dental-hero {

  padding: 2rem 2rem;
  margin-top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* min-height: 100vh; */
}

.dental-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.dental-left {
  flex: 1;
}

.dental-subtitle {
  color: #1e3a8a;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.dental-title {
  font-size: 2.8rem;
  /* color: #0f172a; */
  /* font-weight: 800;
  line-height: 1.2;   */

  font-weight: 500;
  font-style: italic;
  /* color: #b45309; */
}

.dental-title span {
  color: #2563eb;
}

.dental-description {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #475569;
}

.dental-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.buttons-dental-oroglee {
  display: flex;
  gap: 10px;
}

.dental-know-more {
  background: #07a2f0;
  color: white;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

/* .dental-know-more:hover {
   background:  #07f0f0; 
}*/

.dental-phone {
  font-weight: bold;
  color: #1e3a8a;
}

.dental-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dental-image {
  width: 100%;
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.dental-circle-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background: white;
  border-radius: 50%;
  z-index: 1;
  top: 45%;
  left: 25%;
  transform: translate(-50%, -50%);
}

/* Floating Elements */
.dental-floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Bubbles */
.dental-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(173, 216, 230, 0.3);
  animation: dental-bounce 10s infinite ease-in-out;
  z-index: 0;
}

.dental-bubble1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.dental-bubble2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

.dental-bubble3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 25%;
  animation-delay: 6s;
}

/* Sprinkles or Icons */
.dental-sprinkle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: dental-float 8s ease-in-out infinite;
  z-index: 1;
}

.dental-sprinkle1 {
  top: 10%;
  left: 60%;
  animation-delay: 1s;
}

.dental-sprinkle2 {
  bottom: 10%;
  left: 30%;
  animation-delay: 2.5s;
}

.tooth-image {
  height: 400px;
  width: 400px;
}

.dental-sprinkle3 {
  top: 10%;
  right: 10%;
  animation-delay: 4s;
}

/* Bounce Animation */
@keyframes dental-bounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

/* Float Animation */
@keyframes dental-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* .dental-hero {
    margin-top: 20%;
  } */

  .dental-container {
    flex-direction: column;
    text-align: center;
  }

  .dental-right {
    margin-top: 2rem;
  }

  .dental-title {
    font-size: 2rem;
  }

  .dental-circle-bg {
    width: 180px;
    height: 180px;
    top: 17%;
    left: 52%;
  }

  .tooth-image {
    height: 300px;
    width: 300px;
  }

  .dental-sprinkle3 {
    top: 60%;
    right: 10%;
    animation-delay: 4s;
  }
}

/* habuild  */

.habuild-hero-section {
  position: relative;
  /* min-height: 100vh; */
  background: linear-gradient(to bottom right, #fef3c7, #fff7ed, #fee2e2);
  overflow: hidden;
  /* 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;
}

/* 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;
}

/* oracura  */

.oracura-hero {
  position: relative;
  /* min-height: 100vh; */

  background-image: url("./assets/dentalproducts.png"),
    linear-gradient(90deg,
      rgb(148, 77, 235) 33%,
      rgb(157, 71, 226) 52%,
      rgb(192, 85, 241) 68%);

  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: 400px auto, cover;

  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* padding: 2rem; */
  overflow: hidden;
}

.oracura-main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.oracura-bg-center,
.oracura-bg-image-wrapper {
  display: none;
  /* No longer needed */
}

.oracura-bg-center {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
  z-index: 0;
}

.oracura-bg-center img {
  max-width: 80%;
  width: 100%;
  object-fit: contain;
}

.oracura-bg-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Less than content (e.g., content z-index = 2) */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.oracura-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.oracura-floating {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.oracura-floating div {
  position: absolute;
  border-radius: 9999px;
  animation: oracura-bounce infinite ease-in-out;
}

.oracura-shape {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  animation: oracura-pulse infinite ease-in-out;
}

/* Star Icon */
.oracura-star::before {
  content: "★";
}

/* Wave Icon (can be ~ as symbol) */
.oracura-wave::before {
  content: "∿";
  font-size: 2rem;
}

/* Sparkle Icon */
.oracura-sparkle::before {
  content: "✦";
  font-size: 1.2rem;
}

.oracura-symbol {
  color: rgba(145, 51, 164, 0.3);
  animation: oracura-pulse infinite ease-in-out;
  position: absolute;
}

.oracura-main-content {
  position: relative;
  z-index: 2;
}

.oracura-heading {
  color: #fff;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.2;
}

.oracura-heading span {
  background: linear-gradient(to right, #ddd6fe, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.oracura-sub {
  color: #ddd6fe;
  font-size: 1.25rem;
  /* margin-top:30%; */
  font-weight: 300;
}

.oracura-suboral {
  color: #ddd6fe;
  font-size: 1.25rem;
  margin-top: 50%;
  font-weight: 300;
}

.oracura-tagline {
  font-weight: 700;
  font-size: 1.5rem;
  color: #e9d5ff;
  letter-spacing: 0.2em;
}

.oracura-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.oracura-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  transition: 0.3s all ease;
  cursor: pointer;
}

.oracura-btn-primary {
  background: #fff;
  color: #5b21b6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.oracura-btn-primary:hover {
  background: #f5f3ff;
  transform: scale(1.05);
}

.oracura-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.oracura-btn-secondary:hover {
  background: #fff;
  color: #5b21b6;
  transform: scale(1.05);
}

.oracura-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  /* background: linear-gradient(to top, rgba(91, 33, 182, 0.5), transparent); */
  z-index: 2;
}

@keyframes oracura-bounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes oracura-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@media (min-width: 768px) {
  .oracura-hero {
    background-size: 600px auto, cover;
  }

  .oracura-heading {
    font-size: 3rem;
  }

  .oracura-sub {
    font-size: 1.5rem;
  }

  .oracura-suboral {
    color: #ddd6fe;
    font-size: 1.25rem;
    margin-top: 40%;
    font-weight: 300;
  }

  .oracura-tagline {
    font-size: 2rem;
  }
}

/* sleep  */

.sleep-wrapper {
  position: relative;
  /* min-height: 100vh; */
  background: linear-gradient(to bottom right, #f1f5f9, #e0f2fe, #e0e7ff);
  overflow: hidden;
}

.sleep-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.sleep-images {
  position: relative;
  width: fit-content;
  margin: auto;
  margin-bottom: 2rem;
}

.sleep-image {
  /* border-radius: 1rem; */
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: absolute;
  transition: transform 0.3s ease;
}

.sleep-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sleep-main-img {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  object-fit: cover;
  /* border-radius:0px; */
}

.sleep-sub-img {
  width: 120px;
  z-index: 2;
  /* border-radius:0px; */
}

.sleep-sub-img-top-right {
  top: -40px;
  left: -50px;
}

.sleep-sub-img-bottom-left {
  bottom: -40px;
  left: 120px;
}

.sleep-image:hover {
  transform: scale(1.03);
}

.sleep-img-sm-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.sleep-img-sm {
  flex: 1;
}

.sleep-content {
  text-align: left;
}

.sleep-subtitle {
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.sleep-heading {
  /* font-size: 2.5rem; */
  font-size: 2.8rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  margin: 1rem 0;
}

.sleep-heading span {
  /* color: #0f172a; */
  color: #065f46;
}

.sleep-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sleep-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sleep-btn {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sleep-primary {
  background: linear-gradient(to right, #ec4899, #f43f5e);
  color: white;
  border: none;
}

.sleep-primary:hover {
  background: linear-gradient(to right, #db2777, #e11d48);
  transform: scale(1.05);
}

.sleep-secondary {
  border: 2px solid #22c55e;
  color: #16a34a;
  background: transparent;
}

.sleep-secondary:hover {
  background: #22c55e;
  color: white;
  transform: scale(1.05);
}

@media (min-width: 760px) {
  .sleep-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5rem 1.5rem;
  }

  .sleep-main-img {
    height: 300px;
    width: 300px;
  }

  .sleep-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
  }

  .sleep-sub-img-top-right {
    top: -40px;
    left: 60px;
  }

  .sleep-sub-img-bottom-left {
    bottom: -40px;
    left: 370px;
  }

  .sleep-sub-img {
    width: 160px;
  }
}

/* Floating Elements */
.sleep-floating div {
  position: absolute;
  pointer-events: none;
}

.sleep-cloud,
.sleep-star,
.sleep-moon {
  font-size: 1.5rem;
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

.sleep-bubble {
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.4);
  animation: bounce 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Healthy snacks  */

.food-hero-section {
  position: relative;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f0fff4, #fff9db, #ffffff);
  overflow: hidden;
}

.food-floating-object {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  opacity: 0.7;
}

.food-bubble1 {
  width: 40px;
  height: 40px;
  background: #d1fae5;
  top: 10%;
  left: 20%;
}

.food-bubble2 {
  width: 60px;
  height: 60px;
  background: #fef9c3;
  top: 25%;
  right: 15%;
}

.food-leaf1,
.food-star1 {
  font-size: 24px;
  background: #fff;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-leaf1 {
  top: 15%;
  left: 5%;
}

.food-star1 {
  bottom: 10%;
  right: 10%;
}

.food-container {
  max-width: 1200px;
  margin: 0 auto;
}

.food-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }

  .food-title {
    font-size: 2.5rem;
  }
}

.food-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #2d3748;
  font-style: italic;
}

.food-highlight-green {
  background: linear-gradient(to right, #16a34a, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.food-highlight-orange {
  background: linear-gradient(to right, #f97316, #facc15);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.food-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 1rem 0 2rem;
}

.food-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.food-btn-primary {
  background: linear-gradient(to right, #16a34a, #22c55e);
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
}

.food-btn-secondary {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  cursor: pointer;
}

.food-features {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: start;
}

.food-feature {
  text-align: center;
}

.food-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.food-feature-green {
  background: #bbf7d0;
}

.food-feature-orange {
  background: #fed7aa;
}

.food-feature-yellow {
  background: #fef08a;
}

.food-right {
  display: flex;
  justify-content: center;
}

.food-product-image {
  max-width: 300px;
  width: 100%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Visison  */

/* CSS */
.eye-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, rgb(203, 220, 237), #ffffff);
  padding: 4rem 0rem;
  overflow: hidden;
}

.eye-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
  z-index: 0;
}

.eye-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(1.1);
}

.eye-container {
  width: full;
  margin: 0 auto;
  padding: 1rem 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.eye-left,
.eye-right {
  flex: 1 1 45%;
}

.eye-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eye-image {
  width: 100%;
  /* margin-left: 20%; */
  max-width: 450px;
  animation: eye-fadeInLeft 1.5s ease forwards;
  opacity: 0;
}

.eye-subtitle {
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  animation: eye-fadeIn 1s ease forwards;
  opacity: 0;
}

.eye-title {
  font-size: 2.5rem;
  /* font-weight: 700; */
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
  animation: eye-fadeInUp 1.2s ease forwards;
  opacity: 0;
}

.eye-title span {
  color: #10b981;
}

.eye-care {
  color: #1e293b;
}
.eye-buttons-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap:20px;
}

.eye-cta {
  background: #1e3a8a;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: eye-fadeInUp 1.4s ease forwards;
  opacity: 0;
}

.eye-cta:hover {
  background: #2563eb;
}

/* Floating Decorations */
.eye-floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.2);
  z-index: 1;
  animation: eye-float 6s ease-in-out infinite;
}

.eye-circle1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.eye-circle2 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 30%;
  animation-delay: 2s;
}

.eye-floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: eye-float 8s infinite ease-in-out;
  z-index: 1;
}

.eye-icon-glasses {
  bottom: 15%;
  left: 25%;
  animation-delay: 1.2s;
}

.eye-icon-sparkle {
  top: 40%;
  right: 20%;
  animation-delay: 2s;
}

.eye-icon-drop {
  top: 60%;
  left: 10%;
  animation-delay: 2.5s;
}

.eye-icon-eye {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

/* Animations */
@keyframes eye-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes eye-fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes eye-fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes eye-fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .eye-container {
    flex-direction: column;
    text-align: center;
    gap: 5rem;
    padding: 1rem 0rem;
  }

  .eye-left,
  .eye-right {
    flex: 1 1 100%;
  }

  .eye-title {
    font-size: 2rem;
  }

  .eye-image {
    /* max-width: 80%; */
    margin: 0 auto;
    margin-top: 5%;
    margin-left: 20%;
  }
}

/* Tattva  */

.tattva-container {
  position: relative;
  /* min-height: 100vh; */
  /* padding: 2rem; */
  background: linear-gradient(to bottom right, #ffe4e6, #fff7ed, #fce7f3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.tattva-background {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='1' result='noise'/%3E%3CfeColorMatrix in='noise' type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 .5 0 .5 0 .5'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.tattva-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 4rem);
  z-index: 2;
}

.tattva-left,
.tattva-right {
  flex: 1;
  padding: 1rem;
}

.tattva-image-container {
  /* background: white; */
  padding: 1.5rem;
  /* border-radius: 1.5rem; */
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.tattva-image-container:hover {
  transform: scale(1.05);
}

.tattva-image-box {
  width: 100%;
  /* max-width: 320px; */
  /* height: 420px; */
  border-radius: 1rem;
  overflow: hidden;
  /* background: linear-gradient(to bottom right, #fbcfe8, #ffe4e6, #fed7aa); */
  position: relative;
}

.tattva-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tattva-content {
  text-align: center;
}

.tattva-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  color: #be123c;
  letter-spacing: 2px;
}

.tattva-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #1f2937;
  font-style: italic;
  margin: 1rem 0;
}

.tattva-title span {
  color: #e11d48;
}

.tattva-desc {
  color: #475569;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.tattva-btn {
  background: #e11d48;
  color: white;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;

  cursor: pointer;
  transition: all 0.3s ease;
}

.tattva-btn:hover {
  background: #be123c;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tattva-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tattva-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
}

.tattva-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.tattva-decor1 {
  top: 5%;
  right: 10%;
  width: 40px;
}

/* 
 .tattva-decor2 {
  /* top: 25%;
  left: 10%;
  width:10px; */
/* animation-delay: 1s; */
.tattva-decor2 img {
  width: 100px;
  top: 30%;
  position: absolute;
  right: 10%;
}

.tattva-decor3 {
  bottom: 20%;
  left: 5%;
  width: 30px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (min-width: 1024px) {
  .tattva-decor2 img {
    width: 100px;
    top: 20%;
    position: absolute;
    right: 20%;
  }

  .tattva-flex {
    flex-direction: row;
  }

  .tattva-content {
    text-align: left;
  }
}

/* manaha clinci  */

.manaha-container {
  position: relative;
  /* min-height: 100vh; */
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.manaha-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(43, 51, 69, 0.7), rgba(15, 23, 42, 0.6)),
    url("./assets/manahaClinic.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.manaha-float {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.manaha-f1 {
  top: 20%;
  left: 10%;
  font-size: 24px;
  color: #34d399;
  opacity: 0.3;
  animation-delay: 0s;
}

.manaha-f2 {
  top: 30%;
  right: 20%;
  font-size: 28px;
  color: #60a5fa;
  opacity: 0.25;
  animation-delay: 1s;
}

.manaha-f3 {
  bottom: 20%;
  left: 20%;
  font-size: 32px;
  color: #a78bfa;
  opacity: 0.2;
  animation-delay: 2s;
}

.manaha-f4 {
  top: 33%;
  right: 10%;
  font-size: 26px;
  color: #2dd4bf;
  opacity: 0.25;
  animation-delay: 0.5s;
}

.manaha-orb1,
.manaha-orb2,
.manaha-orb3 {
  position: absolute;
  border-radius: 50%;
  animation: pulse 4s infinite;
  pointer-events: none;
}

.manaha-orb1 {
  top: 25%;
  left: 15%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #34d399, #2dd4bf);
  opacity: 0.1;
}

.manaha-orb2 {
  bottom: 30%;
  right: 30%;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, #60a5fa, #a78bfa);
  opacity: 0.15;
}

.manaha-orb3 {
  top: 65%;
  left: 10%;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, #f472b6, #fb7185);
  opacity: 0.1;
}

.manaha-content {
  max-width: 800px;
  margin: 0 auto;
}

.manaha-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  color: white;
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
}

.manaha-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}

.manaha-gradient-text {
  background: linear-gradient(to right, #34d399, #2dd4bf, #60a5fa);

  background-clip: text;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manaha-subtext {
  font-size: 1rem;
  opacity: 0.8;
  color: white;
  margin-bottom: 2rem;
  max-width: 600px;
}

.manaha-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.manaha-buttons button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.manaha-book {
  background: linear-gradient(to right, #34d399, #2dd4bf);
  color: white;
}

.manaha-book:hover {
  background: linear-gradient(to right, #059669, #0d9488);
  transform: scale(1.05);
}

.manaha-support {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.manaha-support:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.manaha-stats {
  display: flex;
  color: white;
  flex-direction: column;
  gap: 1.5rem;
}

.manaha-stat {
  font-size: 1rem;
  font-weight: 700;
}

.manaha-stat-label {
  opacity: 0.7;
}

.manaha-scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.manaha-scroll-box {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.manaha-scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  margin-top: 6px;
  animation: pulse 1.5s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (min-width: 640px) {
  .manaha-buttons {
    flex-direction: row;
  }

  .manaha-heading {
    font-size: 3rem;
  }

  .manaha-stats {
    flex-direction: row;
    justify-content: space-between;
  }

  .manaha-stat {
    font-size: 2rem;
    font-weight: 700;
  }

  .manaha-subtext {
    font-size: 1.2rem;
  }
}

/*================ General Layout ================*/
/* .yoga-tabbed-section {
  padding: 2rem 1rem;
} */

/*================ Shared Section Containers ================*/
.yoga-yoga-container,
.skin-yoga-container,
.nutrition-yoga-container,
.sleep-yoga-container,
.naturopathy-yoga-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  /* margin-bottom: 3rem; */
  animation: fadeUp 1s ease-in-out;
  /* border-radius: 1rem; */
  padding: 2rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* nourishGenie  */
.nourish-container {
  position: relative;
  /* min-height: 100vh; */
  background: linear-gradient(to bottom right, #f0fdf4, #ecfdf5);
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nourish-bg-shapes .circle,
.nourish-bg-shapes .star,
.nourish-bg-shapes .leaf {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
}

.nourish-bg-shapes .circle {
  width: 50px;
  height: 50px;
  background-color: #86efac;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.nourish-bg-shapes .star::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgb(243, 205, 53);
  font-size: 30px;
  animation: twinkle 3s ease-in-out infinite;
}

.nourish-bg-shapes .leaf::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgb(10, 128, 53);
  font-size: 50px;
  animation: sway 4s ease-in-out infinite;
}

.nourish-bg-bowl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 9999px;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.nourish-bg-bowl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(1.1);
}

.nourish-wrapper {
  display: flex;
  flex-direction: column;
  /* Content above image */
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  z-index: 1;
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

.nourish-image {
  /* flex: 1; */
  width: 260px;
  height: 260px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nourish-image img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nourish-content {
  /* flex: 1; */
  /* text-align: center; */
  animation: fadeInRight 1s ease-in-out forwards;
}

.nourish-content h1 {
  /* font-size: 2.5rem; */
  color: #065f46;
  font-size: 2rem;
  /* color: #0f172a; */
  /* font-weight: 800;
  line-height: 1.2;   */

  font-weight: 500;
  font-style: italic;
}

.nourish-content p {
  font-size: 1.1rem;
  color: #374151;
  margin: 1rem 0 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.nourish-buttons button {
  background-color: #10b981;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  margin: 0.5rem;
}

.nourish-buttons button:hover {
  background-color: #059669;
}

@media (min-width: 768px) {
  .nourish-wrapper {
    flex-direction: row;
    /* Row layout */
    justify-content: space-around;
    align-items: stretch;
    /* align-items: center; */
  }

  .nourish-heading {
    font-size: 2.8rem;
  }

  .nourish-content h1 {
    font-size: 2.8rem;
  }

  .nourish-image {
    justify-content: flex-end;
    /* margin-left: 5%; */
  }

  .nourish-image img {
    width: 400px;
    height: 400px;
  }

  .nourish-content p {
    margin-inline: 0;
  }
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes sway {

  0%,
  100% {
    transform: translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateX(10px) rotate(5deg);
  }

  75% {
    transform: translateX(-10px) rotate(-5deg);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/*================ Section Backgrounds ================*/
.yoga-yoga-container {
  background: linear-gradient(135deg, #ebf4ff, #dbeafe);
}

.skin-yoga-container {
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  animation-delay: 0.1s;
}

.nutrition-yoga-container {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  animation-delay: 0.2s;
}

.sleep-yoga-container {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  animation-delay: 0.3s;
}

.naturopathy-yoga-container {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  animation-delay: 0.4s;
}

/*================ Text Sections ================*/
.yoga-tab-text,
.skin-tab-text,
.nutrition-tab-text,
.sleep-tab-text,
.naturopathy-tab-text {
  max-width: 600px;
  text-align: center;
}

.yoga-tab-text h2,
.skin-tab-text h2,
.nutrition-tab-text h2,
.sleep-tab-text h2,
.naturopathy-tab-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.yoga-tab-text p,
.skin-tab-text p,
.nutrition-tab-text p,
.sleep-tab-text p,
.naturopathy-tab-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #374151;
}

/*================ Section Title Highlights ================*/
.skin-tab-text h2 span {
  color: #e11d48;
}

.nutrition-tab-text h2 span {
  color: #16a34a;
}

.naturopathy-tab-text h2 span {
  color: #0d9488;
}

/*================ Image Containers ================*/
.yoga-yoga-image,
.skin-yoga-image,
.nutrition-nutrition-image,
.sleep-yoga-image,
.naturopathy-yoga-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*================ Image Styles ================*/
.yoga-yoga-image img,
.skin-yoga-image img,
.nutrition-nutrition-image img,
.sleep-yoga-image img,
.naturopathy-yoga-image img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  /* border-radius: 1rem; */
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); */
}

/*================ Stats/Ranks ================*/
.yoga-rank {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.yoga-sub-rank h2 {
  font-size: 1.5rem;
  color: #0f172a;
}

.yoga-sub-rank p {
  font-size: 0.95rem;
  color: #6b7280;
}

/*================ Responsive Layouts ================*/
@media (min-width: 768px) {

  .yoga-yoga-container,
  .skin-yoga-container,
  .nutrition-yoga-container,
  .sleep-yoga-container,
  .naturopathy-yoga-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Alternate layout for better visual variety */
  .skin-yoga-container,
  .sleep-yoga-container {
    flex-direction: row-reverse;
  }

  .yoga-tab-text,
  .skin-tab-text,
  .nutrition-tab-text,
  .sleep-tab-text,
  .naturopathy-tab-text {
    text-align: left;
    flex: 1;
  }
}

/*================ Animation ================*/
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*================ Button Style ================*/
.btn-yoga {
  display: inline-block;
  background-color: #0061fe;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-yoga:hover {
  background-color: #004bcc;
}

/* trust-section   */

.trust-section {
  padding: 10px 10px;
  text-align: center;
  background-color: #f9fafb;
  font-family: "Poppins", sans-serif;
}

/* Headings */
.trust-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.trust-subheading {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Individual card */
.trust-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* When in view, apply animation */
.trust-card.animate {
  animation: trust-fadeUp 0.6s ease forwards;
}

/* Card hover effect */
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Icon circle */
.trust-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(to right, #93c5fd, #d8b4fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

/* Icon image inside the circle */
.trust-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(3000%) hue-rotate(210deg) brightness(92%) contrast(91%);
}

/* Card content */
.trust-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.trust-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 4px;
}

/* Animation keyframes */
@keyframes trust-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .trust-heading {
    font-size: 1.75rem;
  }

  .trust-subheading {
    font-size: 0.95rem;
  }

  .trust-title {
    font-size: 1.3rem;
  }

  .trust-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 40px 10px;
  }

  .trust-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-icon {
    width: 56px;
    height: 56px;
  }

  .trust-icon img {
    width: 24px;
    height: 24px;
  }
}

.benefit-section {
  /* padding: 60px; */
  /* background: linear-gradient(to right, #f0f4f8, #ffffff); */
  background: linear-gradient(to bottom right, #121f41, #1e3988, #442688);
  text-align: center;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .benefit-section {
    display: none;
  }
}

.benefit-title {
  font-size: 1.8rem;
  text-align: center;
  color: white;
  font-weight: 600;
  margin-bottom: 40px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* .brand-image-in-card-benefits {
  height: 50px;
  width: 150px;
} */

.dental-products-image {
  height: 50px;
  width: 50px;
}

.benefit-card {
  background: #ffffff;
  position: relative;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 10px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.partner-logo {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.habuild-logo {
  width: 80px;
}

.tattva-logo {
  height: 40px;
  width: 90px;
}

.benefit-card h3 {
  padding: 0%;
  margin: 0%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  font-size: 2rem;
  color: #ff7f4f;
  /* margin-bottom: 20px; */
}

.benefit-icon img {
  width: 110px;
  height: 90px;
  object-fit: contain;
}

.benefit-icons img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.benefit-icons-sleep img {
  width: 200px;
  height: 80px;
  object-fit: contain;
}

.benefit-icons-dental-products {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-icons-dental-products .oracura-logo {
  width: 90px;
  height: 40px;
  object-fit: contain;
}

.benefit-icons-dental-products .perfora-logo {
  width: 90px;
  height: 40px;
  object-fit: contain;
}

.benefit-icons-dental-products .purexa-logo {
  width: 90px;
  height: 40px;
  object-fit: contain;
}

.benefit-card-title {
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 600;
  /* margin-bottom: 15px; */
}

.benefit-list {
  list-style: none;
  padding: 0;
  color: #4b5563;
  font-size: 0.8rem;
  line-height: 1.6;
}

.learn-more-btn {
  /* margin-top: 15px; */
  padding: 8px 10px;
  align-self: flex-end;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.learn-more-btn-1 {
  background-color: #57c785;
}

.learn-more-btn-2 {
  background-color: #ffc300;
}

.learn-more-btn-3 {
  background-color: #ffd5cc;
}

.learn-more-btn-4 {
  background-color: #0ddbc4;
}

.learn-more-btn-5 {
  background-color: #8cb8ea;
}

.orogleeCareCard {
  height: 300px;
  width: 520px;
}

/* .learn-more-btn:hover {
  background-color: #16a34a;
} */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.popup-content {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  text-align: left;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
  margin-top: 0;
  color: #1f2937;
}

.popup-content p {
  color: #4b5563;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #9ca3af;
}

.close-btn:hover {
  color: #ef4444;
}

.basic-button {
  background-color: rgb(0, 0, 203);
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  margin: 0.5rem;
}

.gold-button {
  background-color: rgb(255, 240, 34);
  /* color: white; */
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  margin: 0.5rem;
}

@media (max-width: 768px) {
  .benefit-title {
    font-size: 1.2rem;
  }

  /* .basic-button {
    font-size: 10px;
  }
  .gold-button {
    font-size: 10px;
    border-radius: 10px;
    padding: 2px 3px;
  } */

  .benefit-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* benefit card section */

.benefitcard-section {
  padding: 5rem 1rem;
  background-color: white;
}

.benefitcard-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}

.benefitcard-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefitcard-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1a202c;
  margin-bottom: 1rem;
}

.benefitcard-header p {
  color: #4a5568;
  font-size: 1.25rem;
  max-width: 768px;
  margin: auto;
}

.benefitcard-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefitcard-card {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.benefitcard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefitcard-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefitcard-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1a202c;
}

.benefitcard-desc {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefitcard-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.benefitcard-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.benefitcard-list li svg {
  margin-right: 0.5rem;
  color: #38a169;
}

.benefitcard-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

/* Gradient Buttons */
.benefitcard-blue {
  background: #ebf8ff;
  color: #3182ce;
}

.benefitcard-blue:hover {
  background: #bee3f8;
}

.benefitcard-orange {
  background: #fffaf0;
  color: #dd6b20;
}

.benefitcard-orange:hover {
  background: #feebc8;
}

.benefitcard-green {
  background: #f0fff4;
  color: #38a169;
}

.benefitcard-green:hover {
  background: #c6f6d5;
}

.benefitcard-purple {
  background: #f5f3ff;
  color: #805ad5;
}

.benefitcard-purple:hover {
  background: #e9d8fd;
}

.benefitcard-pink {
  background: #fff5f7;
  color: #d53f8c;
}

.benefitcard-pink:hover {
  background: #fed7e2;
}

.benefitcard-cyan {
  background: #e0f7fa;
  color: #00bcd4;
}

.benefitcard-cyan:hover {
  background: #b2ebf2;
}

:root {
  --transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .benefitcard-container {
    /* max-width: 1280px; */
    margin: auto;
    padding: 0 0rem;
  }
}

/* why choose us  */

.whychoose-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #f9fafb, #e0f2fe);
  font-family: "Poppins", sans-serif;
}

.whychoose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.whychoose-header {
  text-align: center;
  margin-bottom: 60px;
}

.whychoose-header h2 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #1f2937;
}

.whychoose-header p {
  font-size: 18px;
  color: #6b7280;
}

.whychoose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.whychoose-card {
  /* background: white; */
  padding: 30px;
  /* border-radius: 20px; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  text-align: center;
  transition: transform 0.3s ease;
}

.whychoose-card:hover {
  transform: translateY(-10px);
}

.whychoose-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.whychoose-icon i {
  color: white;
  font-size: 28px;
}

.whychoose-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 10px;
}

.whychoose-card p {
  font-size: 17px;
  color: #6b7280;
}

.whychoose-calculator-new {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  gap: 2rem;
  align-items: center;
}

.whychoose-calculator-content {
  width: 100%;
}

.whychoose-price-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.price-box {
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 9999px;
  padding: 1rem 2rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #065f46;
  display: block;
}

.price-note {
  font-size: 1rem;
  color: #6b7280;
}

.savings-text h3 {
  font-size: 1.5rem;
  color: #111827;
  font-weight: 600;
}

.savings-text p {
  font-size: 1rem;
  color: #6b7280;
}

.calculator-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.calc-btn {
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.calc-btn.primary {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: white;
  border: none;
}

.calc-btn.primary:hover {
  background: linear-gradient(to right, #2563eb, #0891b2);
}

.calc-btn.secondary {
  background: transparent;
  color: #065f46;
  border: 2px solid #10b981;
}

.calc-btn.secondary:hover {
  background: #d1fae5;
}

.whychoose-calculator-image img {
  max-width: 100%;
  border-radius: 1rem;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
}

/* Responsive for tablets and up */
@media (min-width: 768px) {
  .whychoose-calculator-new {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
  }

  .whychoose-header h2 {
    font-size: 35px;
  }

  .whychoose-calculator-content {
    flex: 1;
  }

  .whychoose-calculator-image {
    flex: 1;
    padding-left: 2rem;
  }

  .whychoose-price-highlight {
    align-items: flex-start;
    text-align: left;
  }

  .calculator-buttons {
    justify-content: flex-start;
  }
}

.whychoose-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #374151;
}

.benefit-image {
  width: 70px;
  height: 70px;
}

.whychoose-savings {
  background: #d1fae5;
  color: #065f46;
  padding: 5px 15px;
  border-radius: 9999px;
  margin-top: 10px;
  font-size: 14px;
  display: inline-block;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.new-compare-card {
  max-width: 1000px;
  margin: 2rem auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.new-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.new-desc-col {
  flex: 0 0 60%;
  padding: 1rem;
  background: #f9fafb;
  font-weight: 500;
}

.new-scrollable-cols {
  display: flex;
  width: 100%;
}

.new-head-blue {
  background: #0000CB;
  color: white;
  padding-top: 20px;
}

.new-head-gold {
  background: #FFF022;
  color:black;
  text-align: center;
}

.new-col {
  flex: 1 1 0;
  width: 50%;
  padding: 1rem;
  text-align: center;
  border-left: 1px solid #eee;
  box-sizing: border-box;
}

.new-thead,
.new-tfoot {
  font-weight: 600;
  background: #f4f6ff;
}

.new-tick::before {
  content: "✓";
  background-color: var(--blue);
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}

.new-dash::before {
  content: "–";
  background-color: #e5e7eb;
  color: #9ca3af;
  border-radius: 50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}

.new-sub-heading {
  font-weight: bold;
  font-size: 1rem;
}

.new-section-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.image {
  width: 90px;
  height: auto;
  cursor: pointer;
}

.new-oroglee-head {
  background: #feface;
}

.new-habuild-head {
  background: #d6f1ed;
}

.new-nutrition-head {
  background: #ffe9c4;
}

.new-oracura-head {
  background: #d9ccff;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.new-evolve-head {
  background: #feface;
}

.new-sleep-head {
  background: #fddfc6;
}

.new-mental-head {
  background: #bde0f5;
}

.new-tattva-head {
  background: #feface;
}

.new-maxivision-head {
  background: #f7cfa7;
  display: flex;
  flex-direction: column;
  justify-content: items-start;
  align-items: start;
}

.new-price-basic {
  color: var(--blue);
  cursor: pointer;
}

.new-price-gold {
  color: var(--gold);
  cursor: pointer;
}

.new-desc-col {
  font-weight: normal;
  font-size: 14px;
}

.new-plan {
  font-weight: bold;
  text-align: start;
  font-size: 1rem;
  padding-top: 7%;
}

.boldfont {
  font-weight: bold;
  font-size: 1rem;
}

.oroglee-font {
  font-size: 1rem;
  font-weight: bold;
}

.italic-font {
  font-family: Arial, Helvetica, sans-serif;
}

.new-oroglee {
  background: linear-gradient(90deg,
      rgba(255, 171, 140, 1) 0%,
      rgba(255, 206, 188, 1) 100%);
}

.basic {
  text-align: start;
  /* padding: 0.8rem; */
  padding-left: 10px;
  /* padding-top:10%; */
}

.new-habuild {
  background: #d6f1ed;
}

.new-nutrition {
  background: #ffe9c4;
}

.new-oracura {
  background: #e0d4ff;
}

.new-oroglee-col {
  background: #fffcec;
}

.new-habuild-col {
  background: #e1faf4;
}

.new-nutrition-col {
  background: #fff2dc;
}

.new-oracura-col {
  background: #e6def8;
}

.new-evolve-col {
  background: #fffcec;
}

.new-sleep-col {
  background: #fff7e9;
}

.new-manaha-col {
  background: #d6efff;
}

.new-maxivision-col {
  background: #ffe9d4;
}

.new-mental-col {
  background: #fff0f3;
}

.new-tattva-col {
  background: #fffcec;
}

@media (max-width: 769px) {
  .price-footer {
    display: none;
  }
}

@media (min-width:769px) {
  .card-prices-wrapper{
    display: none;
  }
  
}

@media (max-width: 768px) {
  .card-prices-wrapper {
    padding: 10px;
    background: #fafafa;
    font-family: "Poppins", sans-serif;
  }

  .card-prices-row {
    /* margin-bottom: 16px; */
    display: flex;
    justify-content: space-between;
  }

  .card-prices-heading {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    padding-top: 10px;
    color: #333;
  }

  .card-prices-row-buttons {
    display: flex;
    justify-content: flex-end;
  }

  .card-prices-prices,
  .card-prices-buttons,
  .card-prices-details {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .card-prices-box {
    /* flex: 1; */
    padding: 12px;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
  }

  .card-prices-basic {
    /* background-color: #e0f7fa; */
    /* color: #00695c; */
    color: var(--blue);
  }

  .card-prices-gold {
    /* background-color: #fff8e1;
    color: #ef6c00; */
    color: var(--gold);
  }

  .card-prices-buttons {
    display: flex;
    justify-content: flex-end;
  }

  .card-prices-button {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .card-prices-basic-btn {
    /* background-color: #00796b;
    color: white; */
    background-color: rgb(0, 0, 203);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    margin: 0.5rem;
  }

  .card-prices-gold-btn {
    /* background-color: #ef6c00;
    color: white; */
    background-color: rgb(255, 240, 34);
    /* color: white; */
    padding: 0.5rem 1rem;
    border: none;
    font-size: 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    margin: 0.5rem;
  }

  .card-prices-link {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    /* background-color: #f0f0f0; */
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .new-row {
    display: table-row;
  }

  .new-desc-col,
  .new-col {
    display: table-cell;
    padding: 1rem;
  }

  .new-compare-card {
    display: table;
    width: 100%;
  }

  .new-scrollable-cols {
    display: contents;
  }

  .new-col {
    border-left: none;
  }

  .new-section-heading {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */

    gap: 10px;
  }

  .new-oracura-head {
    background: #d9ccff;
    display: flex;
    flex-direction: row;
  }

  .new-maxivision-head {
    display: flex;
    flex-direction: row;
  }

  .new-scrollable-cols {
    display: flex;
    width: 100%;
  }

  .basic {
    text-align: center;
  }
}

.image-sleeptherapotics {
  /* width:180px; */
  height: 60px;
  object-fit: contain;
}


/* testimonal and cta  */

.testimonial-section {
  background: #fff;
  padding: 80px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonial-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 30px;
  border-radius: 20px;
  color: #333;
}

.testimonial-card.blue {
  background: linear-gradient(135deg, #ebf8ff, #ccfbf1);
}

.testimonial-card.green {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.testimonial-card.purple {
  background: linear-gradient(135deg, #f3e8ff, #fdf2f8);
}

.testimonial-stars span {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 10px;
  display: inline-block;
}

.testimonial-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4f46e5;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-weight: bold;
}

.testimonial-role {
  font-size: 14px;
  color: #666;
}

.cta-section {
  /* background: linear-gradient(to right, #2563eb, #06b6d4); */
  background: #130e23;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.cta-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0f2fe;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

@media (min-width: 600px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-primary {
  background: white;
  color: #2563eb;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
}

.cta-secondary:hover {
  background: white;
  color: #2563eb;
}

.cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #dbeafe;
  font-size: 14px;
}

@media (min-width: 600px) {
  .cta-highlights {
    flex-direction: row;
    justify-content: center;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.popup-content img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* //solution container */

.solution-container {
  padding: 60px 20px;
  max-width: 1200px;
  /* height: 100vh; */
  margin: auto;
  /* text-align: center; */
}

/* .solution-badge {
  display: inline-block;
  background: #7e22ce;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 12px;
} */

.solution-heading {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.solution-subtitle {
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.solution-card {
  border-radius: 16px;
  padding: 24px;
  background: #f9fafb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

}

.solution-icon-box img {
  width: 24px;
  height: 24px;
}

.solution-role {
  font-weight: bold;
  margin-bottom: 4px;
  color: #111827;
}

.solution-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.solution-description {
  color: #6b7280;
  font-size: 14px;
}

.solution-blue {
  background-color: #e0f2fe;
}

.solution-green {
  background-color: #dcfce7;
}

.solution-purple {
  background-color: #f3e8ff;
}

.solution-pink {
  background-color: #fce7f3;
}

@media (max-width: 600px) {
  .solution-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .solution-heading {
    font-size: 24px;
  }
}

/* // cover section  */

.cover-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #121f41, #1e3988, #442688);
}

/* Container */
.cover-container {
  width: 100%;
  /* max-width: 1100px; */
  text-align: center;
}

/* Icon */
.cover-icon-wrapper {
  margin-bottom: 20px;
}

.cover-icon-heart {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffc107, #ff5722);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Title & Description */
.cover-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f0f0f0;
}

.cover-description {
  font-size: 16px;
  max-width: 720px;
  margin: auto;
  /* text-align:center; */
  color: #f0f0f0;
  padding: 0 16px;
}

/* Cards Layout */
.cover-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 16px;
  /* background:black; */
}

.cover-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  /* background:white; */
  border-radius: 16px;
  min-width: 200px;
  max-width: 250px;
  flex: 1 1 200px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.cover-card-number {
  font-size: 28px;
  color: #ffc107;
  margin-bottom: 8px;
}

.cover-card-text {
  font-size: 14px;
  color: #e0e0e0;
}

/* Animation */
.cover-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .cover-title {
    font-size: 22px;
  }

  .cover-description {
    font-size: 15px;
  }

  .cover-cards {
    flex-direction: column;
    align-items: center;
  }

  .cover-card {
    /* width: 100%; */
    max-width: 300px;
    flex: 0 0 0px;
  }
}

/* //best access  */

.best-access {
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
  /* padding:40px 20px; */
}

.best-title {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: #0f172a;
}

.best-subtitle {
  font-size: 1rem;
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
}

.best-card-container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.best-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.best-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.best-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.best-icon img {
  width: 28px;
  height: 28px;
}

.best-card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1e293b;
  margin: 10px 0 6px;
  text-align: center;
}

.best-card-desc {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 16px;
  text-align: center;
}

.best-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #16a34a;
}

.best-stars {
  color: #facc15;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .best-card-container {
    flex-direction: column;
    align-items: center;
    padding: 0px 0px;
  }

  .best-card {
    width: 80%;
  }
}

/* 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;
  }
}

.perfora-container {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom right, #f0f9ff, #e0f2fe, #ccfbf1);
  position: relative;
  overflow-x: hidden;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem 1rem;
  z-index: 1;
}

.perfora-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .perfora-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.oracura-logo {
  height: 30px;
  /* position: absolute; */
  /* top: 5px;
  left: 5px; */
  width: 100px;
}

.perfora-logo {
  height: 30px;
  /* position: absolute; */
  /* top: 38px;
  left: 5px; */
  width: 100px;
}

.perfora-badge {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
}

.perfora-title {
  padding: 1rem;
  font-size: 2.8rem;
  font-weight: 500;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.perfora-title-highlight {
  background: linear-gradient(to right, #0284c7, #06b6d4);
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  margin-top: 0.5rem;
}

.perfora-description {
  font-size: 1rem;
  padding: 1rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.perfora-buttons {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .perfora-buttons {
    flex-direction: row;
  }
}

.perfora-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.perfora-btn-primary {
  background: linear-gradient(to right, #0284c7, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.perfora-btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.perfora-btn-secondary {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #334155;
  border: none;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.perfora-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.05);
}

.perfora-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .perfora-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.perfora-stat-card {
  text-align: center;
}

.perfora-stat-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfora-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.perfora-stat-label {
  font-size: 0.875rem;
  color: #475569;
}

.perfora-product-wrapper {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.perfora-product-img {
  width: 100%;
  /* border-radius: 1rem; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.perfora-label {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.perfora-label1 {
  top: -1rem;
  left: -1rem;
  background: linear-gradient(to right, #0284c7, #06b6d4);
}

.perfora-label2 {
  top: -1rem;
  right: 2rem;
  background: linear-gradient(to right, #3b82f6, #0284c7);
}

.perfora-label3 {
  bottom: 25%;
  left: -1.5rem;
  background: linear-gradient(to right, #06b6d4, #14b8a6);
}

.perfora-label4 {
  bottom: -1rem;
  right: 1rem;
  background: linear-gradient(to right, #14b8a6, #10b981);
}

.newHero-section {
  /* min-height: 100vh; */
  padding: 3% 1%;
  background: linear-gradient(135deg, #dde7f1, #d3e0f0, #d5cff3);
  position: relative;
  /* overflow-x: hidden; */
}

.newHero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  /* min-height: 100vh; */
}

.newHero-card {
  width: 250px;
  height: 170px;
  background: linear-gradient(to bottom right, #f59e0b, #eab308, #d97706);
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: newHero-gentleFloat 8s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .newHero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .family-para {
    text-align: right;
    /* padding:20px; */
  }

  .newHero-card {
    width: 320px;
    height: 190px;

    background: linear-gradient(to bottom right, #f59e0b, #eab308, #d97706);
    border-radius: 1.5rem;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: newHero-gentleFloat 8s ease-in-out infinite;
  }

  .newHero-section {
    padding: 2% 1%;
  }
}

.newHero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  /* text-align: center; */
}

.newHero-title-gradient {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.newHero-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 1rem;
  /* text-align: center; */
}

.newHero-description {
  /* max-width: 500px; */
  margin: 1rem auto;
  color: #4b5563;
  font-size: 1.125rem;
  /* text-align: center; */
}

.newHero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  /* justify-content: center; */
  margin-top: 2rem;
}

.newHero-btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.newHero-btn-primary {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.newHero-btn-primary:hover {
  background: linear-gradient(to right, #2563eb, #7c3aed);
  transform: scale(1.05);
}

.newHero-btn-secondary {
  background: linear-gradient(to right, #10b981, #14b8a6);
  border: none;
}

.newHero-btn-secondary:hover {
  background: linear-gradient(to right, #059669, #0d9488);
  transform: scale(1.05);
}

.newHero-user-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.newHero-avatars {
  display: flex;
  margin-right: 1rem;
}

.newHero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-left: -10px;
}

.newHero-avatars .newHero-avatar:first-child {
  margin-left: 0;
}

.newHero-users-count {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.newHero-card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .newHero-card-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(240, 246, 59, 0.2),
    rgba(246, 228, 92, 0.2)
  );
  border-radius: 1.5rem;
  filter: blur(30px);
  animation: newHero-slowRotate 20s linear infinite;
} */



.newHero-card-header,
.newHero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newHero-card-number {
  font-size: 1.25rem;
  font-family: monospace;
  margin: 1.5rem 0;
  letter-spacing: 2px;
}

.newHero-card-deco1,
.newHero-card-deco2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}

.newHero-card-deco1 {
  width: 60px;
  height: 60px;
  top: 10px;
  right: 10px;
}

.newHero-card-deco2 {
  width: 50px;
  height: 50px;
  bottom: 10px;
  left: 10px;
}

.newHero-floating-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  /* animation: newHero-float 6s ease-in-out infinite; */
}

.newHero-bg1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(to right,
      rgba(59, 130, 246, 0.1),
      rgba(139, 92, 246, 0.1));
  top: 80px;
  left: 40px;
}

.newHero-bg2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(to right,
      rgba(244, 114, 182, 0.1),
      rgba(251, 146, 60, 0.1));
  top: 160px;
  right: 80px;
  animation-delay: 1s;
}

.newHero-bg3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(to right,
      rgba(20, 184, 166, 0.1),
      rgba(5, 150, 105, 0.1));
  bottom: 80px;
  left: 30%;
  animation-delay: 2s;
}

@keyframes newHero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes newHero-gentleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(1deg);
  }

  50% {
    transform: translateY(-5px) rotate(0deg);
  }

  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes newHero-slowRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/* premiun css */

.premium-container {
  width: 100%;
  background: linear-gradient(to bottom right, #0f172a, #111827, #000);
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.premium-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.premium-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.premium-header-desc {
  color: #d1d5db;
  font-size: 1.15rem;
  max-width: 600px;
  text-align: center;
  margin: 0 auto 4rem;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding-bottom: 20px;
  }

  .premium-header-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
}

.premium-card-wrapper {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  perspective: 1000px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-popular-badge {
  position: relative;
  top: -1rem;
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  margin-bottom: -1rem;
}

.premium-card {
  width: 100%;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, #2563eb, #1d4ed8, #1e40af);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.7s, box-shadow 0.7s;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.premium-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.premium-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-chip {
  width: 3rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(to bottom right, #93c5fd, #3b82f6);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.premium-contactless {
  display: flex;
}

.premium-contactless div {
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0.6;
  margin-left: 0.25rem;
}

.premium-middle-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.premium-card-type {
  opacity: 0.8;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.premium-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.75rem;
  opacity: 0.8;
}

.premium-card-date {
  font-family: monospace;
}

.premium-card-member {
  text-align: right;
  font-weight: 600;
}

.cards-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.premium-btn {
  /* width:%; */
  border: none;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  margin-top: 1rem;
}

.premium-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* new manaha  */

.new-mahana-section {
  position: relative;
}

.new-manaha-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.new-manaha-flex-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .new-manaha-flex-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
}

.new-manaha-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .new-manaha-content h1 {
    font-size: 3rem;
  }
}

.new-manaha-content h1 span {
  background: linear-gradient(to right, #2563eb, #0d9488);
  -webkit-background-clip: text;
  color: transparent;
}

.new-manaha-content p {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 600px;
}

.new-manaha-grid {
  display: grid;
  gap: 1rem;
}

.new-manaha-highlights {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.new-manaha-highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  border: 1px solid #dbeafe;
  transition: transform 0.3s, background 0.3s;
}

.new-manaha-highlight-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.7);
}

.new-manaha-btn {

  border-radius: 9999px;
  padding: 0.8rem 1.6rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.new-manaha-btn-primary {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  border: none;
}

.new-manaha-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.new-manaha-btn-secondary {
  background: white;
  color: #111827;
  border: 2px solid #e5e7eb;
}

.new-manaha-btn-secondary:hover {
  transform: scale(1.05);
  border-color: #93c5fd;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.new-manaha-image-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.new-manaha-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.new-manaha-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.new-manaha-pulse-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: #10b981;
  border-radius: 50%;
  animation: new-manaha-pulse 1.5s infinite;
}

@keyframes new-manaha-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.new-manaha-floating-bg div {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.3;
  pointer-events: none;
}

.new-manaha-bubble1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: #bfdbfe;
  animation: new-manaha-bounce 3s infinite;
}

.new-manaha-bubble2 {
  top: 10rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  background: #99f6e4;
  animation: new-manaha-bounce 4s infinite 1s;
}

.new-manaha-bubble3 {
  bottom: 8rem;
  left: 5rem;
  width: 3rem;
  height: 3rem;
  background: #60a5fa;
  animation: new-manaha-bounce 5s infinite 2s;
}

.new-manaha-bubble4 {
  top: 15rem;
  left: 33%;
  width: 2rem;
  height: 2rem;
  background: #5eead4;
  animation: new-manaha-bounce 3.5s infinite 1.5s;
}

.new-manaha-bubble5 {
  bottom: 5rem;
  right: 25%;
  width: 3.5rem;
  height: 3.5rem;
  background: #dbeafe;
  animation: new-manaha-bounce 4.5s infinite 0.5s;
}

.new-manaha-shape1 {
  top: 8rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(to right, #2563eb, #0d9488);
  transform: rotate(45deg);
  animation: new-manaha-spin 8s linear infinite;
}

.new-manaha-shape2 {
  bottom: 10rem;
  left: 25%;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, #0d9488, #2563eb);
  transform: rotate(12deg);
  animation: new-manaha-pulse 6s infinite;
}

.new-manaha-shape3 {
  top: 24rem;
  right: 33%;
  width: 1rem;
  height: 1rem;
  background: #3b82f6;
  transform: rotate(45deg);
  animation: new-manaha-ping 4s infinite;
}

@keyframes new-manaha-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes new-manaha-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes new-manaha-ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  75% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}





/* Gift popup  */



/* body.popup-open {
  overflow: hidden;
} */

.festival-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}

.festival-popup-container {
  background-color: #fff;
  /* border-radius: 1.5rem; */
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 80vh;
  margin: auto;
  margin-top: 3%;
  /* overflow-y: auto; */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

.coupon-offer {
  width: 220px;
  height: 120px;
  object-fit: cover;
  position: absolute;
  top: 85px;
  right: 20px;
  transform: rotate(-5deg);
}


.festival-popup-container::-webkit-scrollbar {
  display: none;
}

.festival-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 9999px;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.festival-popup-close:hover {
  transform: scale(1.1);
  background-color: #fff;
}

.festival-popup-top-border,
.festival-popup-bottom-border {
  height: 12px;
  background: linear-gradient(to right,
      #f97316,
      #ef4444,
      #22c55e,
      #f97316);
}

.festival-popup-grid {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .festival-popup-grid {
    flex-direction: row;
  }
}

.festival-popup-image {
  position: relative;
  background: linear-gradient(to bottom right, #fed7aa, #fbcfe8);
  min-height: 400px;
  width: 100%;
}

.festival-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festival-popup-deco {
  position: absolute;
}

.festival-popup-deco .icon {
  color: #facc15;
}

.festival-popup-deco.heart {
  color: #f87171;
}

.festival-popup-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.festival-popup-content h1 {
  background: linear-gradient(to right, #ea580c, #ef4444, #db2777);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: bold;
}

.festival-popup-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.festival-popup-card {
  background: linear-gradient(to right, #fff7ed, #fce7f3);
  border: 1px solid #fdba74;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
}

.festival-popup-card h3 {
  color: #9a3412;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.festival-popup-card ul {
  list-style: none;
  padding-left: 0;
  color: #374151;
}

.festival-popup-card li {
  display: flex;
  align-items: start;
  margin-bottom: 0.5rem;
}

.festival-popup-card li span {
  margin-right: 0.75rem;
  width: 8px;
  height: 8px;
  background-color: #f97316;
  border-radius: 9999px;
  margin-top: 6px;
}

.festival-popup-button {
  background: linear-gradient(to right, #f97316, #ef4444, #ec4899);
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 1rem;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.festival-popup-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.festival-popup-badge {
  margin-top: 1rem;
  text-align: center;
}

.festival-popup-badge span {
  background: linear-gradient(to right, #facc15, #fb923c);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .coupon-offer {
    width: 180px;
    height: 100px;
    object-fit: cover;
    position: absolute;
    top: 230px;
    right: 15px;
    transform: rotate(0deg);
  }

  .festival-popup-overlay {
    padding: 0rem;
  }

  .festival-popup-container {
    max-height: 95vh;
    max-width: 90%;
    margin: auto;
    margin-top: 20%;
    overflow-y: auto;
  }

  .festival-popup-content {
    padding: 1.5rem;
  }

  .festival-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
  }

  .festival-popup-content h1 {
    font-size: 1.5rem;
  }

  .festival-popup-content h2 {
    font-size: 1.125rem;
  }

  .festival-popup-image {
    min-height: 220px;
  }
}