@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #4caf50;
  --secondary-color: #333;
  --background-white: #fff;
  --background-dark: #000;
  --light-green-yellow: #d3f36a;

  --text-drak: #000;
  --text-color: #555;
  --text-white: #fff;
  --text-red: red;
  --text-green: green;

  --button-color: #ffb84d;
  --button-hover: #45a049;
  --border-color: #c1c0c0;

  --light-orange: #ffb84d;
  --medium-blue: #4a77d4;
  --mint-green: #6fb98f;
  --light-gray: #b3b3cc;

  --ripple-background: rgba(212, 215, 219, 0.2);

  --heading-size: 32px;
  --text-size: 18px;
  --section-padding: 20px;
  --border-radius:20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat","Inter" , sans-serif;
}

body {
  height: 100vh;
  width: 100%;
  color: #000;
  overflow-x: hidden !important;
  max-width: 1700px;
  margin:0 auto;
}

.header {
  position: fixed;
  top: 50px; /* Adjust the top margin as needed */
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
  max-width: 1550px;
  background: var(--background-white);
  backdrop-filter: blur(1px);
  z-index: 1000;
  border-radius: 16px;
  border-bottom: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-content {
  padding: 20px !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.logo a {
  text-decoration: none; /* Removes underline from the link */
  color: inherit; /* Inherits the color from the parent element */
  font-size: 1.4rem; /* Adjust the font size as needed */
  display: flex;
  align-items: center; /* Center align the text with the image */
  color: var(--text-green);
  font-weight: bold;
}

.logo img {
  height: 40px; /* Ensures the image height remains 40px */
  margin-right: 10px; /* Adds space between the image and the text */
}

.navbar .links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
  margin-bottom: 0;
  margin-right: 20px;
}

.navbar .links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-drak);
  padding: 10px 0;
  transition: 0.2s ease;
}

.navbar .buttons a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 1rem;
  padding: 15px 0px;
  transition: 0.2s ease;
}

.navbar .links .nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .links .nav-link:hover {
  color: #555;
}

.navbar .links .nav-link.activeTab {
  color: var(--text-red);
  font-weight: bold;
  border-bottom: 3px solid red;
}

.navbar .buttons a:not(:last-child) {
  margin-right: 30px;
}
.navbar .buttons .login {
  background-color: var(--light-green-yellow);
  color: #000;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
}

.hero-section {
  text-align: center;
  height: 100%;
  width: 96%;
  padding: 3%;
  margin: 0 auto !important;
  margin-top: 20px !important;
  background-color: #dff8c1;
  transition: background-color 1s ease;
  font-family: Arial, sans-serif;
  overflow: hidden;
  border-radius: 20px;
  padding-bottom: 40px;
  cursor: url("https://teamup.ink/policy_support/health_diary/icons/parrot_cur.png")
      20 20,
    auto;
}

.hero-title h1 span{
  background: linear-gradient(90deg, #ff6a00, #ee0979);

  /* Standard and prefixed for broader support */
  background-clip: text;
  -webkit-background-clip: text;

  /* Only WebKit browsers support text-fill-color */
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-color: var(--light-orange);
  border-radius: 80%;
}

.hero-image{
  position: relative;
}
.hero-image img {
  height: 300px;
  max-height: 500px;
  object-fit: contain;
  rotate: -10deg;
}
.update-text {
  background-color: var(--background-white);
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
}

.update-text span {
  background-color: rgb(151, 241, 5);
  border-radius: 50px;
  padding: 6px 20px;
}

.download-users {
  font-weight: bold;
  text-wrap: nowrap;
  color: rgb(255, 77, 0);
  display: inline-block;
  padding: 5px 10px;
  background: linear-gradient(to right, #f4b639 100%, transparent 0%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  margin-top: 20px;
  animation: bgMove 3s ease-in-out forwards;
}
@keyframes bgMove {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}



@media screen and (max-width: 768px) {
  .leaf-image img {
    height: 160px !important;
    z-index: 0;
  }
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #c9c7c7;
}
.hero-section .img img {
  width: 517px;
}
.hero-section .buttons {
  margin-top: 40px;
}

.hero-section .buttons a {
  text-decoration: none;
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-block;
}

/* Hamburger menu styles */
#menu-toggle {
  display: none;
}
#hamburger-btn {
  font-size: 1.8rem;
  color: var(--text-drak);
  cursor: pointer;
  display: none;
  order: 1;
}
@media screen and (max-width: 1023px) {
  .navbar .logo a {
    font-size: 1.5rem;
  }
  .links {
    position: fixed;
    top: 75px;
    left: -110%; /* Initially hide the menu */
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    background: #f4f2f2;
    flex-direction: column;
    transition: 0.3s ease;
  }
  .links li a {
    background-color: #ccc;
    width: 200px;
    text-align: center;
    border-radius: 50px;
  }
  .navbar #menu-toggle:checked ~ .links {
    left: 0;
  }
  .navbar #hamburger-btn {
    display: block;
  }
  .header .buttons {
    display: none;
  }
  .hero-section .hero {
    max-width: 100%;
    text-align: center;
  }
}

