body {
  font-family: 'DM Sans' !important;
}    

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 62px;
  border-bottom: 1px solid #ddd;
  
  font-family: 'DM Sans';
}

.navbar-title img {
  width: 190px;
  aspect-ratio: 1100 / 504;
  object-fit: contain;
}

.navbar-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.icon-wrapper {
  position: relative;
  font-size: 20px;
  color: #6c42d7;
  cursor: pointer;
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -5px;
  background: #f44336;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 4px;
  line-height: 1;
}

.profile-icon {
  font-size: 22px;
}


/* top slider start */
.top-slider-container {
  position: relative;
  /*max-width: 1440px;*/
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.top-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.top-slider-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.top-slider-slide img {
  width: 100%;
  /*height: auto;*/
  /*object-fit: cover;*/
}

.top-pagination {
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-dot {
  height: 6px;
  width: 6px;
  margin: 0 5px;
  background-color: #AEB3BC;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.top-dot.active {
  background-color: #4C58D9;
  height: 10px;
  width: 10px;
}
/* top slider end */

/* features cards start */
.features-container {
  width: 100%;
  /* background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%); */
  background: linear-gradient(0deg, #EAECFF 4.7%, #FFFFFF 103.32%);
  padding: 1em;
  font-family: 'DM Sans';

  display: flex;
  flex-direction: column;
  position: relative;

  padding-bottom: 30px;
}

.features-cards-section {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  font-family: sans-serif;
}

.features-title {
  font-size: 20px;
  font-weight: bold;
  color: #0a1440;
  margin-bottom: 24px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  width: 160px;
  box-shadow: 0px 6px 20px rgba(153, 162, 187, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
  
  box-sizing: border-box;

  max-width: 20%;
  min-width: 90px;
}

.feature-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  color: #0a1440;
  margin: 0;
}

.features-waves-divider {
  /* position: absolute;
  top: 200px; */
  /* bottom: 100px; */
  /* margin-top: 0px; */
  /* margin-bottom: -0.5em; */

  z-index: 3;
}

@media (max-width: 760px) {
 .navbar-title img {
   width: 130px;
 } 
 .navbar {
   padding: 10px 16px;
 }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .features-title {
    font-size: 16px;
  }

  .feature-card {
    width: 44%;
    padding: 12px;
  }

  .feature-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

/* features cards end */

/* product list start */
.product-list-container {
  width: 100%;
  padding: 2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.grid-container {
  display: grid;
  align-items: center;
  justify-content: center;
  /*gap: clamp(30px, 70%, 90px);*/
  gap: clamp(30px, 4vw, 50px);
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1060px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background-color: #fff;
  color: black;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;

  text-decoration: none;

  width: 280px;
}

.product-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

/* .product-image {
  width: 100%;
  height: auto;
  display: block;
} */

/* new image slider section */
.list-image-slider {
  width: 280px;
  /*height: 250px;*/
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.slide {
  width: 280px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  padding: 0.9em 0;
}

.slide img {
  width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: fill;
}

.tag {
  display: inline-block;
  padding: 0.4em 1.5em;
  background-color: #ffffff;
  border-radius: 7px;
  font-size: 12px;
  color: #360401;
  font-weight: bold;
  width: fit-content;
}

/* new image slider section end */

.product-content {
  padding: 16px;
}

.product-tag {
  display: inline-block;
  margin: 10px auto;
  padding: 4px 12px;
  background: #fff;
  color: #6c301b;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.9rem;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 10px 0 5px;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.product-rating {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.product-rating span {
  color: #f4b400;
  font-size: 1rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
}

.discounted-price {
  font-weight: bold;
  color: #000;
}

.add-to-cart, .notify-btn {
  /* background: #f5565e; */
  background-color: #FF6473;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
}

.add-to-cart:hover, .notify-btn:hover {
  background: #e0444a;
}

/* product list end */


/* review reel start */
.review-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  box-sizing: border-box;
  padding: 1em 1em 2em;
  margin-top: 40px;
}

.video-reviews {
  max-width: 100%;
  overflow-x: auto;
}

.review-container h3 {
  width: 100%;
  text-align: center;

  font-size: 1.6em;
  color: #002863;
}

.video-scroll-container {
  overflow-x: scroll;
  width: max-content;

  display: flex;
  scroll-snap-type: x mandatory;
  gap: 25px;
  /*padding: 1em;*/
}

.video-card {
  width: 180px;
  height: 300px;

  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgb(233, 235, 255);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.mute-toggle {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

/* review reel end */

/* doctor review start */
.doctor-testimonial-section {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 40px 0;
}

.section-title {
  color: #002863;
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 20px;
  /* border-top: 2px dotted #1e5db0; */
  /* border-bottom: 2px dotted #1e5db0; */
  padding: 10px;
  display: inline-block;
}

.doctor-testimonial-card {
  position: relative;
  width: 300px;
  min-width: 300px;
  margin: 0 auto;
  /*background: transparent;*/
   /*background: linear-gradient(0deg, #eef3ff 70%, #fff 70%); */
  /*background: linear-gradient(0deg, #EAECFF 66%, #fff 66%);*/
  border-radius: 36px;
  /* padding: 20px 20px 30px 20px; */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);

  font-family: 'DM Sans';
}

.doctor-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  /* margin-top: -80px; */
  /*background: white;*/
  border: 4px solid #eef3ff; 
}

.doctor-testimonial-card .quote-icon {
  position: absolute;
  left: 15px;
  top: 130px;
}

.doctor-testimonial-card .card-content {
  margin-top: 0px;
  box-sizing: border-box;
  background: #EAECFF;
  padding: 1.3em 1em;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.doctor-name {
  color: #002863;
  font-size: 18px;
  margin: 8px 0 0;
  font-weight: 800;
}

.doc-designation {
  color: #002863;
  font-size: 0.95em;
  margin: 2px 0;
  font-weight: 500;
}

.doc-parent-detail {
  /* color: #888;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 10px; */

  color: #888;
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 15px;
}

.doctor-testimonial-text {
  /* font-size: 14px;
  color: #333;
  padding: 0 5px;
  font-weight: 600; */

  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

.stars {
  margin-top: 15px;
}

.stars-small div {
 font-size: 14px;
}

.star {
  color: #fbc02d;
  font-size: 20px;
}

.star.inactive {
  color: #ccc;
}

.pagination-dots {
  margin-top: 10px;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background-color: #1e5db0;
}

/* doctor review end */

/* parent review start */
.parent-testimonial-section {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 40px 0;

  display: flex;
  flex-direction: column;
  font-family: 'DM Sans';
}

.parent-testimonial-container {
  width: 100%;
  overflow-x: scroll;

  padding: 1em 0;
  background-color: #FFD782;
}

.parent-testimonial-card {
  position: relative;
  background: #fff;
  padding: 2em 1em;
  border-radius: 24px;
  position: relative;
  width: 280px;
  min-width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 80px auto 50px;
  text-align: center;
}

/* .parent-testimonial-card::before {
  content: '';
  background-color: #FFE08C;
  position: absolute;
  top: -60px;
  left: -20px;
  width: 360px;
  height: 360px;
  z-index: -1;
  border-radius: 40px;
} */

.parent-profile-pic {
  margin-top: -80px;
  margin-bottom: 10px;
}

.parent-profile-pic img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
}

.parent-quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
}

.quote-icon, .parent-quote-icon img {
  width: 40px;
  aspect-ratio: 144 / 145;
}

.parent-testimonial-content h3 {
  margin: 10px 0 4px;
  /* color: #1e3a8a; */
  color: #002863;
  font-size: 1.1rem;
  font-weight: bold;
}

.parent-subtext {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0;
  font-weight: 500;
  margin-bottom: 15px;
}

.parent-review-text {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

.parent-star-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.parent-star {
  font-size: 20px;
  color: #ccc;
}

.parent-star.filled {
  color: #FFD700;
}

/* parent review end */