:root {
  --primary: #2d3c6a;
  --secondary: #4e6cb3;
  --accent: #e6eaf5;
  --text: #222;
  --gray: #888;
  --border: #e0e0e0;
  --font: 'Montserrat', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--text);
  margin: 0;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  background: #fff;

  padding: 16px 0 0 0;
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2d3c6a;
  letter-spacing: 1px;
}

.logo img {
  width: 20%;
}

.handle-logo {
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  width: 100%;
}

nav a {
  text-decoration: none;
  margin: 0 18px;
  font-weight: 600 !important;
  font-size: 1rem;
  transition: color 0.2s;
  letter-spacing: 1px;
}

.navbar-nav li a {
  color: #000;
}

nav a:hover {
  color: #4e6cb3;
}

.navbar-nav li {
  position: relative;
}


.navbar-nav li:first-child::before,
.navbar-nav li:last-child::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 1px;
  background: #000;
  bottom: 19px;

}

.navbar-nav li:first-child::before {
  left: -150px;
}

.navbar-nav li:last-child::after {
  right: -150px;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 2px 16px rgba(66, 105, 178, 0.08);
  animation: slideDown 1s;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

body.header-fixed-padding {
  padding-top: 179px;
  /* adjust to header height */
}

.realborder {
  padding: 6px 0px;
}

.realborder img {
  width: 100%;
}

.topBannerIcon {
  position: absolute;
  top: -20px;
  right: -60px;
  width: 25%;
  z-index: 999;
}

.topBannerIcon img {
  width: 100%;
}

.bannerImage-wrapper {
  height: 400px;
  border-radius: 0px 100px 0px 100px;
}

.topOwlBanner .owl-dots {
  position: absolute;
    /*display: flex;*/
  align-items: center;
  left: calc(50% - 63px);
}

.topOwlBanner .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  display: block;
  margin-right: 6px;
  border-radius: 100%;
  background-color: #4269b25e;
}

section.topOwlBanner {
  padding-bottom: 70px !important;
}

label.form-label sup {
  color: red;
}

.topOwlBanner .owl-dots .owl-dot.active span {
  background: #4269b2;
}

.owl-nav button {
  width: 15%;
  position: absolute;
}

.owl-nav button img {
  width: 100%;
}

.owl-nav button.owl-next {
  transform: rotate(180deg);
  right: 34%;
  top: 7px;
}

.owl-nav {
  position: relative;
  bottom: 0px;
  right: 0px;
  z-index: 999;
  height: 100px;
  top: 0px;
}

.owl-nav button.owl-prev {
  left: 34%;
}

.testimonialContentWrapper {
  border-right: 1px solid #4269b2;
  padding: 0px 20px;
  min-height: 230px;
}

.testimonialContentWrapperShortName {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
}

/* owl */
#requestForm .form-control {
  border-radius: 0px;
  border-color: #000;
}

.bannerImage-wrapper img {
  height: 100%;
  border-radius: 0px 100px 0px 100px;
}

.hero {
  background: var(--accent);
  padding: 32px 0 16px 0;
  position: relative;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}

.hero-img {
  position: relative;
  flex: 2;
  min-width: 260px;
}

.hero-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 260px;
}

.hero-bubble {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 24px 24px 24px 0;
  padding: 24px 32px;
  max-width: 320px;
  box-shadow: 0 4px 24px rgba(45, 60, 106, 0.08);
}

.hero-bubble h2 {
  font-size: 1.3rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.hero-bubble p {
  margin: 0;
  font-size: 1rem;
}

svg.bi.bi-arrow-right,
svg.bi.bi-arrow-left {
  fill: #4267B2;
}

.carousel-indicators [data-bs-target] {
  background-color: #4269b2;
}

.hero-form {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  gap: 2px;
}

.hero-form input {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
}

.hero-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.hero-form button:hover {
  background: var(--secondary);
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--primary);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--gray);
  border-radius: 50%;
  display: inline-block;
  transition: background 0.2s;
}

.carousel-dots .dot.active {
  background: var(--primary);
}