/* Keyframes for rotating the logo */
@keyframes rotate360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.leaf-image img {
  margin-left: -103%;
  margin-top: 40px;
  height: 160px;
  transform: rotate(-80deg);
}

/*===== Home section =========*/
.hero-content {
  position: relative;
  text-align: center;
}

.hero-text {
  z-index: 1; /* Lower the z-index to place the text behind the image */
  text-align: center; /* Center the text */
}

.hero-text h1 {
  font-size: 200px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-text p {
  text-transform: uppercase;
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.5;
}

.popup-top-left{
  position: absolute;
  top: 50%;
  left: 10%;
}
.popup-bottom-right1{
  position: absolute;
  bottom: 10%;
  right: 0%;
}
.popup-bottom-right2{
  position: absolute;
  top: 10%;
  right: 10%;
}
.download-buttons {
  display: flex;
  gap: 20px;
}

.download-btn {
  background: var(--button-color);
  color: var(--text-drak);
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  transition: background 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.download-btn:hover {
  background: #e69a27;
}
.download-btn:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/* ================ To Top Button ============== */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--light-green-yellow);
  color: #00000060;
  border: 2px solid #00000060;
  padding: 15px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

#topBtn:hover {
  background-color: #bfed25;
  color: #000000;
  border: none;
}
html {
  scroll-behavior: smooth;
}
/* ================= End To Top Button================= */


/*====== Features ========*/
.features {
  width: 93%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}

.feature-card {
  border-radius: 25px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(50px);
  animation: cardAppear 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.feature-card img {
  width: 159px;
  margin: auto auto 0;
}

.frameworks {
  background: #414d03;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px;
}

.collaboration {
  background: #7d98db;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px;
}

.tracking {
  background: #9fbc94;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px;
}

.experts {
  background: #ffbf00;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 5px;
}



/* ======== health-journey-container ======== */
.health-journey-container {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--background-white);
  padding: 50px 20px;
}

.journey-section h1,
.journey-section p {
  margin-bottom: 15px;
}

.store-buttons img {
  width: 140px;
  cursor: pointer;
}

.preview-image {
  width: 250px;
  max-width: 100%;
  border-radius: 10px;
}

.ripple {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--ripple-background);
  border-radius: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  animation: ripple-animation 5s linear;
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(6);
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  .ripple {
    width: 200px !important; /* Smaller ripple */
    height: 200px !important;
    padding: 30px 0;
    position: absolute;
    top: 50%;
  }
  .journey-title {
    font-size: 30px !important;
  }
}

.health-journey-container {
  position: relative;
  overflow: hidden;
  background-color: var(--text-white);
  display: flex;
  padding: 100px 40px 0;
  flex-direction: column;
  margin: 0 auto 70px;
}

.journey-section {
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  position: relative;
  min-height: 240px;
  width: 100%;
  align-items: center;
  font-family: Sora, sans-serif;
  color: var(--text-drak);
}

