.whatsapp {
  position: fixed !important;
  width: 34%;
  max-width: 150px;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}

.allsection {
  border: 1px solid #cec376;
  background: 20px;
  background-color: #fffced;
  margin: 0px 100px 20px 100px;
  border-radius: 50px;
}

/* Hero section Style Start */
.hero-section {
  background: url("../images/hero_section.png") no-repeat center center;
  background-size: cover;
  height: 480px;
  margin-top: -110px;
}

.beginners-text {
  color: #411a42;
}

.info-highlights {
  color: #3a105e;
}

.info-item {
  color: #411a42;
}

.line {
  display: inline-block;
  height: 2px;
  background-color: #4b2e5a;
  width: 210px;
  /* manually set to match text width */
  margin: 4px 0;
}

.link {
  text-decoration: none;
  color: #3f1940;
}

.banner {
  background: url("./hero_section.png") no-repeat center center;
  background-size: cover;
  position: relative;
  color: #4b2e5a;
}

.logo-img {
  max-width: 450px;
}

/* Hero section Style End */

/* second Section start  */
.title-bar-ear {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.title-bar-ear::before,
.title-bar-ear::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #dec85b;
  margin: 0 1rem;
}

/*  style  second Section end  */

/* Custom CSS Variables for the palette */
:root {
  --custom-color-body-bg: rgba(255, 249, 240, 1);
  --custom-color-text-dark: rgba(65, 26, 66, 1);
  --custom-color-text-muted: rgba(65, 26, 66, 0.8);
  --custom-color-border: rgba(212, 189, 97, 1);
  --custom-color-gradient-start: #d2ba60;
  --custom-color-gradient-end: #f5e17c;
  --custom-color-hover-light: rgba(212, 189, 97, 0.1);
  --custom-color-button-border: rgba(245, 225, 124, 1);
  --custom-color-hover-light-alt: rgba(212, 189, 97, 0.2);
  --custom-color-panel-bg: rgba(255, 240, 218, 1);
  --custom-color-svg-main: #842729;
  --custom-color-mobile-dropdown-bg: #3f1840;
  --custom-color-mobile-dropdown-arrow: #e7e0ec;
}

.main-container-wrapper {
  flex-grow: 1;
  display: flex;
}

/* Sidebar Styling */
.sidebar {
  background-color: var(--custom-color-body-bg);
  border-right: 1px solid var(--custom-color-border);
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 70vh;
  overflow-y: auto;
}

.gold-bar-custom {
  background: rgba(238, 213, 181, 1);
  height: 150px;
  color: rgba(65, 26, 66, 1);
}