.understanding {
  background: #fff;
  padding: 48px 0 32px 0;
}

.understanding-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.understanding-img img {
  width: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.understanding-flex>div:last-child {
  flex: 1;
}

.understanding h2 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.understanding p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--secondary);
}

.bubble-shape {
  width: 200px;
  height: 200px;
  background-color: #4267B2;
  /* Your blue color */
  clip-path: path("M0,0 Q0,100 0,200 Q100,200 200,200 Q200,100 200,0 Q100,0 0,0 Z");
}

/* Symptoms Section Redesign */
.symptoms {
  background: #e6eaf5;
  padding: 40px 0;
}

.symptoms-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.symptoms-flex>div:first-child {
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(45, 60, 106, 0.06);
  padding: 32px 24px 18px 24px;
  margin-bottom: 24px;
}

.symptoms-flex h3 {
  color: #2d3c6a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
}

.symptoms-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin: 0 0 18px 0;
}

.symptoms-table>div {
  background: #f7f9fc;
  border-radius: 10px;
  padding: 12px 10px;
  min-width: 0;
  box-shadow: none;
}

.symptoms-table h4 {
  margin: 0 0 8px 0;
  color: #4e6cb3;
  font-size: 1.05rem;
  font-weight: 600;
}

.gray-box {
  background-color: #eef1f8;
  border-radius: 100px;
  padding: 50px;
}

.nurse-img {
  position: relative;
  top: 80px;
  z-index: 9;
  margin-bottom: 50px;
}
.yashinameAndDeg {
  position: absolute;
  bottom: -20px;
  left: 40px;
}

.symptoms-table ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.98rem;
}

.symptoms-note {
  background: #e6eaf5;
  border-left: 4px solid #2d3c6a;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.98rem;
  color: #888;
  margin-top: 12px;
}

.symptoms-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.symptoms-img img {
  width: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(45, 60, 106, 0.08);
}

.holistic {
  background: #fff;
  padding: 48px 0 32px 0;
}

.holistic h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.holistic-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.symptoms-tables p:first-letter {
  /* background: #c9e5dc; */
  /* padding: 4px; */
  /* border-radius: 10px 0px 10px 0px; */
  /* border-radius: 70% 100% 100% 100% / 100% 70% 100% 100%; */
}

.symptoms-tables p {
  font-weight: bold;
  position: relative;
  z-index: 9;
}

.symptoms-tables p img {
  position: absolute;
  width: 45px;
  height: auto;
  z-index: -1;
  left: -15px;
  top: -15px;
}

.symptoms-wrapper {
  margin-bottom: 50px;
}

.symptoms-tables.purpal p:before {
  background: #d6cbe7;
}

.holistic-video video {
  width: 260px;
  border-radius: 12px;
  background: #000;
}

.holistic-flex>div:last-child {
  flex: 1;
}

.holistic p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.excellence {
  background: var(--accent);
  padding: 40px 0;
}

.excellence-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.excellence-img img {
  width: 180px;
  border-radius: 24px;
  object-fit: cover;
}

.excellence-flex>div:last-child {
  flex: 1;
}

.excellence h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.excellence p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.facilities {
  background: #fff;
  padding: 48px 0 32px 0;
}

.facilities h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.manageborder {
  position: relative;
}

.manageborder:after {
  content: '';
  position: absolute;
  height: 50px;
  width: 100%;
  /* background: red; */
  bottom: -48px;
  border: 1px solid #4269b2;
  border-bottom: 0px;
  border-right: 0px;
  border-radius: 40px 0px 0px 0px;
}

.carousel {
  position: relative;
  width: 100%;
  /* max-width: 700px; */
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s;
}

.carousel-item {
  min-width: 200px;
  flex: 0 0 200px;
  margin-right: 16px;
}

.carousel-item img {
  width: 100%;
  /* border-radius: 12px;
    object-fit: cover;
    height: 120px; */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
}

.carousel-btn.prev {
  left: -16px;
}

.carousel-btn.next {
  right: -16px;
}

.testimonials {
  background: var(--accent);
  padding: 40px 0;
}