.journey-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.journey-content {
  position: relative;
  display: flex;
  margin-bottom: -25px;
  width: 100%;
  max-width: 1036px;
  flex-direction: column;
}

.journey-title {
  font-size: 60px;
  font-weight: 600;
  align-self: center;
}

.journey-description {
  font-size: 22px !important ;
  font-weight: 500;
  margin-top: 4px;
  line-height: 2rem;
}

.download-section2 {
  align-self: center;
  z-index: 10;
  margin-top: -86px;
  width: 100%;
  max-width: 1045px;
  margin: 0 auto;
}

.download-container {
  gap: 20px;
  display: flex;
}

.app-preview-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 74%;
}

.app-preview-wrapper {
  width: 100%;
}

.store-buttons-container {
  gap: 20px;
  display: flex;
}

.appstore-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: normal;
  /* width: 37%; */
}

.appstore-column img {
  border-radius: 50px;
}

.appstore-button {
  background-color: var(--background-dark) !important;
  border-radius: 50px;
}

.store-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 40px;
  align-self: start;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-label {
  font-size: 12px;
  font-weight: 300;
}

.store-name {
  font-size: 24px;
  font-weight: 600;
  align-self: start;
}
.preview-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  justify-content: center;
  display: flex;
}

.preview-image {
  aspect-ratio: 1.5;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-left: -5%;
}

.playstore-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: normal;
  margin-left: 20px;
}

.playstore-column img {
  border-radius: 50px;
}

