@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* font-family: "Montserrat", sans-serif; */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  font-style: normal;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  background-color: #fff;
  color: rgba(37, 37, 37, 0.7);
  padding-top: 90px !important;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-weight: 700;
  color: #252525;
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.h1-heading,
h1 {
  font-size: 60px;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.18;
}

h2 {
  font-size: 50px;
  line-height: 1.1em;
  color: #252525;
  margin: 0 0 17px 0;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #252525;
  font-size: 18px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: #0e5ea8;
}

.cmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 19px 40px;
  background-color: #0e5ea8;
  color: #fff;
  border-radius: 33px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.cmn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 94, 168, 0.3);
}

.btn-text {
  position: relative;
  display: block;
  overflow: hidden;
  height: 20px;
  line-height: 20px;
}

.btn-text::before,
.btn-text::after {
  content: attr(data-text);
  display: block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-text::before {
  transform: translateY(0);
}

.btn-text::after {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

.cmn-btn:hover .btn-text::before {
  transform: translateY(-100%);
}

.cmn-btn:hover .btn-text::after {
  transform: translateY(-100%);
}

.cmn-btn:hover {
  background-color: #333;
  color: #fff;
}

.cmn-gap {
  padding: 100px 0px;
}

.navbar__right-btn .cmn-btn {
  padding: 14px 30px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
}

.header-top {
  background-color: #0e5ea8;
  padding: 11px 0 7px;
}

.hdr-lft ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hdr-lft ul li,
.hdr-lft ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.hdr-rgt ul {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.hdr-rgt ul li a {
  color: #fff;
  font-size: 16px;
}

/* banner */
.hero-slider {
  position: relative;
}

.heroSwiper {
  height: 650px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    89.82deg,
    rgba(0, 0, 0, 0.8) 11.99%,
    rgba(0, 0, 0, 0) 85.81%
  );
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

.swiper-slide-active .slide-bg img {
  transform: scale(1.12);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding-top: 200px;
}

.banner-content p {
  font-size: 20px;
  opacity: 0;
  transform: translateY(80px);
  transition: 0.9s ease 0.2s;
}

.banner-btns {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(80px);
  transition: 0.9s ease 0.4s;
}

.swiper-slide-active h1,
.swiper-slide-active p,
.swiper-slide-active .banner-btns {
  opacity: 1;
  transform: translateY(0);
}

.swiper-button-nexts,
.swiper-button-prevs {
  width: 50px;
  height: 50px;
  position: absolute;
  top: unset;
  bottom: 30px;
  transform: translate(0%, 0%);
  background: #141414;
  opacity: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
  z-index: 99;
}

.swiper-button-prevs {
  left: unset;
  right: 150px;
}

.swiper-button-nexts {
  right: 87px;
}

.swiper-button-nexts:hover,
.swiper-button-prevs:hover {
  transform: translateY(-5px);
}

.swiper-button-nexts:after,
.swiper-button-prevs:after {
  font-size: 18px;
  color: #000;
}

.cmn-btn.outline-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
}

/* service */
.services-section {
  background-color: #f7f2f2;
}

.service-card {
  padding: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: #fff;
  border-radius: 16px;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-image img {
  transition: transform 0.8s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #0e5ea8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  flex-shrink: 0;
}

.sub-title {
  display: block;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: #0e5ea8;
  margin-bottom: 16px;
}

.icon-title-row h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cmn-heading {
  margin-bottom: 50px;
}

.cmn-heading:last-child {
  margin-bottom: 0px;
}

.icon-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.card-content p {
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 600;
  font-size: 18px;
  color: #0e5ea8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.read-more i {
  font-size: 17px;
  line-height: 1;
}

.read-more:hover {
  gap: 14px;
  opacity: 0.8;
}

.card-image {
  overflow: hidden;
  border-radius: 12px;
  height: 216px;
  margin-top: 24px;
}

.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content p {
  font-weight: 500;
  font-size: 20px;
  color: rgba(37, 37, 37, 0.7);
}

.about-list {
  margin-bottom: 48px;
}

.about-image {
  border-radius: 45px;
  overflow: hidden;
}

.about-list li {
  font-weight: 600;
  font-size: 20px;
  color: rgba(37, 37, 37, 0.7);
  padding-left: 40px;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3px;
  width: 30px;
  height: 30px;
  background: url(../images/check-icon.svg) no-repeat center center;
  background-size: contain;
}

.about-list li:not(:last-child) {
  margin-bottom: 20px;
}

/* service end */

/* team */
.specialists-section {
  padding: 120px 0;
  background: #edf4f8;
}

.doctor-card {
  text-align: center;
}

.doctor-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.doctor-img img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  object-position: top;
}

.doctor-card:hover .doctor-img img {
  transform: scale(1.1);
}

.profile-btn {
  position: absolute;
  left: 50%;
  bottom: 23px;
  transform: translateX(-50%);
  background: #fff;
  color: #222;
  text-decoration: none;
  width: 100%;
  max-width: 160px;
  padding: 14px 20px;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.doctor-card:hover .profile-btn {
  opacity: 1;
}

.profile-btn:hover {
  background: #0e5ea8;
  color: #fff;
}

.doctor-content {
  margin-top: 20px;
  padding: 0 0 20px;
}

.doctor-content h4 {
  font-size: 23px;
  margin-bottom: 10px;
  color: #222;
}

.doctor-content span {
  display: block;
  font-size: 15px;
  color: #252525;
  font-weight: 500;
}

.doctor-content p {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* Slide Animation */

.swiper-slide {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-next + .swiper-slide,
.swiper-slide-next + .swiper-slide + .swiper-slide {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom Area */

.slider-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.swiper-scrollbar {
  position: relative !important;
  width: 100% !important;
  left: auto !important;
  bottom: auto !important;
  background: #d7dde2;
  height: 8px !important;
}

.swiper-scrollbar-drag {
  background: #222;
}

.slider-nav {
  display: flex;
  gap: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 50%;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.swiper-button-prev {
  background: #252525;
  color: #fff;
}

.swiper-button-next {
  background: #252525;
  color: #fff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* step form */

.appointment-booking {
  background: #00274b;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.top-rgt-ovr {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 526px;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.lft-img-ovl {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 905px;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.appointment-booking .cmn-heading .sub-title,
.appointment-booking .cmn-heading h2,
.appointment-booking .cmn-heading p {
  color: #fff;
}

.appointment-booking .cmn-heading p {
  font-size: 20px;
}

/* Progress Steps Bar */
/* Progress Steps Wrapper Grid */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto 60px auto;
  padding: 0 10px;
}

.step::before {
  content: "";
  position: absolute;
  left: -50%;
  top: 30px;
  width: 100%;
  height: 2px;
  background: #ffffff28;
  z-index: 1;
}

.step:first-child::before,
.step:first-child .progress-fill {
  display: none; /* Hide progress fill for the first step */
}

/* Dynamic progress fill line matching current selection */
.progress-fill {
  position: absolute;
  left: -50%;
  top: 30px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.active .progress-fill {
  width: 100%;
}

/* Single Step Structure */
.step {
  position: relative;
  width: 25%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent; /* No blocky white backgrounds */
}

/* Number Circle Styling */
.step span {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #001f3f;
  border: 2px solid #fff; /* Unselected transparent border */
  color: #fff; /* Unselected faded text color */
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Step Label Text Layout */
.step h4 {
  margin-top: 17px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* --- ACTIVE & COMPLETED STATES --- */

/* Active Stage Look (Solid white circle with dark text) */
.step.active span {
  border-color: #ffffff;
  background: #ffffff;
  color: #001f3f; /* Dark number inside white block */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.step.active h4 {
  color: #ffffff; /* Crisp bold white label text */
  font-weight: 700;
}

/* Completed Stage Look (White outline circle with white text) */
.step.completed span {
  border-color: #ffffff;
  background: #001f3f;
  color: #ffffff;
}

.step.completed h4 {
  color: #ffffff;
}

/* Form Visibility Control */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-step h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Grids: Problems & Doctors */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.select-card {
  border: 2px solid #dddddd;
  border-radius: 8px;
  padding: 20px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.select-card.active,
.doctors-card.active {
  border-color: #fff;
  background-color: #fff;
}

.doctors-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.select-card h5 {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
}

.select-card:hover {
  background-color: #fff;
}

.select-card:hover h5,
.select-card.active h5 {
  color: #000;
}

.select-card:hover .select-card-icon img,
.select-card.active .select-card-icon img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(79%) saturate(0%)
    hue-rotate(12deg) brightness(97%) contrast(94%);
}

.select-card-icon {
  max-width: 60px;
  height: 60px;
}

.doctors-card .doctor-content {
  text-align: center;
}

.doctors-card .doctor-content h4 {
  color: #fff;
  font-size: 17px;
}

.doctors-card .doctor-content p {
  color: #ffffffb3;
  font-size: 13px;
}

.doctors-card.active .doctor-content h4,
.doctors-card.active .doctor-content p {
  color: #000;
}

.doctors-card .doctor-img img {
  height: 230px;
}

/* Step 3: Date & Time Custom Layout */
#appointmentDate {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  margin-bottom: 25px;
  font-size: 16px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 5px;
  margin-bottom: 20px;
}
.slot-btn {
  border-radius: 3px;
  height: 48px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  font-weight: 700;
  padding: 6px;
  transition: all 0.2s;
}
.slot-btn:hover {
  background-color: #007bff;
  color: #fff;
}
.slot-btn.selected {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Step 4: Patient Fields */

.btn-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.btn-wrap p {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

/* Elegant Success Popup Box */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-30px);
  transition: transform 0.3s ease;
}
.popup-overlay.show .popup-box {
  transform: translateY(0);
}
.popup-box .icon {
  font-size: 50px;
  color: #28a745;
  margin-bottom: 15px;
}
.popup-details {
  text-align: left;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
  border-left: 4px solid #007bff;
}
.popup-close-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

/* Popup Backdrop Overlay */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Open State Trigger */
.popup.open {
  opacity: 1;
  pointer-events: auto;
}

/* Inner Centered Content Window */
.popup-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(0px) !important;
  margin: 120px auto 0;
  transition: transform 0.3s ease;
}

/* Smooth entry animation slide-down */
.popup.open .popup-content {
  transform: translateY(0);
}

.popup-content h2 {
  color: #333333;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Modal Close Button styling */
.popup-content button {
  background: #007bff;
  color: #ffffff;
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 10px;
  width: 100%;
}

.popup-content button:hover {
  background: #0056b3;
}

.cmn-btn.prev-btn,
.cmn-btn.next-btn {
  background-color: #fff;
  color: #000;
  gap: 10px;
  padding: 16px 21px;
}

/* candn */

.custom-calendar {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 10px #0000009c;
}

.calendar-header button {
  border: none;
  outline: none;
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 2px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.calendar-header h4 {
  font-size: 30px;
  margin: 0;
  background: -webkit-linear-gradient(
    186deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calendar-weekdays {
  background-color: #333333;
  padding: 10px 0;
}

.calendar-weekdays div {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.calendar-day-cell {
  border-radius: 3px;
  height: 48px;
  border: 1px solid #636363;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: 700;
  padding: 6px 14px;
}

#calendarDays {
  gap: 2px !important;
  margin-top: 2px;
}

.calendar-day-cell.available-day.selected-day {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.calendar-day-cell.disabled-day {
  font-size: 14px;
  cursor: not-allowed;
  background-color: #cacaca;
  color: #868686;
  border-color: #cacaca;
}

.live-selection-preview {
  padding: 12px;
  background: #f8f9fa;
  border-left: 4px solid #0d6efd;
  border-radius: 4px;
}

.stp-form-wrap {
  background: #ffffff;
  max-width: 640px;
  margin: 0 auto;
  padding: 35px 25px;
  border-radius: 12px;
}

.stp-form-col label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: capitalize;
  display: block;
  color: #000;
}

.stp-form-col select,
.stp-form-col input[type="number"],
.stp-form-col input[type="email"],
.stp-form-col input[type="tel"],
.stp-form-col input[type="text"] {
  background-color: transparent;
  border: 1px solid #5c5c5c;
  padding: 10px 10px;
  border-radius: 2px;
  width: 100%;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.stp-form-col input[type="number"]::placeholder,
.stp-form-col input[type="email"]::placeholder,
.stp-form-col input[type="tel"]::placeholder,
.stp-form-col input[type="text"]::placeholder,
.stp-form-col input[type="text"]::placeholder {
  color: #000;
  font-weight: 500;
}

.stp-form-col select:focus,
.stp-form-col input[type="number"]:focus,
.stp-form-col input[type="email"]:focus,
.stp-form-col input[type="tel"]:focus,
.stp-form-col input[type="text"]:focus,
.stp-form-col input[type="text"]:focus {
  outline: none;
  border-color: #0056b3;
}

.stp-form-col {
  margin-bottom: 15px;
}

.stp-form-col:last-child {
  margin-bottom: 0;
}

.form-card-header h4 {
  margin-bottom: 7px;
}

.form-card-header p {
  color: #333;
  margin: 0 0;
}

.form-card-header {
  margin-bottom: 20px;
}
/* candn end */

/* step form end */

/* --- Section Heading Text Styles --- */
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-wrap .sub-title {
  color: #0d6efd;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title-wrap h2 {
  font-size: 36px;
  color: #222222;
  font-weight: 700;
  margin: 0;
}

/* --- Split Presentation Treatment Cards (image_f6763c.jpg) --- */
.treatmentsSlider {
  position: relative;
}

.treatment-card {
  background: #e6f2ff; /* Soft pastel sky blue panel tint */
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  height: 100%;
  min-height: 357px;
  gap: 30px;
  padding: 14px;
  box-sizing: border-box;
}

/* --- Controls Footer Mechanics (Scrollbar & Navigation) --- */
.slider-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
  width: 100%;
}

/* Custom Scrollbar Styling */
.treatmentsSlider .swiper-scrollbar {
  position: static !important;
  flex: 1;
  height: 5px !important;
  background: #e0e0e0 !important;
  border-radius: 4px;
  margin-right: 40px;
}

.treatmentsSlider .swiper-scrollbar-drag {
  background: #222222 !important; /* Thick dark progress line indicator color */
  border-radius: 4px;
}

/* Custom Navigation Arrow Icons */
.navigation-arrows-wrap {
  display: flex;
  gap: 12px;
}

.treatmentsSlider .custom-arrow {
  position: static !important;
  width: 45px !important;
  height: 45px !important;
  margin: 0 !important;
  background: #e0e0e0;
  border-radius: 50%;
  color: #222222;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.treatmentsSlider .custom-arrow::after {
  display: none !important; /* Disables default font-icon generation string values */
}

.treatmentsSlider .swiper-button-next.custom-arrow {
  background: #222222;
  color: #ffffff;
}

.treatmentsSlider .custom-arrow:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.tst-card-image {
  width: 290px;
  height: 330px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}

.tst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tst-card-content {
  padding: 24px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tst-card-content h3 {
  font-size: 30px;
  margin: 0 0 10px;
}

.tst-card-content p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(37, 37, 37, 0.7);
}

.tst-card-cont-btm .cmn-btn {
  font-size: 14px;
  padding: 15px 25px;
}

.diagnostic-sec {
  background-color: #00274b;
}

.diagnostic-sec .about-list li,
.diagnostic-sec .about-content p,
.diagnostic-sec .sub-title,
.diagnostic-sec .about-content h2 {
  color: #fff;
}

.diagnostic-sec .about-list li::before {
  background: url(../images/check-icon-blue.svg) no-repeat center center;
  background-size: contain;
}

.cmn-btn.btn-wht {
  background-color: #fff;
  color: #000;
}

.diagnostic-one {
  border-radius: 45px;
  overflow: hidden;
  max-width: 459px;
}

.object-fit {
  width: 100%;
}

.diagnostic-two {
  max-width: 424px;
  border-radius: 45px;
  overflow: hidden;
  border: 10px solid #00274b;
  margin-left: auto;
  margin-top: -180px;
  position: relative;
}

.diagnostic-sec .about-content {
  padding-left: 20px;
}

.diagnostic-image-wrap {
  position: relative;
}

.animation-icon-one {
  position: absolute;
  bottom: 8%;
  left: 12%;
  max-width: 80px;
  pointer-events: none;
  user-select: none;
  animation: gentleFloat 4s ease-in-out infinite;
}

.animation-icon-two {
  position: absolute;
  top: 30%;
  right: 17%;
  max-width: 50px;
  pointer-events: none;
  user-select: none;
  animation: gentlePulse 3.5s ease-in-out infinite;
}

.animation-icon-three {
  position: absolute;
  top: 10%;
  right: 1%;
  max-width: 70px;
  pointer-events: none;
  user-select: none;
  animation: smoothRotate 12s linear infinite;
}

/* Float Keyframes: Translates up and down smoothly */
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px); /* Moves up 12 pixels at midpoint */
  }
}

/* Pulse Keyframes: Scales size up and down softly */
@keyframes gentlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15); /* Grows slightly larger and brighter */
    opacity: 1;
  }
}

/* Rotate Keyframes: Full circular loop */
@keyframes smoothRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.facilities-section {
  background-color: #ecf7ff;
}

.facility-card {
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facility-card-text {
  padding-top: 13px;
}

.facility-card-text h3 {
  font-weight: 600;
  font-size: 30px;
}

.facility-card-text p {
  color: rgba(37, 37, 37, 0.7);
}

.card-img-wrap {
  position: relative;
  padding-top: 70%;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 50px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.facilities-section .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.full-col-item .card-img-wrap {
  margin-top: 0px;
  padding-top: 90%;
}

.community-col-cont {
  padding: 38px 0 0;
}

.community-col-cont p {
  color: #252525;
  font-size: 20px;
  margin-bottom: 45px;
}

.image-box {
  border-radius: 46px;
  overflow: hidden;
  max-width: 678px;
  margin-left: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.feature-number {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  background: #0057b8;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.feature-item h5 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #252525;
}

.cta-wrapper {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  padding: 100px 20px;
  z-index: 1;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 39, 75, 0.75),
    rgba(0, 39, 75, 0.75)
  );
  z-index: -1;
}

.cta-content {
  max-width: 816px;
  margin: 0 auto;
  color: #fff;
}

.cta-content h2 {
  color: #fff;
}

.cta-content p {
  font-size: 20px;
}

.cta-btns {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-section {
  padding: 0 0 100px;
}

/* tst */
.tst-sec {
  background-color: #f7f2f2;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
}

.testimonial-card {
  flex-shrink: 0;
  width: 715px;
  display: flex;
  gap: 13px;
}

.testimonial-card-img {
  width: 253px;
  height: 260px;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card-cont {
  background-color: #d8eeff;
  padding: 30px 28px;
  border-radius: 20px;
}

.testimonial-card-cont ul {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
}

.testimonial-card-cont ul li {
  color: #0e5ea8;
  font-size: 14px;
}

.testimonial-card-cont p {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card-cont h3 {
  color: #252525;
  font-size: 16px;
  text-transform: capitalize;
}

.marquee-left {
  margin-bottom: 40px;
}

/* footer */

.footer-section {
  position: relative;
  padding: 100px 0 0;
  z-index: 1;
}

.footer-section a {
  transition: all 0.3s ease-in-out;
}

.footer-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 39, 75, 0.8), rgba(0, 39, 75, 0.8));
  z-index: -1;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-col p {
  color: #cdcdcd;
  line-height: 1.7;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
  max-width: 128px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 22.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.social-links a:hover {
  background: #fff;
  color: #0057b8;
}

.ftr-hd {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
}

.footer-col ul li,
.footer-col ul li a {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

.footer-section a {
  border-bottom: 1px solid transparent;
}

.footer-section a:hover {
  border-color: #fff;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-policy {
  display: flex;
  gap: 12px;
}

.footer-policy span,
.footer-policy a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* footer end */

/* Custom Toast Notification Container */
.custom-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background-color: #1a1a1a; /* Clean dark background */
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #e74c3c; /* Sharp red accent line */
  font-family: "Poppins", sans-serif; /* Fallback to your main font styling */
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 999999; /* Forces it over your multi-step wizard overlay */

  /* Animation handling states */
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

/* State when the toast slides into active view */
.custom-toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stp-form-col p br {
  display: none !important;
}

.form-step .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 10px;
  display: block;
  position: absolute;
  right: 0;
  bottom: -32px;
  font-weight: 700;
  text-transform: capitalize;
}

.form-step .wpcf7-response-output {
  margin: 0 0 !important;
  padding: 11px 12px !important;
  text-align: center;
  color: #fff;
  position: fixed;
  bottom: 10px;
  left: 10px;
  background: #333;
  border-radius: 8px;
  border: none !important;
  border-left: 5px solid #ffb900 !important;
  font-size: 13px;
  z-index: 999 !important;
}

/* about page */
.inner-banner {
  position: relative;
  background-color: #f6f7fb;
  padding: 129px 0px 128px 0px;
  z-index: 1;
}

.inner-content h1 {
  color: #000;
  font-weight: 500;
}

.inner-content ul {
  display: flex;
  align-items: center;
}

.inner-content ul li {
  padding: 0 15px;
}

.inner-content ul li:first-child {
  padding-left: 0;
}

.inner-content ul li a,
.inner-content ul li {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  line-height: 1;
  position: relative;
}

.inner-content ul li {
  font-weight: 600;
  color: #0e5ea8;
}

.inner-content ul li::after {
  content: "\f054";
  position: absolute;
  font-family: "fontawesome";
  right: -2px;
  color: #000;
  top: 4px;
  font-size: 14px;
}

.inner-content ul li:last-child::after {
  display: none;
}

.in-banner-ovr {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.dot {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(#309cdb8f 2px, transparent 2px);
  background-size: 16px 16px;
}

.experience-box {
  position: absolute;
  left: 0;
  bottom: -9px;
  background: #0057b8;
  color: #fff;
  width: 350px;
  padding: 27px 27px 34px;
  border-radius: 25px 25px 0 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.experience-box span {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.experience-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

/* Top dots */
.dot-1 {
  top: 120px;
  right: 220px;
  animation: floatDots1 6s ease-in-out infinite;
  z-index: -1;
}

/* Bottom dots */
.dot-2 {
  bottom: 120px;
  right: -60px;
  animation: floatDots2 8s ease-in-out infinite;
  z-index: -1;
}

/* Animation */
@keyframes floatDots1 {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(0) translateX(20px);
  }
  75% {
    transform: translateY(15px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes floatDots2 {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(10px) translateX(-15px);
  }
  50% {
    transform: translateY(20px) translateX(0);
  }
  75% {
    transform: translateY(10px) translateX(15px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.about-image {
  position: relative;
}

.inner-about-sec .about-content h2 {
  margin-bottom: 20px;
}

.inner-about-sec .about-content p {
  font-size: 16px;
}

.abt-col-txt {
  margin-top: 30px;
}

.abt-col-txt h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.abt-col-txt p {
  font-size: 14px !important;
}

.nabh-section {
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  overflow: hidden;
}

.nabh-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.nabh-content {
  width: 55%;
}

.nabh-badges {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.badge-item i {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #246bfd;
  color: #fff;
}

.nabh-card {
  width: 420px;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(36, 107, 253, 0.15);
  padding-bottom: 20px;
}

.card-header {
  text-align: center;
  padding: 40px 30px;
}

.card-header img {
  width: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.card-header h3 {
  font-size: 30px;
  color: #071c4d;
  margin-bottom: 2px;
}

.card-header span {
  font-size: 15px;
  color: #246bfd;
  font-weight: 500;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 20px;
  border-top: 1px solid #edf1f7;
}

.card-item img {
  width: 38px;
}

.card-item h4 {
  font-size: 18px;
  color: #071c4d;
  margin: 0;
}

/* mm */

.technology-section {
  background: #f6faff;
}

.tech-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 1px 3px 40px rgb(0 0 0 / 8%);
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-8px);
}

.tech-image {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #e4effd 0%, #fdfdfd 100%);
  position: relative;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-image img {
  max-width: 120px;
}

.tech-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #246bfd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.tech-content h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #071c4d;
}

.patient-journey-section {
  background: rgb(0, 39, 75);
}

.patient-journey-section .cmn-heading h2 {
  color: #fff;
}

.patient-journey-section .sub-title {
  color: #fff;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 38%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100%;
  border: 3px solid #00274b;
  z-index: 2;
}

.icon-circle {
  background-color: #fff;
  color: #001f3f;
  font-size: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.icon-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 100%;
  border: 2px dashed #fff;
  z-index: -1;
}

.journey-flex {
  display: flex;
  flex-wrap: wrap;
}

.journey-item-col {
  width: 20%;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.journey-item {
  position: relative;
}

.journey-card h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
}

.journey-card p {
  color: #fff;
  font-size: 13px;
  opacity: 0.8;
}

.journey-item-col::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 100%;
  height: 2px;
  border-bottom: 2px dashed #fff;
  z-index: -1;
}

.journey-item-col:last-child::after {
  display: none;
}

.counter-item {
  display: flex;
  padding: 10px 5px;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  gap: 17px;
}

.counter-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.counter-img img {
  width: 100%;
  height: 100%;
}

.counter-number {
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  margin-bottom: 4px;
}

.counter-text {
  color: #333333;
  font-size: 18px;
}

/* contact us page */

.contact-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="tel"],
.comment-form textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  background: #f4f5f7;
  border: 1px solid #f4f5f7;
  border-radius: 7px;
  padding: 10px 30px;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  color: #000000;
}

.comment-form textarea {
  height: 190px;
  resize: none;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="tel"]:focus,
.comment-form textarea:focus {
  border-color: #0056b3;
}

.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="tel"]::placeholder,
.comment-form textarea::placeholder {
  opacity: 1;
  color: #6e6e6e;
}

.info-icon {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  background: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.info-icon-rgt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-icon-rgt p,
.info-icon-rgt a {
  font-weight: 600;
  color: #5d5c5c;
  font-size: 18px;
  line-height: 1.3;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #d4d4d4;
}

.info-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cont-left-col {
  padding-right: 30px;
}

.map-sec {
  padding-bottom: 10px;
}

.map-sec iframe {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  height: 500px;
}

/* map */

/* blog */
.blog-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
}

/* Main Blog */
.blog-card {
  width: 100%;
}

.blog-card:not(:last-child) {
  margin-bottom: 45px;
}

.blog-img {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  padding-top: 50%;
}

.blog-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  gap: 30px;
  margin: 14px 0 20px;
  flex-wrap: wrap;
}

.blog-meta a,
.blog-meta span {
  font-weight: 500;
  color: #636363;
  font-size: 14px;
}

.blog-main-dtl h3,
.blog-card h3 a {
  font-weight: 500;
  margin-bottom: 14px;
  color: #0d2146;
  font-size: 40px;
}

.blog-card p {
  margin-bottom: 25px;
}

.cmn-btn.btn-sm {
  font-weight: 600;
  border: 1px solid #0e5ea8;
  background: transparent;
  color: #0e5ea8;
  text-transform: capitalize;
  padding: 15px 27px;
  font-size: 14px;
}

/* Sidebar */
.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 35px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.sidebar-card h3::after {
  content: "";
  width: 15%;
  height: 1px;
  background: #2563eb;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 6px;
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list a {
  text-decoration: none;
  color: rgb(13, 33, 70);
  font-size: 16px;
  transition: 0.3s;
  font-weight: 500;
}

.category-list a:hover {
  color: #2563eb;
  padding-left: 8px;
}

/* Popular Post */
.post-item-col {
  margin-bottom: 22px;
}

.post-item-col:last-child {
  margin-bottom: 0;
}

.post-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.post-item img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.post-item span {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.post-item h4 {
  font-size: 17px;
  line-height: 1.2;
  color: #0d2146;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-item-cont span {
  font-weight: 500;
  font-size: 12px;
}

.blog-main-dtl p {
  color: #343434;
}

blockquote {
  background: #f3f4f8;
  margin: 30px 0;
  padding: 35px 60px;
  position: relative;
  box-shadow: 0px 5px 60px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 20px;
  border-left: 4px solid #185ec8;
}

blockquote::before {
  content: "\f10e";
  position: static;
  font-family: "fontawesome";
  font-size: 32px;
  color: #185ec8;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}

blockquote p {
  color: #1b1b1b;
  font-weight: 500;
  margin-bottom: 30px;
}

.blog-main-dtl ul li {
  font-size: 15px;
  font-weight: 500;
  color: #1b1b1b;
  padding-left: 20px;
  position: relative;
}

.blog-main-dtl ul li::before {
  content: "\f054";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "fontawesome";
}

.blog-main-dtl ul li:not(:last-child) {
  margin-bottom: 10px;
}

.sec-introduction .diagnostic-two {
  border-color: #fff;
}

.ot-sec {
  background: #2a6fd50f;
}

.high-box {
  background-color: #b7d3f3;
  border-left: 4px solid #0057b8;
  padding: 11px 17px;
  color: #333;
  font-weight: 500;
  border-radius: 7px;
  margin-top: 40px;
}

.features-wrp-list h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.features-wrp-list ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.features-wrp-list ul li {
  background: #8099fd;
  font-weight: 500;
  color: #ffffff;
  padding: 7px 13px;
  font-size: 14px;
  border-radius: 3px;
  box-shadow: 0 0 10px #33333333;
}

.optical-gls-wrap {
  display: flex;
  flex-wrap: wrap;
}

.optical-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(180deg, #e4effd 0%, #fdfdfd 100%);
  margin-bottom: 20px;
}

.optical-img img {
  max-width: 70px;
  height: 100%;
  object-fit: contain;
}

.optical-gls-col {
  width: 20%;
  padding: 0 10px;
  text-align: center;
}

.optical-gls-col h5 {
  font-weight: 500;
  font-size: 18px;
  color: #0e5ea8;
}

/* doctor */

.doctors-cards {
  background: #ffffff;
  box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 7px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doctors-img {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
  border-radius: 5px;
  z-index: 1;
}

.doctors-content {
  padding-top: 20px;
}

.doctors-content h3 {
  color: #353742;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 2px;
}

.degree {
  font-size: 12px;
  font-weight: 600;
  color: #0e5ea8;
  margin-bottom: 15px;
  display: block;
}

.specialist {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  background: #fff;
  padding: 9px 13px;
  color: #000;
  border-radius: 9px 0 0 0;
  box-shadow: 0 0 10px #acacac;
}

.experience {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 5px;
  right: 0;
  gap: 6px;
}

.experience img {
  max-width: 13px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(10%) saturate(16%)
    hue-rotate(10deg) brightness(102%) contrast(82%);
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}

.interest-list li {
  background: #5e9ad3;
  font-size: 10px;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
}

.doctors-name-left {
  position: relative;
}

.doctors-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.doctors-btns a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 9px 5px;
  border-radius: 3px;
  border: 1px solid #0e5ea8;
}

.btn-fill {
  background-color: #0e5ea8;
  color: #fff;
}

.btn-outline:hover {
  background-color: #0e5ea8;
  color: #fff;
}

.btn-fill:hover {
  background-color: #fff;
}

/* table */

.all-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.table-container {
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 10px;
}

.table-responsive table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.table-responsive table th {
  color: #fff;
  font-weight: 600;
  background: #001f3f;
  padding: 10px 15px;
  font-size: 13px;
}

.table-responsive table td {
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.table-responsive table tr:last-child td {
  border-bottom: none;
}

.customer-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-cell span {
  font-weight: 700;
  color: #000;
}

.customer-cell img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #333;
}

.btn-bka {
  font-size: 10px;
  background-color: #2470be;
  color: #fff;
  padding: 7px 13px;
  border-radius: 4px;
}

.btn-bka:hover {
  background-color: black;
  color: #fff;
}

.all-table-wrap h2 {
  font-size: 20px;
  font-weight: 600;
}

.doctor-name-txt span {
  font-weight: 600;
  color: #000;
}

.dashboard-card {
  margin-top: 40px;
}

.table-sec {
  position: relative;
  z-index: 2;
}

.opd-filter-wrap {
  background: #001f3f;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  margin-top: -35px;
  margin-bottom: 30px;
}

.opd-filter-form {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-group {
  position: relative;
  flex: 1;
}

.form-group select {
  width: 100%;
  height: 44px;
  border: 1px solid #dce5f2;
  border-radius: 4px;
  padding: 0 40px 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: #071c4d;
  background: #fff;
  appearance: none;
  outline: none;
  transition: 0.3s;
}

.form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #071c4d;
  pointer-events: none;
}

.search-btn {
  min-width: 190px;
  height: 45px;
  border: none;
  border-radius: 4px;
  background: #246bfd;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  background: #0f56f5;
  transform: translateY(-2px);
}

/* table end */
/* svr-dtl */

.treatment-details__sidebar {
  background-color: #f6f4f0;
  padding: 40px;
  max-width: 390px;
}

.treatment-details__sidebar h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.treatment-details__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-details__sidebar ul li {
  margin-bottom: 15px;
}

.treatment-details__sidebar ul li:last-child {
  margin-bottom: 0;
}

.treatment-details__sidebar ul li a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: block;
}

.treatment-details__sidebar ul li a::before {
  content: "\f061";
  font-family: "fontawesome";
  position: absolute;
  right: 0px;
  top: 0%;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3c3c3c;
  transition: all 0.3s ease-in-out;
}

.treatment-details__sidebar ul li a:hover::before {
  background-color: #555;
  color: #fff;
}

.treatment-details__content {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
}

.treatment-details__content-top h2 {
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.treatment-details__content-top h6,
.treatment-details__content-top h5,
.treatment-details__content-top h4,
.treatment-details__content-top h3,
.treatment-details__content-top h2 {
  font-weight: 600;
}

.treatment-details__content-top img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px #33333338;
  margin-bottom: 20px;
}

.treatment-details__content-top ul {
  margin: 0 0 20px;
}

.treatment-details__content-top ul li {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.treatment-details__content-top ul li::before {
  content: "\e4c0";
  font-family: "fontawesome";
  position: absolute;
  left: 5px;
  top: 4px;
  font-size: 12px;
  color: #010101;
}

.sp-dr {
  margin-top: 30px;
  border-top: 1px solid #e3e2e2;
  padding-top: 30px;
}

.svr-form {
  border: 1px solid #c8c8c8;
  margin-top: 30px;
  padding: 30px;
  max-width: 390px;
}

.svr-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.sv-form-col textarea,
.sv-form-col input[type="tel"],
.sv-form-col input[type="email"],
.sv-form-col input[type="text"] {
  width: 100%;
  height: 45px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #071c4d;
  background: #fff;
  appearance: none;
  outline: none;
  transition: 0.3s;
}

.sv-form-col textarea {
  height: 150px;
  padding: 12px;
  resize: none;
}

.sv-form-col input[type="date"] {
  text-transform: uppercase;
}

.sv-form-col textarea::placeholder,
.sv-form-col input[type="tel"]::placeholder,
.sv-form-col input[type="email"]::placeholder,
.sv-form-col input[type="text"]::placeholder {
  opacity: 1;
  color: #071c4d;
}

.sv-form-col {
  margin-bottom: 10px;
}

.btn-sb {
  width: 100%;
  text-align: center;
  padding: 7px 4px;
  border: 1px solid #0e5ea8;
  text-transform: uppercase;
  font-weight: 500;
  background-color: #0e5ea8;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.btn-sb:hover {
  background-color: transparent;
  color: #0e5ea8;
}

/* svr-dtl */

.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-numbers {
  width: 30px;
  height: 30px;
  display: inline-flex;
  background: #00274b;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
}

.page-numbers.current {
  background: #0f33c1;
}

.booking-modal-dialog {
  position: relative;
  background: #fff;
  max-width: 1300px;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-close-btn-ap {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 18;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.feature-item p {
  display: none !important;
}

/* acco */
/* Two-column layout grid mimicking Bootstrap styling */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Image styling rules */
.faq-image-side {
  width: 100%;
}

.faq-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Accordion Component structural builds */
.faq-accordion-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: #f4f5f7; /* Off-white color layout */
  border-radius: 30px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

/* Base Header Button state rules */
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 25px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #123456;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* Plus structural Icons rendered as dynamic SVG data */
.accordion-header .icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-header .icon::before {
  content: "\2b";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "fontawesome";
  font-size: 15px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

/* Active State Overrides */
.accordion-item.active {
  background-color: transparent;
}

.accordion-item.active .accordion-header {
  background-color: #0e5ea8; /* Targeted Brand Green */
  color: #ffffff;
  border-radius: 30px;
}

.accordion-item.active .accordion-header .icon::before {
  content: "\2212";
  color: #ffffff;
}

/* Smooth collapsing container logic */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/* Native calculation container handling the active dynamic heights */
.accordion-item.active .accordion-content {
  max-height: 200px; /* Adjust if description texts get longer */
}

.content-inner {
  padding: 20px 25px 25px 25px;
  color: #777777;
  font-size: 14px;
  line-height: 1.7;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 30px;
}

.cmn-content-all-txt {
  max-width: 1000px;
  margin: 0 auto;
  background: #e9e9e9;
  padding: 35px;
  border-radius: 7px;
  border-top: 3px solid #0e5ea8;
}

.cmn-content-all-txt p {
  font-size: 18px;
}

.cmn-content-all-txt .about-list {
  margin-bottom: 20px;
}

/* responsive */
@media (max-width: 1440px) {
  body {
    font-size: 14px;
  }
  .cmn-btn {
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 600;
  }

  .h1-heading,
  h1 {
    font-size: 48px;
  }

  .banner-content p {
    font-size: 18px;
  }

  .swiper-button-nexts {
    right: 30px;
  }

  .swiper-button-prevs {
    right: 90px;
  }

  .select-card-icon {
    max-width: 40px;
    height: 40px;
  }

  .select-card h5 {
    font-size: 12px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 10px;
  }

  .select-card {
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 10px;
    height: 150px;
  }

  .step span {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .step::before {
    top: 21px;
  }

  .progress-fill {
    top: 21px;
  }

  .step h4 {
    margin-top: 13px;
    font-size: 12px;
  }

  .appointment-booking .cmn-heading p {
    font-size: 18px;
  }

  .diagnostic-sec .about-content {
    padding-left: 0;
  }

  .diagnostic-one {
    border-radius: 25px;
    max-width: 370px;
  }

  .diagnostic-two {
    max-width: 348px;
    border-radius: 25px;
    border: 6px solid #00274b;
    margin-top: -140px;
  }

  .animation-icon-three {
    top: 6%;
    right: 6%;
    max-width: 49px;
  }

  .animation-icon-two {
    top: 33%;
    right: 19%;
    max-width: 35px;
  }

  .animation-icon-one {
    bottom: 4%;
    left: 7%;
    max-width: 50px;
  }

  .header .container {
    max-width: 100%;
  }

  .sub-title {
    font-size: 15px;
  }

  h2 {
    font-size: 40px;
  }

  .service-card {
    padding: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon img {
    max-width: 25px;
  }

  .icon-title-row {
    gap: 15px;
  }

  .icon-title-row h3 {
    font-size: 19px;
  }

  .read-more {
    font-size: 14px;
  }

  .read-more i {
    font-size: 14px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-list li {
    font-size: 16px;
    padding-left: 32px;
  }

  .about-list li::before {
    top: 3px;
    width: 23px;
    height: 23px;
  }

  .about-list li:not(:last-child) {
    margin-bottom: 13px;
  }

  .tst-card-content h3 {
    font-size: 24px;
  }

  .tst-card-image {
    width: 230px;
    height: 280px;
  }

  .tst-card-content p {
    font-size: 14px;
  }

  .treatment-card {
    min-height: 316px;
  }
}

@media (max-width: 1199px) {
  body {
    padding-top: 80px !important;
  }
  h2 {
    font-size: 40px;
  }

  .sub-title {
    font-size: 16px;
    color: #0e5ea8;
    margin-bottom: 10px;
  }

  .cmn-heading {
    margin-bottom: 40px;
  }

  .cmn-gap {
    padding: 70px 0px;
  }

  .service-card {
    padding: 14px;
  }

  .cmn-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
  }

  .swiper-button-prevs {
    right: 80px;
  }

  .swiper-button-nexts,
  .swiper-button-prevs {
    width: 40px;
    height: 40px;
  }

  .swiper-button-nexts i,
  .swiper-button-prevs i {
    font-size: 14px;
  }

  .heroSwiper {
    height: 580px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }

  .icon-title-row {
    gap: 12px;
    margin-bottom: 10px;
  }

  .service-icon img {
    max-width: 25px;
  }

  .icon-title-row h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .read-more {
    font-size: 14px;
    gap: 4px;
  }

  .read-more i {
    font-size: 11px;
  }

  .card-image {
    margin-top: 18px;
  }

  .doctor-grid {
    gap: 12px;
  }

  .custom-calendar {
    padding: 12px;
  }

  .calendar-day-cell {
    border-radius: 3px;
    height: 41px;
    border: 1px solid #9d9d9d;
    padding: 4px 11px;
    font-size: 12px !important;
  }

  .live-selection-preview p {
    font-size: 12px !important;
  }

  .slot-btn {
    height: 47px;
    font-size: 14px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-list li {
    font-size: 16px;
    padding-left: 30px;
  }

  .about-list li::before {
    top: 4px;
    width: 20px;
    height: 20px;
  }

  .about-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .about-list {
    margin-bottom: 30px;
  }

  .about-image {
    border-radius: 25px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }

  .diagnostic-one {
    max-width: 290px;
  }

  .diagnostic-two {
    max-width: 300px;
  }

  .animation-icon-two {
    top: 27%;
    right: 24%;
    max-width: 28px;
  }

  .facility-card {
    padding: 16px;
    border-radius: 8px;
  }

  .facility-card-text h3 {
    font-size: 20px;
    margin: 0 0 8px;
  }

  .card-img-wrap {
    border-radius: 10px;
    margin-top: 20px;
  }

  .community-col-cont p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .feature-item h5 {
    font-size: 18px;
  }

  .feature-number {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    font-size: 16px;
  }

  .feature-item {
    gap: 14px;
  }

  .image-box {
    border-radius: 26px;
  }

  .cta-wrapper {
    border-radius: 30px;
    padding: 60px 20px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .testimonial-card {
    width: 450px;
    background-color: #d8eeff;
    padding: 20px;
    border-radius: 10px;
  }

  .testimonial-card-img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
  }

  .testimonial-card-cont {
    background-color: transparent;
    padding: 0;
  }

  .testimonial-card-cont p {
    font-size: 14px;
  }

  .testimonial-card-cont ul {
    margin-bottom: 7px;
  }

  .testimonial-card-cont ul li {
    font-size: 10px;
  }

  .marquee-left {
    margin-bottom: 20px;
  }

  .ftr-hd {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-col ul li,
  .footer-col ul li a {
    font-size: 14px;
    font-weight: 400;
  }

  .footer-col ul li {
    margin-bottom: 9px;
  }

  .footer-wrapper {
    gap: 20px;
  }

  .footer-col p {
    font-size: 12px;
  }

  .footer-logo {
    max-width: 98px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .footer-policy span,
  .footer-policy a {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding: 13px 0;
  }

  .footer-section {
    padding: 70px 0 0;
  }

  .hdr-lft ul li,
  .hdr-lft ul li a {
    font-size: 11px;
  }

  .navbar__right-btn .cmn-btn {
    padding: 11px 16px;
    font-size: 12px;
  }

  .brand {
    max-width: 80px;
  }

  .icon-circle {
    font-size: 14px;
    width: 50px;
    height: 50px;
    margin: 0 auto 30px;
  }

  .icon-circle::before {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
  }

  .step-number {
    top: -12px;
    left: 38%;
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .journey-card h4 {
    font-size: 13px;
  }

  .counter-number {
    font-size: 35px;
  }

  .counter-text {
    font-size: 15px;
  }

  .counter-img {
    width: 50px;
    height: 50px;
  }

  .treatment-details__sidebar,
  .svr-form {
    padding: 20px;
  }

  .treatment-details__sidebar ul li a {
    font-size: 13px;
  }

  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="tel"],
  .comment-form textarea {
    height: 58px;
    padding: 10px 20px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 67px !important;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .doctor-content h4 {
    font-size: 28px;
  }

  .h1-heading,
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .doctor-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .doctor-content span {
    font-size: 14px;
  }

  .doctor-content p {
    font-size: 12px;
  }

  .animation-icon-three,
  .animation-icon-two,
  .animation-icon-one {
    display: none;
  }

  .diagnostic-two {
    max-width: 210px;
    margin-top: -68px;
  }

  .facilities-section .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .facility-card-text p {
    font-size: 14px;
  }

  .facility-card-text h3 {
    font-size: 17px;
  }

  .facility-card-text {
    padding-top: 0;
  }

  .image-box {
    margin-top: 30px;
    max-width: 100%;
  }

  .feature-item h5 {
    font-size: 14px;
  }

  .community-col-cont {
    padding: 0;
  }

  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col ul li,
  .footer-col ul li a {
    font-size: 13px;
  }

  .hdr-lft ul li,
  .hdr-lft ul li a {
    gap: 5px;
    font-size: 10px;
  }

  .hdr-rgt ul li {
    line-height: 1;
  }

  .hdr-rgt ul li a {
    font-size: 12px;
  }

  .header-top {
    padding: 8px 0;
  }

  .brand {
    display: flex;
    align-items: center;
    order: 1;
    max-width: 70px;
  }

  .navbar {
    padding: 12px;
  }

  .inner-banner {
    padding: 80px 0px;
  }

  .inner-content ul li a,
  .inner-content ul li {
    font-size: 14px;
  }

  .inner-content ul li::after {
    right: -2px;
    top: 3px;
    font-size: 10px;
  }

  .tech-image {
    width: 140px;
    height: 140px;
  }

  .tech-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .tech-content h3 {
    font-size: 12px;
  }

  .journey-flex {
    justify-content: center;
  }

  .journey-item-col {
    width: 33.33%;
    padding: 20px;
  }

  .journey-item-col::after {
    display: none;
  }

  .nabh-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .nabh-content {
    width: 100%;
  }

  .nabh-card {
    width: 100%;
  }

  .svr-form,
  .treatment-details__sidebar {
    width: 100%;
    max-width: 100%;
  }

  .treatment-details__content {
    margin-top: 30px;
  }

  .doctors-cards {
    padding: 12px;
  }

  .doctors-content h3 {
    font-size: 16px;
  }

  .degree {
    font-size: 10px;
  }

  .form-group select {
    height: 38px;
    border-radius: 4px;
    padding: 0 28px 0 12px;
    font-size: 12px;
  }

  .form-group i {
    right: 11px;
    font-size: 11px;
  }

  .opd-filter-form {
    gap: 10px;
  }

  .search-btn {
    min-width: 170px;
    height: 38px;
    font-size: 14px;
  }

  .table-responsive table th {
    padding: 12px 9px;
    font-size: 12px;
  }

  .customer-cell img {
    width: 30px;
    height: 30px;
    border: 1px solid #333;
  }

  .customer-cell span {
    font-size: 10px;
  }

  .table-responsive table th {
    font-size: 10px;
  }

  .table-responsive table td {
    padding: 7px 9px;
    font-size: 10px;
  }

  .blog-wrapper {
    grid-template-columns: 1fr;
  }

  .cont-left-col {
    padding-right: 0;
  }

  .faq-image-side-col {
    display: none;
  }

  .optical-gls-col h5 {
    font-size: 10px;
  }

  .optical-img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .optical-img img {
    max-width: 40px;
  }

  .optical-gls-col {
    padding: 0 5px;
  }
}

@media (max-width: 767px) {
  .g-5,
  .gy-5 {
    --bs-gutter-y: 2rem;
  }

  .g-5,
  .gx-5 {
    --bs-gutter-x: 2rem;
  }

  .specialists-section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .slider-footer {
    flex-direction: column;
  }

  .h1-heading,
  h1 {
    font-size: 35px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .banner-btns {
    margin-top: 30px;
  }

  .treatments-section .navigation-arrows-wrap,
  .specialists-section .slider-nav {
    display: none;
  }

  .treatmentsSlider .swiper-scrollbar {
    margin-right: 0;
  }

  .swiper-scrollbar {
    height: 4px !important;
  }

  .tst-card-content h3 {
    font-size: 23px;
  }

  .tst-card-image {
    width: 160px;
    height: 170px;
  }

  .tst-card-content p {
    font-size: 14px;
  }

  .tst-card-cont-btm .cmn-btn {
    font-size: 14px;
    padding: 11px 19px;
  }

  .tst-card-content {
    padding-bottom: 10px;
  }

  .treatment-card {
    min-height: 260px;
  }

  .diagnostic-one {
    max-width: 100%;
    width: calc(100% - 150px);
  }

  .diagnostic-two {
    max-width: 320px;
    margin-top: -140px;
  }

  .diagnostic-sec .about-content {
    padding-top: 20px;
  }

  .testimonial-slider .swiper-slide {
    width: 320px;
  }

  .navbar__right-btn .cmn-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .journey-item-col {
    width: 50%;
    padding: 20px 5px;
  }

  .table-responsive table {
    width: max-content;
  }

  .cont-left-col {
    margin-bottom: 40px;
  }

  .optical-gls-col {
    width: 33.33%;
    margin-top: 13px;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: 97px !important;
  }

  .sub-title {
    font-size: 14px;
  }

  h2 {
    font-size: 28px;
  }

  .cmn-gap {
    padding: 50px 0px;
  }

  .cmn-heading {
    margin-bottom: 30px;
  }

  .heroSwiper {
    height: 500px;
  }

  .banner-content {
    padding-top: 150px;
  }

  .banner-btns {
    gap: 10px;
  }

  .appointment-booking .cmn-heading p {
    font-size: 14px;
  }

  .step span {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 600;
  }

  .step h4 {
    font-weight: 600;
    font-size: 9px;
  }

  .step::before {
    top: 15px;
  }

  .progress-fill {
    top: 14px;
    height: 1px;
  }

  .select-card {
    padding: 10px;
    height: 110px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }

  .form-step h3 {
    font-size: 16px;
  }

  .steps {
    margin: 0 auto 40px auto;
  }

  .select-card-icon {
    max-width: 30px;
    height: 30px;
  }

  .cmn-btn.prev-btn,
  .cmn-btn.next-btn {
    background-color: #fff;
    color: #000;
    gap: 10px;
    font-size: 13px;
    padding: 13px 15px;
  }

  .doctors-card .doctor-img img {
    height: 200px;
  }

  .doctors-card .doctor-content h4 {
    font-size: 14px;
    margin: 0 0 7px;
  }

  .doctors-card .doctor-content p {
    font-size: 10px;
  }

  .stp-form-wrap {
    padding: 26px 15px;
    border-radius: 12px;
  }

  .form-card-header p {
    color: #333;
    font-size: 12px;
  }

  .popup-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .popup-content {
    padding: 30px 14px;
    border-radius: 4px;
  }

  .popup-content button {
    padding: 9px 29px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 23px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-list li {
    font-size: 14px;
    padding-left: 23px;
  }

  .about-list li::before {
    top: 4px;
    width: 15px;
    height: 15px;
  }

  .doctor-card {
    background-color: #e2f2df;
    overflow: hidden;
    border-radius: 15px;
  }

  .profile-btn {
    opacity: 1;
  }

  .tst-card-content p {
    margin-bottom: 16px;
  }

  .diagnostic-one {
    width: calc(100% - 100px);
  }

  .diagnostic-two {
    max-width: 100%;
    width: calc(100% - 100px);
  }

  .card-img-wrap {
    margin-top: 40px;
  }

  .facility-card-text {
    padding-top: 15px;
  }

  .feature-number {
    width: 40px;
    height: 40px;
  }

  .image-box {
    border-radius: 13px;
  }

  .feature-row {
    --bs-gutter-y: 1rem !important;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-btns {
    margin-top: 30px;
    gap: 10px;
  }

  .testimonial-card {
    width: 400px;
    padding: 15px;
  }

  .testimonial-card-cont p {
    font-size: 12px;
    color: #000;
  }

  .testimonial-card-img {
    width: 60px;
    height: 60px;
  }

  .testimonial-card-cont h3 {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .footer-bottom {
    justify-content: center;
    gap: 5px;
  }

  .hdr-rgt {
    display: none;
  }

  .hdr-lft ul {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hdr-lft ul li:last-child {
    display: none;
  }

  .in-banner-ovr {
    display: none;
  }

  .inner-content {
    text-align: center;
  }

  .inner-content ul {
    justify-content: center;
  }

  .inner-banner {
    padding: 50px 0px;
  }

  .dot {
    width: 90px;
    height: 90px;
  }

  .experience-box span {
    font-size: 40px;
  }

  .experience-box p {
    font-size: 16px;
  }

  .inner-about-sec .about-content p {
    font-size: 14px;
  }

  .nabh-badges {
    flex-direction: column;
    margin: 10px 0 20px;
    gap: 10px;
  }

  .card-header img {
    width: 60px;
  }

  .card-header h3 {
    font-size: 22px;
  }

  .card-item h4 {
    font-size: 14px;
  }

  .nabh-card {
    width: 100%;
    border-radius: 20px;
    padding-bottom: 5px;
  }

  .card-item img {
    width: 28px;
  }

  .card-item {
    gap: 15px;
    padding: 16px 20px;
  }

  .badge-item i {
    width: 45px;
    height: 45px;
  }
  .inner-about-sec {
    overflow: hidden;
  }

  .tech-image {
    width: 120px;
    height: 120px;
  }

  .tech-image img {
    max-width: 80px;
  }

  .tech-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .tech-content h3 {
    font-size: 14px;
  }

  .journey-item-col {
    width: 100%;
    padding: 10px 0px;
  }

  .journey-item {
    display: flex;
    gap: 30px;
  }

  .icon-circle {
    flex-shrink: 0;
    margin: 0;
  }

  .journey-card {
    text-align: left;
  }

  .step-number {
    top: -7px;
    left: 0;
  }

  .journey-flex {
    padding-left: 10px;
  }

  .journey-card h4 {
    font-size: 17px;
  }

  .counter-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .counter-number {
    font-size: 30px;
    font-weight: 600;
  }

  .counter-img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .counter-item {
    padding: 0;
    margin-bottom: 20px;
  }

  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }

  .custom-toast {
    top: 17px;
    right: 17px;
    padding: 9px 14px;
    border-radius: 5px;
    border-left: 2px solid #e74c3c;
    font-size: 11px;
    transform: translateX(0px);
  }

  .form-step .wpcf7-response-output {
    padding: 11px 12px !important;
    bottom: 10px;
    left: 10px;
    border-radius: 6px;
    font-size: 11px;
  }

  .community-col-cont p {
    margin-bottom: 18px;
  }

  .cmn-btn {
    padding: 11px 16px;
  }

  .cta-section {
    padding: 0 0 50px;
  }

  .svr-form h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .doctors-btns a {
    font-size: 10px;
  }

  .appointment-booking {
    padding: 30px 0;
  }

  .slot-btn {
    height: 37px;
    font-size: 10px;
  }

  .cmn-btn.prev-btn,
  .cmn-btn.next-btn {
    font-size: 13px;
    padding: 9px 15px;
  }

  .opd-filter-form {
    flex-wrap: wrap;
  }

  .form-group {
    flex: unset;
    width: calc(50% - 5px);
  }

  .search-btn {
    min-width: 100%;
  }

  .features-wrp-list ul li {
    padding: 7px 11px;
    font-size: 10px;
  }

  .features-wrp-list h3 {
    font-size: 16px;
  }

  .journey-item {
    align-items: center;
  }

  .blog-main-dtl h3,
  .blog-card h3 a {
    font-size: 26px;
  }

  .blog-meta a,
  .blog-meta span {
    font-size: 12px;
  }

  .cmn-btn.btn-sm {
    padding: 11px 20px;
    font-size: 12px;
  }

  .sidebar-card {
    padding: 20px;
    border-radius: 10px;
  }

  .sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .category-list a {
    font-size: 14px;
  }

  .post-item img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
  }

  .post-item h4 {
    font-size: 13px;
  }

  .blog-card:not(:last-child) {
    margin-bottom: 35px;
  }

  .sidebar-card {
    margin-bottom: 25px;
  }

  .info-icon-rgt p,
  .info-icon-rgt a {
    font-size: 13px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .info-card {
    gap: 10px;
  }

  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="tel"],
  .comment-form textarea {
    height: 50px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .g-4,
  .gy-4 {
    --bs-gutter-y: 12px;
  }

  .comment-form textarea {
    height: 130px;
  }

  .map-sec iframe {
    height: 300px;
  }

  .accordion-header {
    padding: 13px 18px;
    font-size: 12px;
  }

  .accordion-item:first-of-type,
  .accordion-item:last-of-type {
    overflow: unset;
  }

  .content-inner {
    padding: 14px;
    font-size: 14px;
  }

  .accordion-header .icon::before {
    font-size: 11px;
  }

  .cmn-content-all-txt {
    padding: 20px;
  }

  .cmn-content-all-txt p {
    font-size: 14px;
  }

  .optical-gls-col {
    width: 50%;
  }

  .image-box {
    margin-top: 0;
  }

  .about-list:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 479px) {
  .doctor-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .doctors-card .doctor-img img {
    height: 160px;
  }

  .doctor-content {
    margin-top: 14px;
    padding: 0 0 14px;
  }

  .doctors-card .doctor-content h4 {
    margin: 0 0 4px;
  }

  .doctors-card .doctor-img img {
    height: 140px;
  }

  .treatment-card {
    flex-direction: column;
    flex-direction: column-reverse;
  }

  .tst-card-content {
    padding: 0;
  }

  .tst-card-image {
    width: 100%;
    height: 340px;
  }

  .treatment-card {
    padding: 22px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-col ul {
    column-count: 2;
  }

  .steps {
    padding: 0;
  }

  .counter-number {
    font-size: 22px;
  }

  .counter-text {
    font-size: 14px;
  }

  body {
    padding-top: 99px !important;
  }
}