.testimonials h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(45, 60, 106, 0.04);
  padding: 18px 16px;
  flex: 1;
  min-width: 220px;
  font-size: 1rem;
}

.testimonial b {
  color: var(--secondary);
  font-size: 1.1rem;
}

.testimonial a {
  color: var(--primary);
  font-size: 0.95rem;
  text-decoration: underline;
}

.team {
  background: #fff;
  padding: 48px 0 32px 0;
}

.team h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.team-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  max-width: 140px;
  background: var(--accent);
  border-radius: 16px;
  padding: 16px 8px;
}

.team-member img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.team-member b {
  color: var(--primary);
  font-size: 1rem;
}

.team-member div {
  font-size: 0.95rem;
  color: var(--gray);
}

.managefooter {
  background: #e6eaf5;
  padding: 32px 0;
  margin-top: 200px !important;
  /* border-top: 1px solid #e0e0e0; */
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3c6a;
  letter-spacing: 1px;
}

.footer-logo img {
  width: 20%;
}

.footer-maps {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 12px;
}

.footer-maps>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.95rem;
  color: #2d3c6a;
  max-width: 180px;
}

.footer-maps img {
  width: 150px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 6px;
}

/* Holistic video dotted border */
.holistic-video-thumb .border-dotted {
  border: 3px dotted #bfc5d2;
  box-sizing: border-box;
}

.holistic-video-thumb .play-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Four Decades floating bubbles */
.four-decades-img-wrap {
  position: relative;
}

.floating-bubbles {
  pointer-events: none;
}

/* Our Facilities carousel styles */
.facility-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(66, 105, 178, 0.04);
}

.facilities-arrow {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  transition: transform 0.2s;
}

.facilities-arrow:hover {
  transform: scale(1.1);
}

.facility-img-wrapper,
.facility-img-wrapper img {
  border-radius: 40px 0px 40px 0px;
}


.arrow-svg {
  vertical-align: middle;
}

/* Testimonials section styles */
.testimonial-col {
  padding: 32px 24px 16px 24px;
}

.testimonial-link {
  color: #4269b2;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.2s;
}

.testimonial-link:hover {
  text-decoration: underline;
}

.chevron {
  font-size: 1.2em;
  margin-left: 2px;
}

.testimonial-text {
  font-size: 1.08rem;
  color: #222;
}

/* Testimonials section custom styles */
.testimonial-col {
  padding: 0 24px 0 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}

.border-end-custom {
  border-right: 1.5px solid #c7d3ea;
}

.testimonial-col:last-child,
.border-end-custom:last-child {
  border-right: none;
}

.testimonial-text {
  font-size: 1.25rem;
  color: #222;
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-link {
  color: #222;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
}

.testimonial-link:hover {
  color: #4269b2;
  text-decoration: underline;
}

.chevron-down-svg {
  display: block;
  margin: 2px auto 0 auto;
}

/* Our Team section custom styles */
.team-member-col {
  max-width: 220px;
  flex: 1 1 180px;
  margin: 0 10px;
  text-align: center;
}

.team-blob-img {
  width: 180px;
  /* height: 180px; */
  object-fit: cover;
  border-radius: 170px 120px 130px 0px;
  background: #f8fafc;
  margin-bottom: 12px;
}

/* Locations/maps section custom styles */
.location-map-img {
  width: 340px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  background: #f8fafc;
  margin-bottom: 18px;
}

img.svg-replace {
  width: 12%;
}

.sticky-call-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: #4269b2;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(66, 105, 178, 0.18);
  padding: 12px 28px 12px 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: filter 0.2s, box-shadow 0.2s;
}

.sticky-call-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(66, 105, 178, 0.28);
  color: #fff;
}

.sticky-call-btn.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.box-border {
  border-top: 1px solid #4269b2;
  border-right: 1px solid #4269b2;
  border-left: 1px solid #4269b2;
  height: 60px;
  border-radius: 90px 70px 0px 0px;
  width: 80%;
  margin: 0 auto 10px;
  position: relative;
}