@media (max-width: 991px) {
  .journey-section {
    max-width: 100%;
    padding: 20px;
  }

  .journey-content {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .journey-title {
    max-width: 100%;
    font-size: 40px;
  }

  .journey-description {
    max-width: 100%;
  }

  .download-section2 {
    max-width: 100%;
  }

  .download-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .app-preview-column {
    width: 100%;
  }

  .app-preview-wrapper {
    max-width: 100%;
    margin-top: 40px;
  }

  .store-buttons-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .appstore-button {
    /* background-color: var(--background-dark); */
    margin-top: 40px;
    padding-right: 20px;
  }

  .preview-column {
    width: 100%;
    padding-bottom: 20px;
  }

  .preview-image {
    margin-top: 27px;
  }

  .playstore-button {
    margin-top: 40px;
    padding-right: 20px;
  }
  .playstore-column {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .nav-items {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.fw-image img {
  object-fit: fill;
  border-radius: 20px !important;
}


/* ========= Achievements ========= */
.trusted-section {
  background-color: #dbe2db;
}
.achievements-section {
  text-align: center;
  padding: 20px;
  background: var(--background-white);
  border-radius: 20px;
}

.achievements-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; /* Space between logos */
}

.achievements-logo {
  width: 180px;
  height: auto; /* Maintain aspect ratio */
  opacity: 0.5;
  border-radius: 20px;
}

/* =============== Why Health Dairy================ */
.why-health-dairy-section {
  background: var(--background-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #000;
  padding: 100px 115px;
  font: 400 16px Sora, sans-serif;
}

.why-section-title {
  font-size: 50px;
  font-weight: 600;
  align-self: start;
}
.why-image img{
  height: 300px;
  max-height: 500px;
  object-fit: contain;
  rotate: -10deg;
}


@media (max-width: 991px) {
  .why-health-dairy-section {
    padding: 100px 20px;
  }

  .why-section-title {
    max-width: 100%;
    font-size: 40px;
  }
}

.why-card {
  background-color: var(--button-color);
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 1.5rem;
  margin: 0 auto;
}

.inner-text {
  text-align: left;
}
.doc-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.doc-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =============== Download Section===================== */
#download-section {
  width: 98%;
  padding: 2%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
}
.download-section {
  color: var(--text-white);
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--background-dark);
}
.custom-card-container {
  display: flex;
  justify-content: space-between;
}
.custom-card {
  width: 100%;
}
.custom-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.button-row {
  display: flex;
  gap: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-row .bn46 {
  width: 150px;
  height: 50px;
}
.button-row .bn45 {
  width: 170px;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .download-section .custom-card {
    padding: 20px;
  }
}

/* ===================== Info Cards============================= */
.box-container {
  padding: 4px;
}
.info-container {
  background-color: #000000;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}
.info-container:hover {
  background: rgb(13, 12, 12);
  background: radial-gradient(
    circle,
    rgba(13, 12, 12, 1) 0%,
    rgb(115, 100, 124) 100%
  );
}
.info-card {
  height: 200px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.box-container .info-title {
  margin-bottom: 10px !important;
  font-weight: 600;
  font-size: 1.8rem;
}

/* ========== Accordian=========== */
.accordion-card {
  background-color: #d2d4d2;
  border-radius: 16px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  overflow: hidden;
}
.accordion {
  background-color: transparent;
  color: var(--text-drak);
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  font-weight: bold;
  margin: 10px 0;
  box-shadow: 2px 2px 10px #cdcdcd5c;
  border-radius: 16px;
  border: none !important;
}
.accordion.active,
.accordion:hover,
.accordion:focus {
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
}

.accordion:after {
  content: "\f106";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  float: right;
}

.accordian-title h1 {
  font-size: 50px;
  line-height: normal;
  margin-bottom: 20px;
}

.accordion-card.active {
  background-color: var(--light-green-yellow) !important;
}

.panel {
  padding: 0 10px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-radius: 15px;
  text-align: left;
}
.panel p {
  padding: 8px;
}

/* ==============Special Services ============= */
.services-container {
  background-color: rgb(239, 241, 236);
  padding: 4%;
}

.service-card {
  background-color: #add219;
  color: #000;
  border-radius: 12px; /* Smooth rounded corners */
  height: 93%; /* ✅ Adjust height dynamically */
  width: 100%;
  padding: 10px; /* Space inside the card */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effect */
  display: flex; /* ✅ Helps with equal height */
  flex-direction: column; /* Keeps content aligned */
}

/* Hover effect for interactivity */
.service-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.service-card i {
  font-size: 16px;
  padding-left: 5px;
}
.card-heading {
  white-space: nowrap;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--light-green-yellow);
}
.service-card .card-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px !important;
}
.left-cards {
  padding-left: 4%;
}
.service-card h5 {
  font-weight: bold;
  margin-bottom: 1px !important;
}
.service-card p {
  margin-bottom: 4px;
  font-size: 15px;
}

.service-card a {
  text-align: left;
  color: #000;
  font-weight: bold;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.service-card a:hover {
  color: #000;
  font-size: 17px;
}
.service-card a:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.mobile-container {
  width: 280px;
  height: 570px;
  background-color: transparent !important;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .mobile-container {
    margin-top: 40px;
  }
}
.carousel-item img {
  width: 350px !important;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 0px !important;
  border-radius: 10px;
}
.carousel-inners {
  display: table;
  width: 100%;
}
.carousel-indicators {
  position: absolute;
  bottom: -10px;
  left: 35%;
  transform: translateX(-50%);
  z-index: 15;
  color: #000 !important;
  background-color: #00000071;
  height: 25px;
  padding: 2px 20px;
  border-radius: 20px;
  opacity: 0.7;
}

.carousel-indicators li {
  background-color: #fff;
}

.carousel-indicators .active {
  background-color: #0a0a0a; /* Color for the active indicator */
}

/* ================= Doctors slider================== */
.slider-container {
  width: 95%;
  margin: auto;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.doctor-card {
  position: relative;
  flex: 0 0 18%;
  margin: 10px;
  text-align: center;
  height: 300px;
  border-radius: 15px;
  background-color: var(--background-white);
}
.doctor-card .description {
  text-wrap: nowrap;
}
.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 15px;
}
.doctor-details {
  position: absolute;
  bottom: 3%;
  background-color: #fff;
  width: 90%;
  left: 50%;
  border-radius: 5px;
  transform: translateX(-50%);
  padding: 6px;
  text-align: start;
}
.doctor-card h3 {
  color: var(--text-drak);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.247);
  width: 100%;
  left: 0;
  z-index: 1;
}
.doctor-card p {
  font-size: 12px !important;
  text-wrap: nowrap !important;
}

.slider-btn {
  position: absolute;
  top: 50%;
  background-color: var(--text-white);
  color: var(--text-drak);
  height: 40px;
  width: 40px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
}
.doctor-card h3 {
  bottom: 60px;
  font-size: 1rem;
}

.doctor-card p {
  bottom: 0px;
  font-size: 1rem;
  margin-bottom: 0px;
}

.slider-btn.prev {
  left: 10px;
  z-index: 99;
}

.slider-btn.next {
  right: 10px;
  z-index: 99;
}

/* Responsive Breakpoints */
@media (max-width: 1000px) {
  .doctor-card {
    flex: 0 0 40%;
  }
}

@media (max-width: 600px) {
  .doctor-card {
    flex: 0 0 80%;
  }
}

/* ===========  carousel-container ============ */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.testimonials-grid {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px;
}

.testimonial-card {
  flex: 0 0 280px;
  background: var(--text-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card.pregnant {
  background-color: #ffbf00;
}

.testimonial-card.doctor-blue {
  background-color: #56ae57;
}

.testimonial-card.fitness {
  background-color: #ffa87c;
}

.testimonial-card.doctor-purple {
  background-color: #366cd9;
}

.tag {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-drak);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  height: 200px;
  color: var(--text-drak);
}

.stars {
  display: flex;
  color: var(--text-white);
  gap: 3px;
  margin-bottom: 10px;
}
.stars span {
  width: 24px; /* Square size */
  height: 24px; /* Square size */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 4px;
  color: var(--text-white);
  font-size: 16px;
  font-weight: bold;
  border-radius: 3px;
  background-color: green;
}

.user-info {
  position: absolute;
  bottom: 5%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-details {
  text-align: left;
}

.name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-drak);
}

.meta {
  font-size: 14px;
  color: var(--text-drak);
}

/* Updated navigation styles */
.navigation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #4a5568;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-button:focus,
.carousel-button.active {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: #dcdedb;
  border-radius: 50px;
}
.carousel-button:disabled {
  color: #cbd5e0;
  cursor: not-allowed;
}

.navigation {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #4a5568;
  width: 24px;
  border-radius: 4px;
}

.carousel-viewport {
  overflow: hidden;
}

/* ======================================= */
.main-container {
  padding: 4%;
}
.main-heading {
  font-weight: 700;
  position: relative;
  z-index: 2; /* Keep this above the background text */
}

.results-text {
  font-size: 120px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.11); /* Low opacity for the "RESULTS" text */
  z-index: 0; /* Send the text to the background */
  left: 0;
  right: 0;
  margin: auto;
  top: -55px; /* Adjust positioning */
  padding: 30px;
  position: absolute;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .results-text {
    font-size: 120px; /* Adjust for large tablets */
    top: -70px; /* Adjust positioning */
  }
}

@media (max-width: 992px) {
  .results-text {
    font-size: 100px; /* Adjust for tablets */
    top: -60px; /* Adjust positioning */
  }
}

@media (max-width: 768px) {
  .results-text {
    font-size: 80px; /* Adjust for small tablets */
    top: -55px; /* Adjust positioning */
  }
}

@media (max-width: 576px) {
  .results-text {
    font-size: 50px; /* Adjust for mobile devices */
    top: -30px; /* Adjust positioning */
    padding: 10px; /* Reduce padding */
  }
  .main-heading {
    font-size: 34px;
  }
}

.card-info {
  text-align: left;
  border: none;
  background-color: #eeeef2 !important;
  padding: 5px 20px;
  border-radius: 10px;
  max-height: 120px;
  transition: box-shadow 0.3s ease-in-out;
  justify-items: center;
  border: 1px solid #ccc;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.279) !important;
}

.info-title {
  font-size: 2rem;
  font-weight: bold;
}

.info-text {
  font-size: 1.2rem;
  color: #9ba4ac;
}

.info-decrease {
  color: #6f42c1 !important; /* Purple arrow down color */
}

.outcome-text {
  font-size: 1rem;
  color: #6c757d;
}

/* ========== Footer=========== */
footer {
  background-color: #343a40;
  color: var(--text-white);
  padding: 3rem 0;
}

.social-icons a {
  font-size: 1.25rem;
}
.social-icons a i {
  color: var(--light-green-yellow);
  margin-right: 14px;
  font-size: 28px;
}
.list-unstyled li {
  margin-bottom: 8px;
}

footer h5 {
  color: var(--light-green-yellow);
}

@media screen and (max-width: 768px) {
  footer {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}

/* ============  Loader start============= */

/* Preloader Full-Screen */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 8px solid #18e805;
  border-top: 8px solid #ccc;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.loading-text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ========== Loader End ========== */

/* ============ Fw-Tabs============ */
.fw-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  /* border-bottom: 2px solid #ccc; */
  margin-bottom: 20px;
}

.fw-tab-buttons button {
  /* background-color: #f5f5f5; */
  padding: 5px 10px;
  border: none;
  margin-right: 5px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50px;
  min-width: 80px;
}

.fw-tab-buttons button:hover {
  background-color: #e0e0e0;
}

.fw-tab-buttons button.active {
  background-color: #ccc;
  color: #000;
  font-weight: 600;
}
.fw-tab-buttons button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.fw-tab-content {
  display: none;
  padding: 20px;
  /* border: 1px solid #ccc; */
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.fw-tab-content.active {
  display: block;
}

@media (max-width: 600px) {
  .fw-tab-buttons {
    flex-direction: column;
  }

  .fw-tab-buttons button {
    margin-bottom: 5px;
    border-radius: 8px;
  }
}

.framework-section {
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: left;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #e1e0e0 transparent;
  -webkit-overflow-scrolling: touch;
}
.framework-section::-webkit-scrollbar {
  height: 4px;
  background: transparent;
}

.framework-section::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

.framework-section::-webkit-scrollbar-track {
  background: transparent;
}
.framework-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.framework-card {
  flex: 0 0 auto;
  width: 240px;
  height: 240px;
  /* width: 180px;
  height: 120px; */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  border: 0.1rem solid #366cd9;
}

/* [
  "#7D98DB",
  "#9FBC94",
  "#FFA87C",
  "#366CD9",
  "#56AE57",
  "#FFBF00",
  "#414D03",
] */

.framework-wrapper:hover {
  transform: translateY(-6px);
}

.fw-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 34px;
  /* background: linear-gradient(to top,#366CD9, transparent); */
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.fw-footer {
  width: 240px;
  /* width: 180px; */
  background-color: #efeded;
  color: #000;
  text-align: left;
  font-size: 14px;
  border-radius: 0 0 25px 25px;
  /* margin-top: 6px; */
  padding-bottom: 10px;
}

.fw-footer h5 {
  margin-top: 0;
  font-size: 15px;
  font-weight: 600;
  margin-left: 7px;
}

.fw-footer p {
  font-size: 12px;
  font-weight: 500;
  padding: 5px;
  text-wrap: nowrap;
  background-color: #ffbf00;
}

.price {
  background-color: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  margin-left: 7px;
  display: inline-block;
}
.old-price {
  color: #676666;
  margin-right: 8px;
  font-weight: normal;
  opacity: 0.8;
}
/* =========End Fw-Tabs ========= */


/* =========== Care plan section============ */
.care-plan-section{
    margin:20px;
    padding: 5%;
    background-color: #e9e9f4;
    height: 80vh;
    border-radius: 20px;
}
.care-plan-container{
  padding: 10px;
}

.careplan-left{
  background-color: #ccc;
  border-radius: var(--border-radius);
  padding: var(--section-padding);
  padding: 5%;
}

.careplan-right{
  border-radius: var(--border-radius);
  height: 100%;
  padding: 5%;
}

.search {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.search input[type="text"] {
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  width: 70%;
  transition: border-color 0.3s;
}

.search input[type="text"]:focus {
  border-color: #ff9800;
  outline: none;
} 

.search .btn {
  padding: 10px 20px;
  background-color: #ff9800;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search .btn:hover {
  background-color: #e08900;
}