.sidebar .nav-link {
  color: var(--custom-color-text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.sidebar .nav-link.active {
  background: rgba(238, 213, 181, 1);
  color: var(--custom-color-text-dark);
  border-radius: var(--bs-border-radius);
  /* Use Bootstrap's default border-radius */
}

.sidebar .nav-link:hover:not(.active) {
  background-color: var(--custom-color-hover-light);
}

/* Responsive adjustments */
@media (min-width: 768px) {

  /* Apply background and shadow for desktop only */
  .main-content-container {
    box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--custom-color-body-bg);
    /* Use body background for main container */
  }

}

.wishlist-icon {
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #a97a7a;
  cursor: pointer;
  transition: color 0.3s ease;
}

.wishlist-icon.active {
  color: red;
}

.wishlist-popup {
  color: #3f1940;
  font-size: 10px;
  border-radius: 8px;
  opacity: 0;
  vertical-align: middle;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wishlist-icon.show-popup .wishlist-popup {
  opacity: 1;
  transform: translateY(0);
}

.product-img {
  width: 200px;
}

.product-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.product-title {
  background: #cec376;
  color: #4b204d;
  border-radius: 25px;
  width: 190px;
  display: inline-block;
  box-shadow: inset 0 4px 4px 0px rgba(0, 0, 0, 0.1),
    0 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.product-subtitle {
  color: #4b204d;
  line-height: 13px;
  letter-spacing: 0px;
  font-size: 13px;
}

.toggle-switch {
  display: flex;
  border-radius: 9999px;
  background-color: #4a1d4a;
  padding: 4px;
  width: 158px;
  height: 30px;
  margin: 1rem auto;
}

.toggle-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.toggle-option.active {
  background-color: #fff8ee;
  color: #4a1d4a;
}

.toggle-option:not(.active) {
  color: #fff8ee;
}

.price-box {
  background-color: #4b204d;
  color: #f8f292;
  padding: 12px 16px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 1rem;
  /*width: 270px;*/
}

.price-box small {
  display: block;
  font-size: 8px;
  color: #fff9f0;
  width: 130px;
}

.price-box .price {
  /*font-weight: 600;*/
  font-size: 1.1rem;
  /*width: 50px;*/
}

.btn-cart {
  background-color: #d4c26f;
  color: #4b204d;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 10px;
  width: fit-content;
  padding: 5px 15px;
}

.middle-card {
  position: relative;
}

.vertical-line.left,
.vertical-line.right {
  position: absolute;
  top: 15%;
  height: 70%;
  width: 2px;
  background-color: #d4c26f;
}

.vertical-line.left {
  left: 1px;
}

.vertical-line.right {
  right: 1px;
}

@media (max-width: 991px) {

  .vertical-line.left,
  .vertical-line.right {
    display: none;
  }
}

/* The Beginners Earring style Start End */

.feature-box {
  border-radius: 10px;
}

.feature-title {
  font-size: 30px;
  font-weight: 200;
  color: #4a1c4a;
}

.sliver-feature-title {
  width: 300px;
}

.feature-item {
  background: linear-gradient(to right, #eed5b4, #c7b39a);
  color: #333;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-item img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

/* .product-img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid gold;
} */

.product-section {
  background: #fffbe9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.variant-btn {
  border: 1px solid #ccc;
  margin: 0 5px;
  padding: 5px 15px;
  border-radius: 20px;
  background: #f8f8f8;
  cursor: pointer;
}

.add-cart-btn {
  background: gold;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  color: #333;
  font-weight: bold;
}

.know-more-section {
  border-radius: 15px;
  padding: 20px;
}

.know-more-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  /* font-size: 28px; */
  /* font-weight: bold; */
  color: #4a1d4b;
  margin-bottom: 30px;
}

.know-more-bg {
  background-color: #4a1d4b;
  border-radius: 20px;
}

.know-more-box {
  padding: 20px 0px;
  color: #fff3e6;
  text-align: center;
}

.know-more-box h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}

.highlight-box {
  background-color: #c7b39a;
  color: #4a1d4b;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 6px 10px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}

.highlight-box img {
  height: 62px;
  margin-right: 10px;
}

.know-more-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff3e6;
  margin: 15px 0;
}

.know-more-box strong {
  display: block;
  font-size: 17px;
  font-weight: bold;
  margin-top: 25px;
  color: #fff3e6;
}

/* .BookNow {
  text-align: center;
  padding: 30px 20px;
  margin: 0;
  color: #3a105e;
} */

/* Book Now Button Style start */

h1 {
  font-size: 40px;
  color: #3d1f3f;
  font-weight: bold;
  margin-bottom: 40px;
}

.btn {
  color: #3d1f3f;
  border: none;
  /* padding: 12px 30px; */
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* .btn:hover {
  background-color: #c3b76c;
} */

.btn-book {
  background-color: #cec376;
  border: 1px solid #cec376;
  color: #411a42;
  font-weight: bolder;
}

/* Book Now Button Style start */

/* colourstone */
/* know more section start */

.info-card {
  background-color: #4b1c4c;
  border-radius: 20px;
  padding: 2rem;
  color: #f5f2db;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5f2db;
}

.step-box {
  background-color: #c7b39a;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  color: #4b1c4c;
}

.info-img {
  background-color: #c7b39a;
  color: #4b1c4c;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin: 1rem 0;
}

a {
  color: #4b1c4c;
  text-decoration: underline;
}

.title {
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  margin-top: 2rem;
  color: #3d1e40;
}

.Button {
  text-align: center;
  font-weight: bold;
  padding: 30px 20px;
  margin: 0;
}

/* knowmore section  */
/* colourstone end */

/* wishlist opned style start */
.sidebar-link.active {
  background-color: #e5cd74;
  border-radius: 4px;
  padding-left: 8px;
}

.card-img-top {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto;
}

.bagrounde {
  background: linear-gradient(#f4e17b, #ab8c40);
}

.product {
  background-color: #fff6e8;
  border-radius: 10px;
  box-shadow: 0px 2px 2px gray;
}

.my-card {
  background-color: #eed5b5;
  /* background: linear-gradient(to right, #F4E17B, #AB8C40); */
  color: #411a42;
  margin-top: 30px;
  padding: 30px 30px;
}

.icon-image {
  height: 60px;
  width: 60px;
  padding: 10px;
}

:root {
  --cream: #fef9f0;
  --gold: #d4af37;
  --plum: #3c1c3c;
}

.modal-custom {
  background-color: #fff6e8;
  border: 3px solid #d4bb61;
  border-radius: 16px;
  color: var(--plum);
}

.btn-gold {
  border: 1px solid #d4bb61;
  background: transparent;
  color: #411a42;
  border-radius: 50px;
  padding: 6px 20px;
}

.btn-gold:hover {
  background: #d4bb61;
}

.btn-outline-gold {
  color: #bfb867;
  border-radius: 50px;
  padding: 6px 20px;
  background: transparent;
}

.btn-outline-gold:hover,
.btn-outline-gold.selected {
  background-color: #d3cb72;
  color: #542055;
}

.form-control-pill {
  border-radius: 999px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  border: none;
}

.form-control:focus {
  box-shadow: none;
}

.scroll-container {
  max-height: 140px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.booking-card {
  background-color: #fef9f0;
  cursor: pointer;
}

.booking-card select {
  width: auto;
  display: inline-block;
}

.assignSelect {
  border: 1px solid #c9a74d;
  padding: 3px 50px 3px 5px;
}

/* .container-fluid {
  background: rgba(238, 213, 181, 1);
  height: 150px;
  color: rgba(65, 26, 66, 1);
} */

/* wishlist opned style start */

/* home page styling start */

/* about mysunar styling start */
.about-us {
  background-color: #3f1840;
  color: #f4e17b;
}

.top-bar {
  background-color: #c7b39a;
  padding: 2rem 2rem;
  color: #2d0b35;
  text-align: center;
}

.top-bar h4 {
  font-size: 30px;
  font-weight: 600;
}

.top-bar p {
  font-size: 20px;
  font-weight: 500;
}

.home-icon {
  height: 23px;
  margin-left: 5px;
  vertical-align: middle;
}

.save-btn-center {
  display: flex;
  justify-content: right;
  margin-top: -24px;
  z-index: 10;
  position: relative;
}

.save-btn-center button {
  background: #2d0b35;
  color: #f4e17b;
  border: 2px solid #f3c94f;
  border-radius: 25px;
  padding: 0.3rem 2.5rem;
  font-weight: bold;
  font-size: 23.5px;
}

.features {
  padding: 3rem 1rem 1rem 1rem;
  text-align: center;
  position: relative;
}

.feature {
  padding: 0 1rem;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  height: 293px;
  width: 5px;
  background-color: #f4e17b;
  border-radius: 5px;
}

.feature-icon img {
  height: 144px;
  margin-bottom: 1rem;
}

.feature h5 {
  font-size: 32px;
  font-weight: 600;
}

.feature p {
  font-size: 15px;
  font-weight: 400;
}

.double-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.double-line .line-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.double-line .line-group span {
  display: block;
  height: 3px;
  width: 441px;
  background-color: #f4e17b;
  border-radius: 5px;
}

.double-line .line-group-2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.double-line .line-group-2 span {
  display: block;
  height: 3px;
  width: 441px;
  background-color: #f4e17b;
  border-radius: 5px;
}

.double-line .center-text {
  margin: 0 20px;
  font-size: 60px;
  font-weight: 600;
}

/* about mysunar styling end */

/* rundown styling start */
.rundown {
  background-color: #fcf7ee;
  color: #3c1d47;
}

.divider-line {
  border-top: 2px solid #d6b74e;
  flex: 1;
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.title-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #471c49;
}

.age-title h5 {
  font-size: 40px;
  font-weight: 600;
}

.age-group-selector {
  background-color: #3c1d47;
  color: #f6ea8c;
  border-radius: 16px;
  padding: 20px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-size: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 320px;
  border: 3px solid #f7eeab;
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.2);
}

.age-group-selector img {
  height: 30px;
  width: 30px;
}

.arrow {
  color: #3c1d47;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.percentage-box {
  background-color: #c7b39a;
  border-radius: 12px;
  font-size: 60px;
  font-weight: 600;
  color: #3f1840;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  margin-top: 6px;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: inset 0 4px 4px 0px rgba(0, 0, 0, 0.2);
}

#gridContainer {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 16px;
  width: fit-content;
}

@media (max-width: 768px) {
  #gridContainer {
    grid-template-columns: repeat(5, 1fr);
  }

  .title-section h2 {
    font-size: 22px;
    font-weight: 600;
  }

  .age-title h5 {
    font-size: 30px;
  }

  .age-group-selector {
    padding: 14px;
    font-size: 20px;
  }

  #gridContainer {
    gap: 10px;
  }

  .grid-box {
    width: 45px;
    height: 45px;
  }

  .title-section {
    margin-bottom: 0px;
  }

  .percentage-box {
    font-size: 50px;
  }
}

.grid-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.grid-dark {
  background-color: #3c1d47;
}

.grid-light {
  background-color: #c7b39a;
}

/* rundown styling end */

/* review styling start */
.review {
  background-color: #fdf7ef;
}

.title-bar {
  font-size: 40px;
  font-weight: 600;
}

.testimonial-card {
  background: #fff;
  border: 2px solid #f7d876;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card strong {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-card p,
small {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
}

.testimonial-card .profile {
  width: 40px;
  height: 40px;
  background-color: #47b66e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.testimonial-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #3c1c4d;
}

.arrow-left {
  left: -20px;
}

.arrow-right {
  right: -20px;
}

.custom-carousel-arrow img {
  height: 24px;
  width: 24px;
}

@media (max-width: 768px) {
  .arrow-left {
    left: 0;
  }

  .arrow-right {
    right: 0;
  }
}

/* review styling end */

/* what make us start */
.why-safe {
  background-color: #fff7f0;
  color: #3a2b47;
}

.content-block p {
  font-size: 16px;
  font-weight: 400;
  color: #481c4a;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 40px;
}

.content-block {
  border-radius: 12px;
  margin-bottom: 2rem;
}

.content-block .col-md-6,
.content-block .col-12 {
  padding: 1rem;
}

.highlight-title {
  color: #5c2e91;
  font-weight: 600;
  font-size: 26px;
}

.title-line {
  height: 1px;
  background-color: #dfca85;
  width: 100%;
  margin: 8px 0px 8px;
  border-radius: 2px;
}

/* 
.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
} */

.equal-height {
  min-height: 240px;
}

/* what make us end */

/* city styling start */
.city {
  background-color: #3e1a50;
  color: #f4d07f;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
}

.city-circle {
  /* border: 2px solid #f4d07f; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.city-icon img {
  height: auto;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.house-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  display: inline-block;
  background-image: url("./assest/home.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* .carousel-wrapper {
  position: relative;
} */

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-control-prev {
  left: -10px;
}

.carousel-control-next {
  right: -10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #f4d07f;
  border-radius: 50%;
}

/* Fix arrows on mobile */
@media (max-width: 767.98px) {
  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

/* city styling end */

/* our-medicating-earing styling start */
.our-medicating-earing {
  background-color: #fef7ed;
}

.product-image {
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #e6c45a;
  overflow: hidden;
  margin: auto;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-top {
  background-color: #3e1452;
  color: #f8f18f;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  position: absolute;
  top: -5px;
  right: 60px;
  border: 1px solid #efda6f;
}

.product-name {
  background-color: #d4c674;
  border-radius: 50px;
  padding: 2px 60px;
  font-size: 21.5px;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.1),
    inset 0 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.product-sub-name {
  font-size: 15px;
  font-weight: 500;
}

.price-card {
  background-color: #3e1452;
  color: #fff;
  border-radius: 0.75rem;
  padding: 16px 10px;
  max-width: 280px;
  margin: 1rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 14px;
}

.price-description-gap .price {
  margin-bottom: 4px;
  /* or any value that works */
}

.price-description-gap .price {
  margin-bottom: 4px;
  /* or any value that works */
}

.price-card .price {
  color: #f8f292;
}

.price-card small {
  font-size: 8px;
  font-weight: 400;
  line-height: 1.2px;
  font-style: italic;
}

.price-card .price-desc {
  font-size: 8px;
  font-weight: 400;
  font-style: italic;
}

.price-card .btn {
  font-size: 11px;
  font-weight: 500;
  background-color: #d4c674;
  color: #3e1452;
  border-radius: 30px;
  padding: 4px 12px;
}

.see-all-box {
  background-color: #3e1452;
  color: #f8f292;
  border-radius: 20px;
  padding: 10px 50px;
  font-size: 22.5px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.see-all-btn {
  background-color: #d4c674;
  color: #3e1452;
  padding: 3px 18px;
  border-radius: 2rem;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.1),
    inset 0 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev img {
  width: 24px;
  height: 24px;
}

.carousel-control-next img {
  width: 24px;
  height: 24px;
}

/* our-medicating-earing styling end */

/* health benifts start */
.nav-change img {
  height: 25px;
  width: 25px;
}

.nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.nav-wrapper::-webkit-scrollbar {
  display: none;
}

#nav-tabs {
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
}

.nav-pills .nav-link {
  position: relative;
  padding: 0.5rem 1rem 0.8rem;
  font-weight: 500;
  font-size: 16px;
  color: #4b004b;
  background-color: transparent !important;
  white-space: nowrap;
  border-radius: 0 !important;
}

.nav-pills .nav-link.active {
  color: #4b004b !important;
  z-index: 1;
}

.nav-pills .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background-color: #ddcd76;
}

.benefit-title {
  background-color: #4b004b;
  color: #f5de85;
  font-weight: 600;
  padding: 2px 30px;
  border-radius: 20px;
  display: inline-block;
  font-size: 36px;
}

.benefit-text {
  color: #245e7e;
  font-size: 1.05rem;
}

.health-benifits .custom-tab {
  position: relative;
  padding: 0.5rem 1rem;
  color: #4a2b73 !important;
  font-weight: 500;
  border: none;
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
}

.health-benifits .custom-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 3px;
  width: 40%;
  /* Adjust this value as needed */
  background-color: #ddcd76;
  border-radius: 3px;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .benefit-title {
    font-size: 24px;
  }

  .nav-pills .nav-link {
    font-size: 14px;
  }

  #nav-tabs {
    gap: 2px;
  }
}

/* health benifits end */

/* circle of hygine start */
.hygine-sub-title {
  font-size: 25px;
  color: #4d1f4d;
  font-weight: 600;
}

.circle-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d9c778;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-card {
  background-color: #3b0a53;
  border: 2px solid #d9c778;
  border-radius: 1.5rem;
  padding: 2rem;
  height: 160px;
  color: #fef4b7;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: 100%;
  z-index: 1;
  /* Ensure it's below arrows */
}

.step-ring-outer {
  background-color: transparent;
  border: 3px solid #c4b659;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.step-ring-inner {
  width: 100%;
  height: 100%;
  background-color: #faf5e9;
  border-radius: 50%;
  border: 5px solid #3b0a53;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.step-circle-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: #8a5624;
}

.step-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-content p {
  font-size: 0.95rem;
  margin: 0;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: #c5b568;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  /* Makes sure arrows stay on top */
}

.nav-arrow img {
  width: 24px;
  height: 24px;
}

.nav-arrow.left {
  left: -10px;
}

.nav-arrow.right {
  right: -10px;
}

/* Mobile styles */
@media (max-width: 767px) {
  .desktop-view {
    display: none !important;
  }

  .mobile-step .circle-wrapper {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
  }

  .mobile-step .circle-image {
    max-width: 100%;
  }

  .mobile-step .step-card {
    margin-top: 1.5rem;
    text-align: center;
  }

  .mobile-step .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .mobile-step .nav-arrow.left {
    left: -17px;
  }

  .mobile-step .nav-arrow.right {
    right: -17px;
  }

  .faq-card p,
  h5 {
    font-size: 12px;
  }
}

/* Desktop only */
@media (min-width: 768px) {
  .mobile-step {
    display: none !important;
  }
  .faq-card p,
  h5 {
    font-size: 12px;
  }

}

/* circle of hygine start */

/* our driving forecs start */
.our-driving-forces {
  background-color: #3e1452;
}

.question-box {
  background-color: #ffebf8;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  color: #3e1452;
  font-size: 30px;
  font-weight: 600;
  border: #e6c45a solid 2px;
}

.highlight-text {
  color: #cec376;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-top: 6rem;
}

.link-style {
  color: #e6c45a;
  text-decoration: underline;
  font-size: 27px;
  font-weight: 400;
  display: block;
  text-align: center;
  margin-top: 1rem;
}

/* our drivinf forecs end */

/* industry start */
.industry {
  background-color: #fef7ed;
}

.section-title-industry {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 40px;
  font-weight: 600;
  color: #4d1f4e;
}

.section-title-industry::before,
.section-title-industry::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #e6c45a;
  margin: 0 1rem;
}

.logo-box {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-box img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
}

.logo-caption {
  margin-top: 1rem;
  font-size: 25px;
  font-weight: 600;
  color: #3e1452;
}

/* industry start */

/* questions start */
.questions {
  background-color: #3f1840;
}

.subtitle-question {
  color: #dfca85;
}

.accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  color: #e5d670;
  background-image: none !important;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
  font-size: 1.5rem;
  color: #e5d670;
}

.accordion-button {
  box-shadow: none !important;
}

/* Set purple background for all accordion headers */
.accordion-button {
  background-color: #3f1840 !important;
  color: #e5d670;
  border: none;
  font-size: 22px;
  font-weight: 500;
}


/* Remove default white background on active accordion */
.accordion-button:not(.collapsed) {
  background-color: #3f1840 !important;
  color: #e5d670;
  box-shadow: none;
}

/* Optional: adjust accordion body if needed */
.accordion-body {
  background-color: #3f1840;
  color: #cec376;
  font-size: 18px;
  font-weight: 400;
}

/* Optional: change + icon color */
.accordion-button::after {
  filter: brightness(0) invert(1);
  /* makes icon white/yellowish */
}

.accordion-item {
  border-width: 0px 0px 1px 0px;
  border-color: #d4c674;
  border-style: solid;
}

/* questions end */

/* home page styling end */

/* modal styling start */
.save-time .modal-content {
  background-color: #3f0a4b !important;
  color: #faf4b0;
  border-radius: 40px;
  border: 4px solid #d3cb72;
  padding: 2rem;
  text-align: center;
  box-shadow: none;
}

.save-time .modal-content h4 {
  font-size: 30px;
  font-weight: 600;
}

.save-time .modal-content h5 {
  font-size: 25px;
  font-weight: 500;
}

.btn-outline-light-custom,
.btn-filled-gold,
.btn-toggle {
  border-radius: 20px;
  padding: 6px 16px;
}

.btn-outline-light-custom {
  color: #d3cb72;
  border: 1px solid #d3cb72;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

.btn-outline-light-custom:hover {
  background-color: #d3cb72;
  color: #542055;
}

.btn-filled-gold {
  background-color: #d3cb72;
  color: #3f0a4b;
  border: none;
  font-size: 15px;
  font-weight: 600;
}

.description {
  font-size: 20px;
}

.btn-filled-gold:hover {
  background-color: #d3cb72;
  color: #3f0a4b;
}

.btn-active {
  background-color: #fff9c4 !important;
  color: #3f0a4b !important;
  font-size: 15px;
  font-weight: 600;
  padding: 3px 50px;
}

.btn-inactive {
  border: 1px solid #fff9c4;
  color: #fff9c4;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  padding: 3px 50px;
}

.btn-inactive:hover {
  background-color: #d3cb72;
  color: #3f0a4b;
}

.input-gold {
  background-color: #fff9c4;
  color: #3f0a4b;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  text-align: center;
}

.age-container {
  max-height: 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.age-option {
  background-color: transparent;
  color: #fff9c4;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

.age-option.selected {
  background-color: #fff9c4;
  color: #3f0a4b;
  border-radius: 20px;
  padding: 1px 20px;
}

#unitSelector {
  background-color: #552056;
  color: #d1c871;
  border-radius: 12px;
  border: none;
  padding: 5px 8px;
  margin-left: 1rem;
}

.blurred {
  filter: blur(8px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  transition: filter 0.3s ease;
}

.unblurred {
  filter: none;
  pointer-events: auto;
  -webkit-user-select: none;
  user-select: auto;
}

.modal a {
  font-size: 15px;
  color: #fff9c4;
  text-decoration: none;
  cursor: pointer;
}

.scroll-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-arrow {
  cursor: pointer;
  font-size: 18px;
  color: #f8f292;
  padding: 4px 8px;
  user-select: none;
}

.custom-select {
  background-color: #fff9c4;
  color: #3f0a4b;
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg"%3E%3Cpolygon points="0,0 140,0 70,80" fill="%233f0a4b"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

/* moodal styling end */

/* age gallery start */
.back-btn {
  color: #621f64;
  font-size: 15px;
  font-weight: 500;
}

.age-info h2 {
  font-size: 30px;
  font-weight: 600;
}

.age-info p {
  font-size: 15px;
  color: #380a52;
  max-width: 600px;
}

.age-paragraph p {
  font-size: 20px;
  font-weight: 600;
}

.age-carousel {
  background-color: #3c1d47;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.age-carousel img {
  width: 24px;
  height: 24px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-item-custom {
  flex: 0 0 calc(100vw / 4.95);
}

.carousel-item-custom img {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.arrow-left {
  left: 1rem;
}

.arrow-right {
  right: 1rem;
}

.content-box {
  border: 3px solid #f7eeab;
  background: #fff8e8;
  border-radius: 24px;
}

.content-box img {
  border-radius: 12px;
}

.custom-hr {
  border: none;
  border-top: 2px solid #411b42;
  /* Replace with your desired hex color */
  opacity: 1;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.mosaic-item {
  position: relative;
  border: 3px solid #f7eeab;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  height: 100%;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #f6ea8c;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 600;
}

.faq-card,
.cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  height: 100%;
  border: 3px solid #f7eeab;
  border-radius: 12px;
}

.faq-card {
  background: #f3d2a5;
  color: #3c1d47;
}

.faq-card p,
h5 {
  font-size: 25px;
}

.cta-card {
  background: #3c1d47;
  color: #f6ea8c;
}

.faq-card a,
.cta-card a {
  color: inherit;
  text-decoration: underline;
}

.faq-card a {
  font-size: 25px;
}

.row-span-2 {
  grid-row: span 2;
}

.col-span-2 {
  grid-column: span 2;
}

.h-250 {
  height: 250px;
}

.h-520 {
  height: 520px;
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* age gallery end */

/* start navbar */

/* Base Styles */

/* Modal Styles */
.modal-content {
  border-radius: 20px;
  background: #fdf0d6;
  border: 2px solid #d3bb60;
  box-shadow: 0px 0px 15px 0px #d3bb60 inset;
}

.modal-header {
  border-bottom: none;
}

.form-control {
  border-radius: 6px;
  font-size: 14px;
}

.form-text {
  font-size: 14px;
  color: #999;
}

.btn-custom {
  background-color: #3f1940;
  color: #fff;
  padding: 6px 24px;
  border-radius: 20px;
}

.nav-tabs {
  border-bottom: none;
}

#login-tab,
#register-tab {
  background: transparent;
  color: #3d1a40 !important;
  font-weight: 500;
  transition: 0.3s;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

#login-tab.active,
#register-tab.active {
  border-bottom-color: #3d1a40;
}

/* Desktop Navbar Styles */
.navbar-custom {
  background-color: rgba(65, 26, 66, 1);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}

.nav-link {
  color: rgba(255, 255, 255, 1) !important;
  font-size: 14px;
  margin: 0 10px;
}

.nav-icon {
  height: 28px;
  width: auto;
  margin: 0 10px;
}

.divider {
  width: 1px;
  height: 28px;
  background: white;
  margin: 0 10px;
}

.btn-book {
  background-color: rgba(244, 225, 123, 1);
  border-radius: 25px;
  padding: 6px 16px;
  font-weight: 400;
  color: rgba(63, 25, 64, 1);
  font-size: 14px;
  line-height: 100%;
  white-space: nowrap;
}

.dropdown-menu-custom {
  background-color: rgba(65, 26, 66, 1);
  border-radius: 30px;
  border: 1px solid rgba(245, 227, 127, 1);
  padding: 10px 20px;
  font-size: 14px;
}

.dropdown-menu-custom .dropdown-item {
  color: white;
  padding: 8px 0;
}

.dropdown-menu-custom .dropdown-item:hover,
.dropdown-menu-custom .dropdown-item:focus,
.dropdown-menu-custom .dropdown-item.active {
  background-color: rgba(65, 26, 66, 1) !important;
  color: rgba(255, 255, 255, 1) !important;
  box-shadow: none !important;
}

.btn-book:hover,
.btn-book:focus {
  background-color: rgba(244, 225, 123, 1) !important;
  color: rgba(63, 25, 64, 1) !important;
  box-shadow: none !important;
}

/* Mobile Navbar (Top Bar) Styles */
.navbar-custom.mobile-top-nav {
  background-color: rgba(65, 26, 66, 1);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
}

.mobile-top-nav .navbar-brand {
  margin-right: auto;
  padding-left: 0;
}

.mobile-top-nav .navbar-brand img {
  height: 26px !important;
}

.mobile-top-nav .nav-links-left {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-start;
  gap: 10px;
  margin-left: 10px;
}

.mobile-top-nav .nav-link {
  color: rgba(255, 255, 255, 1) !important;
  font-size: 12px;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-top-nav .nav-link.faqs-arrow::after {
  display: inline-block;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  color: rgba(255, 255, 255, 1);
  vertical-align: middle;
  transition: transform 0.2s ease-in-out;
}

.mobile-top-nav .nav-link.faqs-arrow.active::after {
  transform: rotate(-180deg);
}

.mobile-top-nav .nav-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.mobile-top-nav .btn-book {
  background: none !important;
  color: rgba(244, 225, 123, 1) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 0.25rem;
  font-size: 12px;
  width: auto;
  min-width: 0;
  margin-left: 0.125rem;
  margin-right: 0;
  box-shadow: none !important;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}

.mobile-top-nav .btn-book svg {
  color: rgba(244, 225, 123, 1) !important;
  margin-left: 0.125rem !important;
  stroke: #f4e17b !important;
  width: 10px;
  height: 10px;
}

/* Secondary Mobile Menu (Accordion) Styles */
.mobile-expanded-menu {
  background-color: rgba(65, 26, 66, 1);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 0;
  margin-top: -1px;
  z-index: 999;
  display: none;
  overflow: hidden;
}

.mobile-expanded-menu.show {
  display: block;
}

.mobile-expanded-menu .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.mobile-expanded-menu .accordion-header {
  margin-bottom: 0;
}

.mobile-expanded-menu .accordion-button {
  background-color: transparent;
  color: rgba(255, 255, 255, 1) !important;
  font-size: 12px;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid rgba(232, 200, 89, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease-in-out;
  box-shadow: none !important;
}

.mobile-expanded-menu .accordion-button::after {
  display: none;
}

.mobile-expanded-menu .accordion-button .accordion-arrow {
  display: inline-block;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  color: rgba(255, 255, 255, 1);
  vertical-align: middle;
  transition: transform 0.2s ease-in-out;
  margin-left: 0.255em;
}

.mobile-expanded-menu .accordion-button:not(.collapsed) .accordion-arrow {
  transform: rotate(-180deg);
}

.mobile-expanded-menu .accordion-body {
  padding: 0;
  background-color: rgba(65, 26, 66, 1);
}

.mobile-expanded-menu .dropdown-item {
  color: rgba(255, 255, 255, 1);
  padding: 8px 30px;
  font-size: 12px;
  border-bottom: 1px solid rgba(232, 200, 89, 1);
  transition: all 0.2s ease-in-out;
  border-left: 3px solid transparent;
}

.mobile-expanded-menu .accordion-item:last-child .accordion-button {
  border-bottom: none;
}

.mobile-expanded-menu .dropdown-item:last-child {
  border-bottom: none;
}

.mobile-expanded-menu .dropdown-item:hover,
.mobile-expanded-menu .dropdown-item:focus {
  background-color: transparent !important;
  color: rgba(244, 225, 123, 1) !important;
  border-left: 3px solid rgba(244, 225, 123, 1);
  padding-left: 27px;
  box-shadow: none !important;
}

.mobile-expanded-menu .accordion-body .list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* Badge Styles */
.icon-with-badge {
  position: relative;
  display: inline-block;
}

.icon-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  height: 16px;
  width: 16px;
  font-size: 0.6em;
  font-weight: bold;
  color: #3f1940;
  background-color: #d3bb60;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mini Cart Dropdown Styles */
.navbar-custom .cart-dropdown-wrapper {
  position: relative;
}

.cart-dropdown {
  width: min(360px, 95vw);
  z-index: 1050;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Utility Classes */
.bg-main {
  background-color: rgba(255, 246, 232, 1);
}

.border-gold {
  border: 2px solid rgba(244, 225, 123, 1);
}

.text-deep {
  color: rgba(65, 26, 66, 1);
}

.bg-deep {
  background-color: rgba(65, 26, 66, 1);
}

.text-gold {
  color: rgba(244, 225, 123, 1);
}

.bg-gold {
  background-color: rgba(244, 225, 123, 1);
}

/* Responsive Correction for Mid-sized Desktops */
@media (max-width: 1399.98px) and (min-width: 992px) {

  .navbar-custom .nav-link,
  .navbar-custom .btn-book {
    font-size: 12px;
  }

  .navbar-custom .fs-5 {
    font-size: 12px !important;
  }

  .navbar-custom .nav-link {
    margin: 0 6px;
  }

  .navbar-custom .divider {
    margin: 0 6px;
  }

  .navbar-custom .mx-2 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .navbar-custom .heart-icon,
  .navbar-custom .cart-icon {
    transform: scale(0.9);
  }

  .navbar-custom .btn-book {
    padding: 6px 12px;
  }
}

/* Hide mobile elements on desktop */
@media (min-width: 992px) {

  .mobile-top-nav,
  .mobile-expanded-menu {
    display: none !important;
  }
}

/* Hide desktop elements on mobile */
@media (max-width: 991.98px) {
  .navbar-custom:not(.mobile-top-nav) {
    display: none !important;
  }

  body {
    font-size: initial;
  }

  /* Mobile Badge Notification Styles */
  .icon-badge {
    height: 13px;
    /* Smaller height */
    width: 13px;
    /* Smaller width */
    font-size: 0.5em;
    /* Smaller font size */
    top: -1px;
    /* Adjust position */
    right: -1px;
    /* Adjust position */
  }
}

/* --- RESPONSIVE FIX FOR SMALL MOBILE (iPhone SE, XR, etc.) --- */
@media (max-width: 450px) {

  /* Mobile Top Navigation Adjustments */
  .navbar-custom.mobile-top-nav {
    padding: 0.4rem 0.6rem;
    /* Slightly reduce overall padding */
  }

  .mobile-top-nav .navbar-brand img {
    height: 22px !important;
    /* Slightly smaller logo for very small screens */
  }

  .mobile-top-nav .nav-links-left {
    gap: 8px;
    /* Reduce gap between left-aligned links */
    margin-left: 8px;
    /* Adjust left margin */
  }

  .mobile-top-nav .nav-link {
    font-size: 11px;
    /* Slightly smaller font size for navigation links */
    gap: 3px;
    /* Reduce gap between text and icon if applicable */
  }

  .mobile-top-nav .nav-icons-wrapper {
    gap: 4px;
    /* Reduced gap between the icons on the right */
  }

  .mobile-top-nav .btn-book {
    font-size: 10px;
    /* Smaller font for "Book Now" button */
    padding: 0 3px;
    /* Further adjust padding */
    margin-left: 0.1rem;
    /* Fine-tune margin */
  }

  .mobile-top-nav .btn-book svg {
    width: 9px;
    /* Smaller icon within the "Book Now" button */
    height: 9px;
  }

  /* Secondary Mobile Menu (Accordion) Adjustments */
  .mobile-expanded-menu .accordion-button {
    font-size: 11px;
    /* Smaller font for accordion headers */
    padding: 0.5rem 0.8rem;
    /* Adjust padding */
  }

  .mobile-expanded-menu .dropdown-item {
    font-size: 11px;
    /* Smaller font for dropdown items */
    padding: 6px 25px;
    /* Adjust padding */
  }
}

/* end navbar */

@media screen and (max-width: 767px) {

  .double-line .line-group span,
  .double-line .line-group-2 span {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {

  .double-line .line-group span,
  .double-line .line-group-2 span {
    width: 100% !important;
  }
}

/* Wishlist CSS */