.box-border:before {
  content: '';
  position: absolute;
  height: 50px;
  background: #4269b2;
  width: 1px;
  left: 50%;
}

.comonMainHeading {

  max-width: 100%;
}


/* Fix the height of the carousel and its slides */
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 420px;
  /* or whatever height matches your design */
  min-height: 320px;
}

#heroCarousel .carousel-item>div,
#heroCarousel .carousel-item img {
  height: 100%;
  object-fit: cover;
}

/* Fix the height of the testimonial carousel and its slides */
#testimonialCarousel .carousel-inner,
#testimonialCarousel .carousel-item {
  height: 340px;
  /* Adjust as needed for your design */
  min-height: 280px;
}

#testimonialCarousel .carousel-item .row {
  height: 100%;
  width: 100%;
}

#testimonialCarousel .testimonial-col {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.borderBottom {
  width: 40%;
  height: 2px;
  background: #4269b2;
  margin: 10px 0px;
}

/* Fix the height of the team carousel and its slides */
#teamCarousel .carousel-inner,
#teamCarousel .carousel-item {
  height: 340px;
  /* Adjust as needed for your design */
  min-height: 280px;
}

#teamCarousel .carousel-item .row {
  height: 100%;
  width: 100%;
}

#teamCarousel .team-member-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sideThankyoutext {
  position: relative;
  margin-left: 50px;
}

.ThankWrappericon {
  position: absolute;
  top: -248px;
  left: -90px;
  width: 100%;
}

.ThankWrappericon img {
  width: 70%;
}

.requesttext {
  display: flex;
  align-items: center;
  justify-content: center;
}

.requesttext span {
  font-size: 26px !important;
}

.desktop-hidden {
  display: none !important;
}


