* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-size: 18px;
}

.hero {
  background: url('hospital.jpg') no-repeat center center;
  background-size: cover;
  min-height: 400px;
  color: white;
}
.speciality-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.speciality-link:hover {
  text-decoration: none;
}

.custom-dropdown-btn {
  border: 2px solid #007DB0;
  border-radius: 8px;
  padding: 10px 16px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 375px;
  width: 100%;
}

.custom-dropdown-btn .dropdown-text {
  display: flex;
  align-items: center;
}

.custom-dropdown-btn i {
  margin-right: 8px;
  color: #00A3C8;
}

.custom-arrow {
  margin-left: 10px;
  font-size: 12px;
}

.dropdown-menu {
  width: 100%;
  padding: 10px;
}

.dropdown-radio label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  cursor: pointer;
}

.welcome-kims {
  border-left: 5px solid #e31c49;
  padding-left: 12px;
  font-size: 20px;
  font-weight: 600;
}

.dropdown-radio input {
  margin-left: 12px;
}

.btn-appointment {
  background-color: #E10637;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  border: none;
  min-width: 200px;
  width: 100%;
}

.btn-appointment:hover {
  background-color: #e31c49;
  color: #ffffff;
}

.stat-box {
  height: 220px;
  width: 100%;
  background: #2d8cb9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon img {
  max-height: 50px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.stat-text {
  font-size: 14px;
  color: #ffffff;
  margin-top: 5px;
}

.index-card {
  background: linear-gradient(90deg, #047EB9, #005781);
}

.card {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px;
}

.card img {
  width: 50px;
  height: 50px;
}

.emergency-btn {
  background-color: #E10637;
  color: white;
  font-size: 13px;
}

.emergency-btn:hover {
  background-color: #e31c49;
}

.book-btn {
  background-color: #0072A8;
  color: #ffffff;
  padding-top: 11px;
  padding-bottom: 11px;
}

.book-btn:hover {
  background-color: #015883;
  color: #ffffff;
}

.navigation {
  background-color: #0E7EAD;
  color: white;
}

.navbar-nav .nav-link {
  color: white;
  position: relative;
  padding-bottom: 4px;
  /* Space for the underline */
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: white;
}

.navbar-nav li a {
  color: black;
}

.search-input {
  border-radius: 2px;
  padding-left: 2.5rem;
}

.text-muted {
  color: black !important;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.welcome-msg {
  color: #0078a8;
  font-weight: 700;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: #0e7eac !important;
  color: #ffffff !important;
}

.speciality-text {
  color: #0072A8;
}

.speciality-box {
  background-color: #acd6f2;
  margin: 10px;
  min-height: 270px;
  padding: 1.5rem 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  border-radius: 10px;
}

.speciality-box:hover {
  transform: translateY(-5px);
}

.speciality-box .circle-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #acd6f2;
}

.speciality-box .desc {
  font-size: 14px;
  margin-top: 10px;
  color: #333;
}

.speciality-box .underline {
  width: 150px;
  height: 2px;
  background-color: #fff;
  margin: 10px auto 10px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.4s ease;
}

/* Hover Style */
.speciality-box:hover {
  background-color: #015883;
  color: #fff;
}

.speciality-box:hover .desc,
.speciality-box:hover h5 {
  color: #fff;
}

.speciality-box:hover .circle-icon {
  color: #fff;
}

.speciality-box:hover .underline {
  opacity: 1;
  transform: scaleX(1);
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000000 !important;
  top: 40%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  top: 50%;
}

.choose-para {
  text-align: justify;
  line-height: 34px;
}

.circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: #cfe5f3;

}

.circle-icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
}

.underline {
  width: 120px;
  height: 1px;
  background-color: #000;
  margin: 5px auto;
}