@media (max-width: 900px) {
  .header-wrapperone {
    flex-direction: row !important;
  }

  .container {
    max-width: 98vw;
  }

  .hero-container,
  .understanding-flex,
  .symptoms-flex,
  .holistic-flex,
  .excellence-flex,
  .footer-container {
    flex-direction: column;
    gap: 24px;
  }

  .carousel {
    max-width: 98vw;
  }

  .symptoms-table {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-maps {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 991.98px) {

  .holistic-video-thumb,
  .four-decades-img-wrap {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .floating-bubbles {
    left: 10px !important;
    top: -20px !important;
    width: 120px !important;
    height: 60px !important;
  }


  .testimonial-col {
    min-height: unset;
    padding: 24px 8px 12px 8px;
    border-right: none !important;
    border-bottom: 1px solid #c7d3ea;
    text-align: center;
  }

  .testimonial-col:last-child {
    border-bottom: none;
  }

  .team-member-col {
    max-width: 140px;
    margin: 0 4px;
  }

  /* .team-blob-img {
    width: 100px;
    height: 100px;
  } */
  /* .location-map-img {
    width: 220px;
    height: 120px;
  } */
}


@media (max-width: 767.98px) {
  .desktop-hidden {
    display: block !important;
  }
  .mobile-hidden {
    display: none !important;
  }
  .sticky-call-btn {
    right: 12px;
    bottom: 12px;
    font-size: 1rem;
    padding: 10px 18px 10px 14px;
  }

  .comonMainHeading {
    font-size: 1.5rem !important;
    position: static !important;
    max-width: 100%;
    line-height: 2rem !important;
  }

  .gray-box {
    background-color: #eef1f8;
    border-radius: 10px;
    padding: 20px;
  }

  .symptomsdr img {
    margin-top: 0px !important;
  }

  .nurse_dr img {
    top: 0px;
  }

  .bannerImage-wrapper img,
  .bannerImage-wrapper {
    height: auto;
  }

  .no-margin-mob {
    margin-left: 0px !important;
    margin-top: 10px;
  }

  img.svg-replace {
    display: none;
  }

  section#holistic .container.mb-5 {
    margin-bottom: 0px !important;
  }

  section#whyus {
    padding-bottom: 0px !important;
  }

  .testimonialContentWrapper {
    border: 0px;
    padding: 0px;
  }

  .topOwlBanner .owl-dots {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    position: static;
  }

  .navbar-nav li:first-child::before,
  .navbar-nav li:last-child::after {
    display: none;

  }
  .topBannerIcon {
        position: absolute;
        top: 6px;
        right: 8px;
        width: 26%;
        z-index: 999;
  }
  /*.topBannerIcon {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 20%;
    z-index: 999;
  }*/

  section.topOwlBanner,
  section#holistic,
  section#understanding {
    padding-top: 0px !important;
  }

  section#symptoms {
    padding-top: 70px;
  }

  .managemobile {
    padding-top: 60px;
    padding-bottom: 0px !important;
  }

  .owl-nav button.owl-next {
    top: 4px;
  }

  section.mapWrapper {
    padding-top: 0px !important;
  }

  .box-border:before {
    height: 20px;
  }

  .box-border {
    height: 20px;
    width: 100%;
    display: none;
  }

  .mobilemap {
    max-width: 100% !important;
  }

  .team-member-col {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .team-blob-img {
    width: 100%;
    height: 100%;
  }

  .location-map-img {
    width: 100%;
    height: 120px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .header-wrapperone {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 12px;
  }

  .header-wrapperone .text-center {
    flex: 1 1 auto;
    text-align: left !important;
  }

  .header-wrapperone img {
    max-width: 140px !important;
    height: auto;
    margin-left: 0 !important;
  }

  .navbar-toggler {
    margin-left: auto;
    order: 2;
    z-index: 1101;
  }

  .navbar {
    width: 100%;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 24px rgba(66, 105, 178, 0.08);
    padding: 16px 0 8px 0;
    z-index: 1100;
    border-radius: 0 0 18px 18px;
  }

  .navbar-nav {
    width: 100%;
    align-items: flex-start !important;
    padding-left: 16px;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
    text-align: left;
  }

  .navbar-toggler {
    border-color: #4269b2;
    /* Optional: blue border for visibility */
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(66,105,178,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  .header-wrapper {
    position: relative;
    z-index: 1051;
  }

  .navbar-collapse {
    z-index: 2000 !important;
    position: absolute;
  }

  .header-wrapper.header-fixed {
    position: fixed;
  }

  .managefooter {
    background: #e6eaf5;
    padding: 0px 0px 30px !important;
    margin-top: 0px !important;
    /* border-top: 1px solid #e0e0e0; */
  }

  .sideThankyoutext {
    position: relative;
    margin-left: 0px;
  }

  .ThankWrappericon img {
    display: none;
  }

  .manageMobileform {
    margin-left: 0px !important;
    max-width: 100% !important;
  }

  .requesttext {
    display: block;
  }

  .symptoms-tables.purpal {
    margin-top: 16px;
  }
  .manageinmobilewidth{
    max-width: 100% !important;
    text-align: center;
  }
  .nurse-img {
    position: static;
    margin-bottom: 20px;
    text-align: center;
}
  .yashinameAndDeg{
    position: static;
  }

}


@media (max-width: 600px) {
  .hero-bubble {
    position: static;
    max-width: 100%;
    margin-top: 12px;
    padding: 16px 12px;
  }

  .hero-img img {
    min-height: 180px;
  }

  .carousel-item {
    min-width: 140px;
  }

  /* .carousel-item img {
    height: 80px;
  } */
  .footer-maps {
    flex-direction: column;
    gap: 12px;
  }

  .Team-img-wrapper {
    text-align: center;
    width: 180px;
    margin: auto;
  }
}

/* Team Carousel Styling */
.owl-Facilities-carousal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.Team-img-wrapper {
  text-align: center;
  width: 180px;
}

/* Image styling for the "blob" effect */
.team-blob-img {
  width: 100%;
  height: auto;
  /*border-radius: 60% 60% 30% 30% / 60% 60% 20% 20%;*/
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-blob-img:hover {
  transform: scale(1.05);
}

/* Name and designation */
.Team-img-wrapper .fw-bold {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.1rem;
}

.Team-img-wrapper div:last-child {
  font-size: 0.95rem;
  color: #555;
}