.choose-us-underline {
  width: 242px;
  height: 1px;
  background-color: #939393F5;
  margin: 0px 15px 15px 0px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.doctor-section {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  background: #EEEEEE;
}

.doctor-slider {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.slider-track {
  display: flex;
  animation: scroll 10s linear infinite;
}

.doctor-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #6D6E71;
  margin-bottom: 10px;
}

.highlight {
  color: #0072A8;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.subtext {
  color: #666;
  margin-bottom: 30px;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
}

.doctor-card {
  flex: 0 0 calc((100% - 60px) / 4);
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  margin: 0 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.doctor-card img {
  max-width: 100%;
  border-radius: 8px;
}

.doctor-card h4 {
  margin: 10px 0 6px;
}

.doctor-card p {
  margin: 8px 0 12px;
}

.doctor-card .btn-group {
  margin-top: auto; 
  margin-bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.doctor-card .btn-appointments {
  width: 100%;
}

.doctor-card a {
  margin-top: 0;
}

.btn-outlines a,
.btn-appointments {
  display: inline-block;
}


.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.nav-btn {
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 60%;
  line-height: 50px;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  z-index: 10;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

.btn-outline {
  padding: 10px 37px;
  border: 1px solid #e31c49;
  background: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-appointments {
  background-color: #e31c49;
  color: #fff;
  border-radius: 8px;
  padding: 12px 71px;
  border: none;
}

.search-icon {
  width: 374px !important;
  border: 1px solid black !important;
}

.underlines {
  width: 190px;
  height: 1px;
  background-color: #000;
  margin: 5px auto;
}

.nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.nav.left {
  left: 0;
}

.nav.right {
  right: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 100%;
  min-height: 465px;
  margin: 0 auto;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.testimonial-card i {
  font-size: 30px;
  color: #666;
}

.testimonial-card p {
  font-size: 15px;
  margin-top: 15px;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-top: 20px;
}

.testimonial-name {
  font-weight: 600;
  color: #0e7eac;
  margin-top: 10px;
}

.testimonial-location {
  font-size: 14px;
  color: #555;
}

.carousel-indicators {
  position: relative;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #007bff;
  border: none;
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  background-color: #015883;
}

.carousel-indicators button:hover {
  background-color: #0e7eac;
}

.carousel-indicators [data-bs-target] {
  background-color: #007bff;
}

.video-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 50%;
  height: 100%;
  border: none;
}

.mySwiper1 .swiper-wrapper {
  display: flex;
}

.mySwiper1 .swiper-slide {
  width: auto;
  flex-shrink: 0;
}


.mySwiper1 .specialitys-box {
  width: 100%;
}

.news-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background-color: #e6eff4;
}

.swiper {
  padding: 20px 0;
}

.swiper-slide img {
  max-width: 100%;
  /* height: 200px; */
  object-fit: cover;
  border-radius: 5px;
}

.blog-body {
  padding: 25px;
}

.blog-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

.accordion-button {
  border-radius: 20px;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}

.enquiry-content h3 {
  color: #0078a8;
}

.card-text {
  font-size: 0.9rem;
  padding: 0 1rem;
}

.btn-outline-danger {
  color: black;
  border-radius: 8px;
  font-size: 0.75rem;
  padding: 4px 16px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background-color: #1f9cd8;
}

.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  margin-left: auto;
  transition: transform 0.2s ease-in-out;
  background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: '–';
}

.quick-enquiry {
  background: #0e7eac;
  color: white;
  padding: 30px;
  border-radius: 12px;
}

.condition {
  margin-bottom: 48px;
}

.quick-enquiry {
  font-size: 0.9rem;
}

.quick-enquiry button {
  background: #dc145a;
  padding: 10px 20px;
  border-radius: 14px;
  color: white;
}

footer {
  background-color: #E8E8E8;
  padding: 40px 20px 20px;
}

footer h6 {
  font-weight: bold;
  margin-bottom: 50px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 8px;
}

.btn-outline a {
  text-decoration: none !important;
  color: black !important;
}

.social-icons a {
  color: black;
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer-bottom {
  background-color: #f5f5f5;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

.appointment-section {
  background-color: #e6f2f8;
  padding: 40px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1000px;
}

.form-control,
.form-select {
  border-radius: 50px;
}

.form-check-label {
  font-size: 0.85rem;
}

.submit-btn {
  background-color: #e60044;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
}

.submit-btn:hover {
  background-color: #cc003d;
}

label {
  font-weight: 500;
}

.form-section-title {
  color: #0e7eac;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
}

.health-package-section {
  background: url('../src/images/health-package-banner.png') no-repeat center center/cover;
  height: 80vh;
  padding: 40px 20px;
  text-align: center;
}

.health-talks h2 {
  color: #6D6E71;
}

.section-title {
  color: #0e7eac;
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1.2rem;
}

.map-section {
  position: relative;
}

.contact-details {
  position: absolute;
  top: 87%;
}

.contact-info {
  background-color: #f5f5f5;
  padding: 60px 0 150px 0;
}

.contact-info img {
  width: 100%;
  border-radius: 10px;
}

.contact-icons i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #e60044;
}

.btn-outlines {
  padding: 10px 33px;
  border: 1px solid #e31c49;
  background: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-outlines a {
  text-decoration: none;
  color: black;
}

.contact-map iframe {
  height: 450px;
}

.filter-section {
  background-color: white;
  padding: 40px 50px;
  border-radius: 15px;
}

.filter-section h5 {
  color: #0072A8;
}

.get-directions {
  background-color: #e60044;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: bold;
}

.get-directions:hover {
  background-color: #c7003a;
}

.contact-form-wrapper {
  background-color: #e6f2f8;
  padding: 40px 30px;
  max-width: 700px;
  border-radius: 20px;
  margin: 60px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.form-control, .form-select  {
  border-radius: 50px;
  padding-left: 20px;
  height: 48px;
}

textarea.form-control {
  border-radius: 15px;
  height: auto;
  resize: none;
  padding: 10px 15px;
}

.form-label {
  font-weight: 500;
}

.form-check {
  display: flex !important;
}

.form-check-label {
  font-size: 0.85rem;
  padding-left: 10px;

}

.submit-btn {
  background-color: #e60044;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  border: none;
  font-weight: 500;
}

.submit-btn:hover {
  background-color: #c6003b;
}

.doctor-sections {
  background: url('../src/images/doctor-banner.png') no-repeat center center/cover;
  height: 80vh;
  padding: 40px 20px;
  text-align: center;
}

.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.red-divider {
  height: 15px;
  background-color: #dc143c;
  width: 100%;
  margin-bottom: 25px;
}

.doctor-underline {
  width: 290px;
  height: 1px;
  background-color: #000;
  margin: 5px auto;
}

.hero-section {
  width: 100%;
  background-color: white;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.doctor-content-title {
  color: #0072A8;
  font-size: 32px;
  font-weight: 400;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-tabs .nav-link {
  border-radius: 10px;
  border: 1px solid #007DB0;
  font-weight: 600;
  color: black;
  font-size: 16px;
  margin-right: 10px;
  padding: 15px 90px;
}

.nav-tabs .nav-link.active {
  background-color: #d60029;
  color: #fff;
  border: none;
  padding: 15px 80px;
}

.nav-tabs .nav-link img {
  margin-right: 8px;
}

.enquiry-box {
  background: linear-gradient(180deg, #0066b2, #004e8a);
  padding: 25px;
  border-radius: 10px;
  color: #fff;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
  border-radius: 25px;
  margin-bottom: 15px;
  padding-left: 15px;
}

.submit-btn {
  border-radius: 25px;
  background-color: #d60029;
  color: #fff;
  border: none;
  padding: 10px 30px;
}

.highlight-section {
  background-color: #E6EFF4;
  padding: 40px 20px;
}

.highlight-section h2 {
  color: #0070b9;
  font-weight: 400;
  line-height: 42px;
}

.testimonial-title h2 {
  color: #6D6E71;
}

.choose-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.choose-us-section h2 {
  font-weight: bold;
  color: #6D6E71;
}

.choose-us-section .highlight {
  color: #0070b9;
}

.choose-us-img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq {
  background-color: #EEEEEE;
}

.specialities-para {
  text-align: justify;
  line-height: 26px;
}

.blogs-section {
  display: none;
  background-color: #EEEEEE;
  padding: 60px 20px;
}

.blogs-section h2 {
  font-weight: 700;
  color: #0070b9;
  text-align: center;
  margin-bottom: 40px;
}

.blogs-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blogs-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 25px;
  text-align: center;
}

.blog-date {
  font-size: 14px;
  color: #888;
}

.blog-title {
  font-weight: 600;
  margin: 10px 0;
  font-size: 16px;
}

.blog-desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.read-more-btn {
  margin-top: 15px;
  font-size: 14px;
  border: 1px solid #d60029;
  border-radius: 10px;
  padding: 6px 16px;
  background-color: transparent;
}

.read-more-btn:hover {
  background-color: #d60029;
  color: #fff;
}

.blog-underline {
  width: 247px;
  height: 1px;
  background-color: #000;
  margin: 5px auto;
}

.enquiry-title {
  max-width: 485px;
  line-height: 40px;
  color: #0072A8;
  font-weight: 400;
}

.enquiry-para {
  max-width: 430px;
  line-height: 26px;
}

.filter-section select {
  background-color: #e5f6ff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
}

.quick-enquiry {
  background: linear-gradient(to bottom, #047EB9, #005781);
  color: #fff;
  border-radius: 20px;
  padding: 58px;
}

.quick-enquiry input,
.quick-enquiry textarea,
.quick-enquiry select {
  border-radius: 50px;
  margin-bottom: 15px;
  border: none;
  padding: 13px 15px;
}

.events img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.quick-enquiry .form-check-label {
  font-size: 12px;
}

.specialist-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.choose-us-image {
  border-radius: 50px;
}

.call-doctor {
  padding: 20px 115px;
}

.specialist-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  margin-bottom: 15px;
}

.specialist-card h4 {
  color: #007DB0;
}

.specialist-card p {
  font-size: 14px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.btn-section {
  margin-top: auto;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.btn-profile,
.btn-call {
  border-radius: 30px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  font-size: 14px;
}

.view-more-btn {
  border: 1px solid #d92332;
  border-radius: 8px;
  padding: 8px 25px;
  font-weight: 500;
}

.specialitys-box {
  background-color: white;
  margin: 10px;
  min-height: 345px;
  padding: 1.5rem 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  border-radius: 10px;
  box-sizing: border-box;
}

.lab-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.lab-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lab-card h6 {
  text-align: start;
  color: #6d6e71;
  font-size: 18px;
}

.category-pill {
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid #ccc;
  margin: 5px;
  background-color: white;
  font-weight: 500;
  cursor: pointer;
}

.category-pill.active {
  background-color: #0e7eac;
  color: white;
  border-color: #0e7eac;
}

.package-card {
  background-color: #e9f4fb;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.package-card.active {
  background-color: #0e7eac;
  color: white;
}

.cta-section {
  text-align: center;
  padding-top: 30px;
}

.btn-book {
  background-color: #e51b39;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
}

.checkup-title {
  font-size: 24px;
  font-weight: 600;
}

.checkup-title span {
  color: #0e7eac;
}

.about-doctor-card {
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.appointment-card {
  border-radius: 10px;
  padding: 20px;
  background: #e6eff4;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs1 .nav-link.active {
  font-weight: bold;
  color: #0078a8;
}

.nav-link-tabs {
  font-size: 28px;
  color: #6D6E71;

}

.tab-content {
  margin-top: 15px;
}

.navs {
  display: flex;
  justify-content: space-between;
  border: none;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.navs.nav-tabs1 {
  list-style: none;
  padding-left: 0;
}

.highlight-speciality {
  color: #1175ae;
  font-weight: 500;
}

.doctor-content {
  margin-left: 20px;
}

.call-btn {
  background-color: #E10638;
  color: white;
  width: 100px;
  padding: 12px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.call-btn:hover {
  background-color: #E10638;
  color: white;
}

.mobile-emergency-btn {
  background-color: #d71920;
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
}

.mobile-book-btn {
  background-color: #005f73;
  color: #fff;
  font-size: 14px;
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
}

.mobile-emergency-btn small {
  display: block;
  font-size: 12px;
}

.specialities-hr {
  width: 384px !important;
}

.footer-menu li a {
  text-decoration: none;
  color: black;
}

#customTabs .nav-link img {
  filter: brightness(0);
  transition: filter 0.3s ease;
}

#customTabs .nav-link.active img {
  filter: brightness(0) invert(1);
}

#doctors,
#treatment,
#blogs,
#faqs {
  scroll-margin-top: 120px;
}
.about-welcome{
  font-size: 20px;
  color: #606060;
}
 .scope-service {
      text-align: center;
      margin-bottom: 2rem;
    }

    .scope-service h2 {
      font-weight: 700;
      color: #6D6E71;
    }

    .scope-service span {
      color: #0072A8;
    }

    .pill-btn {
      border-radius: 999px;
      border: 2px solid #0072A8;
      padding: 10px 18px;
      margin: 0.4rem 0;
      width: 100%;
      text-align: center;
      background-color: #ffffff;
      font-weight: 600;
      font-size: 18px;
      transition: all 0.2s ease-in-out;
      color: #6D6E71;
    }

    .bottom-pill {
      border-radius: 999px;
      border: 2px solid #0072A8;
      padding: 10px 18px;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      background-color: #ffffff;
      display: inline-block;
      min-width: 550px;
      color: #6D6E71;
    }

    .facilities-text {
      line-height: 30px;
      font-size: 18px;
      margin: 0 auto 2rem auto;
      color: #6D6E71;
    }

    .facility-pill {
      border-radius: 999px;
      border: 2px solid #0072A8;
      padding: 10px 18px;
      margin: 0.4rem 0;
      font-weight: 600;
      width: 100%;
      text-align: center;
      background-color: #ffffff;
      font-size: 18px;
      transition: all 0.2s ease-in-out;
      color: #6D6E71;
    }

    .section-wrapper {
      padding: 3rem 1rem;
    }

    .hospital-facility{
      background-color: #ACD6F2;
    }

    .section-padding{
      padding:40px 0;
    }

    .floor-tabs .nav-link{
      border-radius:30px;
      padding:10px 25px;
      margin:0 5px;
      color:#6D6E71;
      font-size: 24px;
      font-weight: 700;
      background:#ffffff;
      border:1px solid #6D6E71;
    }
    .floor-tabs .nav-link.active{
      background:#0072A8;
      color:#ffffff;
      border-color:#0072A8;
    }
    .tab-pane p{
      color: #6D6E71;
      font-weight: 700;
      line-height: 30px;
    }
    .clinical-excellence{
      color: #6D6E71;
      font-size: 24px;
      font-weight: 700;
    }

    .custom-list{
      margin-top:15px;
    }
    .custom-list li{
      margin-bottom:5px;
      font-size: 20px;
      font-weight: 700;
      color: #6D6E71;
    }
.container:has(.mv-card) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
}
    .mv-card{
      max-width: 462px;
      min-height: 305px;
      flex: 0 0 auto;
      background:#ffffff;
      border-radius:6px;
      padding:35px 35px;
      box-shadow:0 2px 6px rgba(0,0,0,0.05);
      text-align:center;
      margin-bottom:20px;
    }
    .mv-card p{
      color: #6D6E71;
      font-size: 18px;
      font-weight: 700;
    }
    .mv-title{
      font-size:32px;
      font-weight:700;
      margin-bottom:15px;
      color: #0071A8;
      position:relative;
      display:inline-block;
    }
    .mv-title::before,
    .mv-title::after{
      content:"";
      position:absolute;
      top:50%;
      width:40px;
      height:1px;
      background:#c0c4cc;
    }
    .mv-title::before{
      right:100%;
      margin-right:12px;
    }
    .mv-title::after{
      left:100%;
      margin-left:12px;
    }

    .info-icon{
      font-size:18px;
      margin-right:8px;
      color:#007bff;
    }

    .dropdown-item.active {
  background-color: #0d6efd;
  color: #fff;
}
.address{
  font-size: 24px;
  color: #0071A8;
}
.doctor-special {
  border-radius: 50% !important;   
  object-fit: cover;    
  margin-bottom: 25px;
}
.doctor-swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-wrapper {
  align-items: stretch;
}

.appointment-modal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.appointment-modal .modal-header {
  background: #0072A8;
  color: #fff;
  padding: 18px 24px;
}

.appointment-modal .modal-title {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.appointment-modal .btn-close {
  filter: brightness(0) invert(1);
}

.appointment-modal .modal-body {
  padding: 24px;
  background: #f8fbfd;
}

.appointment-modal .form-label {
  font-weight: 600;
  color: #005f8c;
  margin-bottom: 4px;
}

.appointment-modal .form-control,
.appointment-modal textarea {
  border-radius: 10px;
  border: 1px solid #cce6f3;
  padding: 10px 14px;
  font-size: 14px;
}

.appointment-modal .form-control:focus,
.appointment-modal textarea:focus {
  border-color: #0072A8;
  box-shadow: 0 0 0 0.15rem rgba(0, 114, 168, 0.25);
}

.appointment-modal input[readonly] {
  background: #eaf5fb;
  font-weight: 600;
  color: #0072A8;
}

.appointment-modal .modal-footer {
  background: #f0f8fc;
  border-top: none;
  padding: 16px 24px;
}

/* Buttons */
.appointment-modal .btn-primary {
  background: #0072A8;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 600;
}

.appointment-modal .btn-primary:hover {
  background: #005f8c;
}

.appointment-modal .btn-secondary {
  border-radius: 30px;
  padding: 10px 24px;
}
.pill-btn:hover {
  background-color: #0072A8;
  color: white;
}
.bottom-pill:hover{
  background-color: #0072A8;
  color: white;
}
.facility-pill:hover {
  background-color: #0072A8;
  color: white;
}
.testimonial-card.video-only {
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card.video-only iframe {
  width: 100%;
  height: 100%;
  border: none;
}

 .fixed-tabs-wrapper {
  position: fixed;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-tab {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  background: #e31c48;
  color: white;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.fixed-tabs{
  writing-mode: vertical-lr;
  text-orientation: mixed;
  background: #1175ae;
  color: white;
  padding: 30px 10px;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.testimonial-slider {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-item {
  flex: 0 0 calc(100% / 3);
  padding: 10px;
}

.thank-you-section {
  background-color: #ffffff;
}

.thank-you-text {
  color: #6c757d;
  font-size: 18px;
  line-height: 1.6;
}

/* Buttons */
.btn-home {
  background-color: #0b6fa4;
  color: #fff;
  border-radius: 6px;
}

.btn-home:hover {
  background-color: #095b86;
  color: #fff;
}

.btn-call {
  background-color: #e6003c;
  color: #fff;
  border-radius: 6px;
}

.btn-call:hover {
  background-color: #c40033;
  color: #fff;
}

.mobile-emergency-btn {
  background-color: #dc3545; /* Red */
  border: none;
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 8px;
  text-align: center;
  white-space: nowrap;
}

.testimonial-card-wrapper {
  flex: 0 0 calc(100% / 3);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
}

.carousel-dot.active {
  background: #0078a8;
}

.testimonial-rating {
  color: #f4b400;
  margin-top: 10px;
}
.testimonial-rating i {
  font-size: 18px;
}





@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-120%);
  }
}







/* Responsive Fixes */
@media (max-width: 768px) {
    .doctor-card {
    width: 48%; /* 2 cards */
  }

  .fixed-tabs-wrapper {
    position: fixed;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 0;
    background: #fff;
    border-top: 2px solid #ccc;
    z-index: 9999;
  }

  .fixed-tab,
  .fixed-tabs {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    flex: 1;
    border-radius: 0;
    padding: 12px 0;
    font-size: 15px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    white-space: normal;
  }
 


  .fixed-tab {
    background: #e31c48;
  }

  .fixed-tabs {
    background: #1175ae;
  }

  .fixed-tab:active,
  .fixed-tabs:active {
    opacity: 0.85;
  }

  .pill-btn,
      .facility-pill {
        width: 100%;
      }
  .hero {
    text-align: center;
  }

  .quick-enquiry {
    margin-top: 20px;
  }

  .mobile-emergency-btn,
  .mobile-book-btn {
    display: block !important;
  }

  .contact-map iframe {
    height: 200px;
  }

  .contact-details {
    top: 138%;
  }

    .contact-info {
        padding: 20px 0 30px 0;
    }


  .doctor-card {
    flex: 0 0 calc(50% - 20px) !important;
  }

  .nav-tabs .nav-link {
    font-weight: 500;
    font-size: 13px;
    padding: 15px 30px;
  }

  .nav-tabs .nav-link.active {
    padding: 15px 25px !important;
  }

  .nav-tabs .nav-link {
    padding: 15px 6px !important;
  }

  footer h6 {
    margin-bottom: 16px;
  }

  .nav-tabs1 .nav-link.active {
    font-size: 18px;
  }

  .navs {
    font-size: 15px;
  }

  .btn-outline {
    padding: 10px 35px;
  }

  .nav-link-tabs {
    font-size: 18px;

  }
  .footer-bottom {
    margin-bottom: 50px;
}

}


@media (max-width: 480px) {
  .carousel-track {
    gap: 0;
  }

   .doctor-card {
    width: 90%; /* 1 card */
  }
  .section-padding {
    padding: 120px 0;
}
    #testimonialTrack {
    gap: 0; 
  }
   .testimonial-card-wrapper {
    flex: 0 0 100%;
  }
   .thank-you-text {
    font-size: 14px;
  }
 .floor-tabs .nav-link {
    margin: 7px 5px;
 }
  .quick-enquiry {
    padding: 25px;
}
  p{
    font-size: 16px;
  }
  .bottom-pill {
    min-width: 324px;
}
#specialitiesDropdownMobile + .dropdown-menu {
  width: 278px;
  max-width: 75vw;
  left: 0;            
  right: auto;        
  padding: 0.5rem;    
}

#servicesDropdown1 {
  max-height: 305px !important;   
  overflow-y: auto;
}

  .nav-link{
    font-size: 16px;
  }

  .about-doctor-card {
    display: block !important;
  }

  .navs {
    display: block;
    text-align: center;
  }

  footer h6 {
    margin-bottom: 16px;
  }

  .contact-details {
    position: relative !important;
  }

  .contact-info {
    padding: 20px 0 18px 0 !important;
  }

  .specialities-hr {
    width: 286px !important;
  }

  .nav-tabs .nav-link.active {
    padding: 10px 7px !important;
  }

  .nav-tabs .nav-link {
    padding: 10px 6px !important;
  }

  .doctor-slider .doctor-card {
    flex: 0 0 100% !important;
  }

  .welcome-hr {
    width: 286px !important;
  }

  .custom-dropdown-btn {
    min-width: 286px;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    flex: 0 0 100% !important;
  }

  .btn-group {
    flex-direction: column;
    gap: 5px;
  }

  .doctor-card {
    flex: 0 0 100%;
  }
}

@media (min-width: 481px) and (max-width: 767.99px) {
  .contact-details {
    position: relative !important;
  }


  /* .contact-info {
    padding: 20px 0 35px 0 !important;
  } */
}

@media (min-width: 769px) and (max-width: 991.99px) {
  .contact-details {
    position: relative;
  }

  .contact-info {
    padding: 20px 0 35px 0 !important;
  }

  .nav-link-tabs {
    font-size: 18px;

  }
}

@media (max-width: 992px) {
 

  .navigation {
    background-color: #0078a8 !important;
  }

  .doctor-slider .doctor-card {
    flex: 0 0 50%;
  }

  .nav-tabs .nav-link.active {
    padding: 15px 40px;
  }

  .nav-tabs .nav-link {
    padding: 15px 20px;
  }

  .specialities-para {
    text-align: left;
  }

  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-card {
    width: 32%; /* 3 cards */
  }

  .search-btn {
    display: none;
  }

  .emergency-btn {
    padding-left: 14px !important;
    padding-right: 13px !important;
  }

  footer ul {
    font-size: 12px;
  }

  .footer-branch,
  .footer-menu,
  .footer-quick-links,
  .footer-address {
    font-size: 12px;
  }

  .social-icons {
    width: 166px;
  }

  .mobile-emergency-btn,
  .mobile-book-btn {
    display: none;
  }

  .welcome-hr {
    width: 286px !important;
  }
  .container:has(.mv-card) {
    gap: 20px;
  }
  
  .mv-card {
    max-width: 90%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 1024px) {
  .contact-info {
    padding: 60px 0 30px 0;
}
  .btn-outlines {
    padding: 10px 33px;
  }
    .doctor-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .nav-tabs .nav-link {
    padding: 15px 40px;
}
.contact-details {
    position: relative !important;
}

}

@media (min-width: 1024.98px) and (max-width: 1439px) {
.contact-details {
    position: relative !important;
}
}