/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ============= ROOT VARIABLES ============= */
:root {
  /* Colors */
  --primary-color: #133C8B;
  --secondary-color: #f8f9fa;
  --accent-color: #dc3545;
  --text-color: #353535;
  --light-text: #fff;
  --teal-blue: #48DACB;
  --dark-text: #222;
  --border-color: #e9e9e9;
  --hover-color: #0e2d66;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Geologica', sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Header Heights */
  --top-header-height: 36px;
  --main-header-height: 106px;

  /* Navigation */
  --nav-item-gap: 20px;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 4px 4px 8px 0px #00000040;
  ;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============= COMMON STYLES ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mr-20px {
  margin-right: 19px;
}

.ml-20px {
  margin-left: 19px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: var(--transition-normal);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section {
  overflow: hidden;
}

.container {
  max-width: 1444px;
  margin: 0 auto;
}

/* ============= BUTTON STYLES ============= */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  z-index: 1;
  border-radius: 100px;
  text-transform: uppercase;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-normal);
}

.btn:hover:after {
  left: 100%;
}

.book-btn {
  background-color: #48DACB;
  color: #153C89;
}

.book-btn:hover {
  background-color: #000;
  color: #fff;
}


.btn-primary {
  background-color: var(--primary-color);
  color: var(--teal-blue);
}

.btn-primary:hover {
  background-color: var(--hover-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ============= TOP BAR STYLES ============= */
.top-bar {
  background-color: var(--primary-color);
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.top-bar-left {
  font-size: 14px;
  font-family: var(--font-primary);
}

.top-bar-right {
  font-family: var(--font-secondary);
  font-size: 14px;
}

.top-contact {
  color: var(--teal-blue);
  transition: var(--transition-fast);
}

.language-selector.top-contact {
  color: #000;
}

.top-contact:hover {
  color: rgba(255, 255, 255, 0.8);
}

.social-icons a {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  transition: var(--transition-fast);
  margin-right: 10px;
}

.top-bar-right a:hover svg path {
  stroke: #fff;
}

.social-icons a:hover svg {
  transform: translateY(-2px);
  stroke: none !important;
}

/* ============= MAIN HEADER STYLES ============= */
.main-header {
  background-color: var(--light-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  padding: 18px 0;
  display: flex;
  align-items: center;
}

.dropdown:hover .dropdown-menu {
  top: 25px;
}

.navbar-expand-lg .navbar-collapse {
  flex-basis: 100%;
}

.navbar {
  padding: 0;
  height: 100%;
}

.nav-link:focus-visible {
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.logo-container {
  display: flex;
  align-items: center;
  width: 40%;
}

.logo-img {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.drop-down-arrow {
  margin-left: 3px;
}

.logo-text h2 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 1px;
}

.logo-text p {
  color: var(--primary-color);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin: 0;
}

.navbar-collapse {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
}

.navbar-collapse.show {
  right: 0;
}

.navbar-nav {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
}

.nav-item {
  width: 100%;
}

.dropdown-menu.show {
  display: block !important;
}

.nav-link {
  padding: 10px 15px;
  font-size: 1.1rem;
  color: #333;
  transition: background-color 0.2s;
}


.dropdown-menu {
  position: static;
  width: 100%;
  box-shadow: none;
  border: none;
  padding: 10px 0;
  background-color: #f8f8f8;
}

.dropdown-item {
  padding: 8px 20px;
  color: #333;
}

.custom-toggler {
  border: none;
  padding: 10px;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 40px;
  width: 40px;
}

.toggler-icon {
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.close-menu svg {
  width: 24px;
  height: 24px;
  stroke: #333;
  transition: transform 0.3s ease;
}

.close-menu:hover svg {
  transform: rotate(90deg);
}

@media (min-width: 992px) {
  .navbar-collapse {
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .navbar-nav {
    flex-direction: row;
    margin-top: 0;
  }

  .nav-item {
    width: auto;
  }

  .dropdown-menu {
    position: absolute;
    width: auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .close-menu {
    display: none;
  }
}

/* ============= NAVIGATION STYLES ============= */
.navbar-nav {
  display: flex;
  gap: 18px;
  /* 28px gap between nav items */
  align-items: center;
}


.custom-nav-item {
  position: relative;
}

.custom-dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-top: 8px;
  top: 30px;
  left: 0;
  z-index: 1000;
  flex-direction: column;
  color: #353535;
  padding-top: 20px;
}

.custom-nav-item:hover .custom-dropdown-menu {
  display: flex;
}

.custom-nav-item a {
  color: #353535;
}

.custom-dropdown-menu li {
  padding: 5px 20px;
}

.custom-dropdown-menu li:hover {
  background-color: var(--primary-color);
}

.custom-dropdown-menu li:hover a {
  color: #fff;
}

.custom-nav-item.active .custom-dropdown-menu {
  display: block;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0 !important;
  position: relative;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:hover:not(:last-child),
.nav-link.active {
  color: var(--primary-color) !important;
}


.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-md);
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  padding: 8px 20px;
  font-size: 14px;
  transition: var(--transition-normal);
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* section titls */

.section-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.treatment-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
  line-height: 42px;
}

.section-label {
  color: var(--hover-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

/* Emergency Button */
.btn-emergency {
  color: var(--accent-color) !important;
  border-radius: var(--border-radius-sm);
  padding: 8px 0px !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  flex-direction: column;
  align-items: center;
}

.btn-emergency:hover {
  color: var(--dark-text);
}

.btn-emergency svg {
  fill: var(--accent-color);
  transition: all 0.3S ease 0S;
}

.btn-emergency:hover svg {
  fill: var(--dark-text);
}

/* home sec */



#welcome-sec {
  background: url('../images/welcom-sec-bg.jpg');
  padding-bottom: 0px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-position: bottom;
}

#welcome-sec .upper-content {
  padding-top: 75px;
  display: flex;
  min-height: 572px;
}

.welcome-sec-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 956px;
}
.float-right{
  float: right;
}
.welcome-sec-img img {
  width: 100%;
  float: right;
}

#welcome-sec .upper-content .statistic-section {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 20px 0;
}

#welcome-sec .upper-content .info-box {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

#welcome-sec .upper-content .info-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  font-size: 20px;
  box-shadow: 2px 2px 4px 0px #0000001F;
}

#welcome-sec .upper-content .statistic-section .info-box .number {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

#welcome-sec .upper-content .statistic-section .info-box .label {
  font-size: 14px;
  color: #353535;
  font-weight: 400;
}

.appoinment-sec {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
}

#welcome-sec .hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 20px 0;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  margin-top: 10px;
}

.hero-section-2 .text-content h1 {
  font-size: 26px;
  color: #000;
  font-weight: 700;
}

.hero-section .light-text {
  font-weight: 600;
}

.hero-section .light-text-1 {
  font-weight: 600 !important;
}

.hero-section-2 .text-content h1 span {
  font-size: 26px;
  font-weight: 600;
}

.hero-section-2 .text-content p {
  letter-spacing: 0%;
  font-family: 'Geologica';
}

#welcome-sec .hero-section .text-content {
  flex: 1;
  margin-right: 20px;
}

#welcome-sec .hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 10px;
  line-height: 54px;
}

#welcome-sec .hero-section h1 span {
  font-size: 43px;
  font-weight: 300;
}

.custom-btn-container:hover {
  opacity: 0.8;
}

#welcome-sec .hero-section p {
  font-size: 18px;
  color: #141414;
  margin-bottom: 30px;
  line-height: 1.7;
}

.custom-btn-container {
  display: inline-flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border: none;
  margin-bottom: 50px;
}

.btn-text-part {
  background-color: #55d6c2;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-text-part:hover {
  background-color: #45c6b2;
}

.btn-icon-part {
  background-color: var(--hover-color);
  padding: 10px 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  color: var(--border-color);
}

.btn-icon-part:hover {
  background-color: #0d3a7d;
}

.btn-icon-part svg {
  fill: var(--border-color);
  width: 20px;
  height: 20px;
}

section.appoinment-sec {
  margin-top: -1.5%;
  z-index: 2;
  position: relative;
}

.appoinment-sec .checkup-section {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0px 20px;
  background-color: transparent;
  margin-top: 22px;
  margin-bottom: 22px;
}

.appoinment-sec .checkup-section .search-box {
  padding-left: 10px;
  margin-right: 20px;
}

.checkup-section-line {
  display: flex;
  align-items: flex-end;
  margin-right: 40px;
}

.appoinment-sec .checkup-section h3 {
  font-size: 18px;
  color: var(--hover-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.appoinment-sec .checkup-section .search-box input {
  border: none;
  outline: none;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 1rem;
  border-radius: 99px;
  background-color: #FDFFEA;
  width: 664px;
  padding-left: 25px !important;
}

.appoinment-sec.checkup-section .search-box i {
  color: #aaa;
}

.appoinment-sec .checkup-section .book-appointment-btn {
  color: var(--accent-color);
  padding: 12px 25px;
  border: 1px solid var(--accent-color);
  border-radius: 99px;
  background-color: var(--light-text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appoinment-sec .checkup-section .book-appointment-btn:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
}

.appoinment-sec.checkup-section .location-info {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}

.location-info h5 {
  color: #353535;
  font-size: 18px;
  font-weight: 700;
}

.location-info p:nth-child(2) {
  color: #D01E1E;
}

.appoinment-sec .events-section h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.location-info a {
  color: var(--hover-color);
  font-weight: 600;
  font-size: 16px;
}

.appoinment-sec .events-section .event-list {
  display: flex;
}

.appoinment-sec .events-section .event-item {
  padding: 11px;
  border-radius: 5px;
  width: 20%;
  min-width: 200px;
  text-align: center;
  position: relative;

}

.events-section {
  display: flex;
  align-items: center;
}

.appoinment-sec .events-section .event-item a {
  font-size: 14px;
  color: #444;
}

.location-info p {
  margin-bottom: 8px;
}

.appoinment-sec .event-heading .event-item:after {
  display: none;
}

.appoinment-sec .event-list .event-item a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #444;
}

.appoinment-sec .events-section .event-heading .event-item {
  background-color: var(--hover-color);
  width: 15%;
  color: #fff;
  border-radius: 0px 0px 0px 16px;
}

.appoinment-sec .events-section .event-heading .event-item a {
  color: #fff;
}

.appoinment-sec .container {
  background-color: #FBE9E7;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

.appoinment-sec .location-info {
  padding-left: 50px;
  border-left: 1px solid #D4D4D4;
}

/* Custom CSS for Specialties Section */
.specialties-section {
  padding: 40px 0;
  position: relative;
  border-radius: 8px;
  margin: 00px auto;
  background-color: #fff;
}

/* Header Styles */
.specialties-header {
  margin-bottom: 30px;
}

.section-tag {
  color: #153C89;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0px 0px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

body .specialties-title {
  font-size: 28px;
  color: #000;
  margin-bottom: 0;
  line-height: 150%;
}

.section-title b {
  font-weight: 700;
  color: #000;
}

/* Specialty Item Styles */
.specialty-item {
  display: flex;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}

.specialty-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.specialty-icon svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.list-group-item {
  padding: 16px !important;
}

.specialty-content {
  flex-grow: 1;
}

.specialty-content .specialty-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.list-group-item {
  margin-bottom: 16px;
  border: 1px solid #D4D4D4 !important;
  border-radius: 8px;
}


.list-group-item img {
  margin-right: 8px;
}
.specialty-card li {
  line-height: 28px;
}
.specialty-description {
  font-size: 16px;
  color: #353535;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 28px;
}

.specialty-link {
  color: #153C89;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.specialty-link:hover {
  text-decoration: underline;
}

/* View All Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--hover-color);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.view-all-btn svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}

.view-all-btn:hover {
  background-color: #0b2d61;
  color: white;
}



.quality-care-section {
  padding: 0px 0 40px 0;
  border-radius: 8px;
  margin: 0px auto;
}

.quality-care-section .bg-wraper {
  background-color: #F3F6FD;
  padding: 50px 40px;
  border-radius: 12px;
}

.quality-care-section .section-tag {
  margin-bottom: 28px !important;
}

.quality-care-section

/* Section Title Styles */
.quality-content .section-title {
  text-align: start;
}

.quality-content .section-description {
  margin-bottom: 28px;
}

/* Section Description */
.quality-conten .section-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Features Grid Styles */
.features-grid .features-grid {
  margin-bottom: 20px;
}

.features-grid .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.features-grid .check-icon {
  width: 20px;
  height: 20px;
  fill: #00c853;
  margin-right: 10px;
  flex-shrink: 0;
}

.features-grid .feature-item span {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.feature-item img {
  margin-right: 8px;
}

/* Image Container Styles */
.quality-image {
  position: relative;
  height: 100%;
  margin-left: 80px;
}

.quality-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Stat Boxes */
.quality-image .stat-box {
  position: absolute;
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 265px;
}

.quality-image .stat-departments {
  top: 20px;
  right: 20px;
  background-color: #FFFFFFBF;
}

.quality-image .stat-patients {
  bottom: 30px;
  background-color: #FFFFFFBF;
  right: 48%;
}

.quality-image .stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #114f9e;
  margin-bottom: 5px;
}

.quality-image .stat-label {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* dr slider */

.top-doctors-section {
  padding: 40px 0;
  background-color: #FCFCFC;
}

.top-doctors-section .section-title {
  text-align: center;
}

.top-doctors-section .doctor-card {
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 24px;
  display: block;
}

.doctor-card {
  display: flex;
  justify-content: space-between;
}

.card-row {
  display: flex;
  justify-content: space-between;
}

.top-doctors-section .slick-dots li,
.rare-cases-section .slick-dots li {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
}

.top-doctors-section .doctor-card .doctor-image {
  width: 100%;
  object-fit: cover;
  margin: 0 auto 15px;
  background-color: #ECECEC;
  border-radius: 12px;
  height: 396px;
}

.top-doctors-section .doctor-name {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  text-align: start;
  margin: 0;
  line-height: 22px;
}

.top-doctors-section .doctor-specialty {
  color: #353535;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  text-align: start;
  line-height: 24px;
}

.top-doctors-section .doctor-credentials {
  color: #353535;
  font-size: 14px;
  text-align: start;
  line-height: 18px;
}

.doctor-credentials img {
  display: inline-block !important;
  width: 18px !important;
  margin-right: 4px;
}

body .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--primary-color);
}

/* service sec */

.services-section {
  padding: 40px 0;
  background-color: #fff;
}

.service-card {
  height: 100%;
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  min-height: 219px;
  margin-bottom: 32px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card.blood-bank {
  margin-bottom: 0;
}

.service-card.hours-service {
  margin-bottom: 0;
}

.blood-bank {
  background-color: #FAEEEE;
}

.hours-service {
  background-color: #DBFAF7;
}

.doctor-qualification {
  background-color: #E4EBF9;
}

.pharmacy {
  background-color: #E4EBF9;
}

.ambulance {
  background-color: #FAEEEE;
}

.emergency-dept {
  background-color: #DBFAF7;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.service-card-content {
  width: 85%;
}

.service-icon img {
  width: 100%;
  height: 100%;
}

.service-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
  color: #000;
}

.service-card-content .service-description {
  font-size: 16px;
  line-height: 1.6;
  color: #353535;
  font-weight: 400;
}

.center-image {
  display: flex;
  padding: 0 00px;
  margin-top: 48px !important;
  height: 719px;
}

.center-image img {
  border-radius: 12px !important;
}

.stethoscope-heart {
  max-width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* patient sec */

.patient-sec {
  background-color: #FFFAFA;
  padding: 40px 0;
}

.patient-stories-header {
  text-align: center;
  margin-bottom: 40px;
}

.patient-stories-header .subtitle {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-carosal .owl-nav,
.card-carosal .owl-dots {
  display: none;
}

.patient-stories-header h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #000;
}

.patient-sec .video-card {
  background-color: #ccc;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 325px;
}

.video-card {
  background-color: #d1d1d1;
  height: 200px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  background: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-title {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}


.patient-sec .play-button {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.patient-sec .play-button img {
  height: 18px;
  width: 15px !important;
  margin-left: 5px;
}

.patient-sec .video-title {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #000;
}


/* training sec */

/* Doctors Section Styles */
.doctors-section {
  padding: 40px 0;
}

/* Doctor Quote */
.doctor-quote {
  position: relative;
  padding: 20px 20px;
  text-align: center;
  margin-bottom: 0px;
  z-index: 1;
}

.doctor-quote::before {
  content: "";
  background-color: #f8f9fe;
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 43%;
  left: 0;
  right: 0;
  z-index: -1;
}

.quote-content {
  background-color: #F6F9FF;
  padding: 40px 20px;
}

.quote-content p {
  position: relative;
  max-width: 571px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.quote-marks {
  position: absolute;
  top: -40px;
  right: 0;
  width: 128px;
  height: 128px;
  font-size: 120px;
  opacity: 0.7;
}

.carousel-inner {
  position: relative;
}

.carousel-inner::before {
  content: '';
  background: url(../images/quote.svg);
  position: absolute;
  right: 0;
  color: #e6e6e6;
  height: 128px;
  width: 128px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 999;
}

/* Doctor Profile */
.doctors-section .doctor-image {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.doctors-section .doctor-image img {
  height: 100%;
  width: 100%;
}

.doctors-section .doctor-name {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.doctors-section .doctor-speciality {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Carousel Custom Dots */
.doctor-dots {
  position: relative;
  bottom: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -30px;
  /* Pull up the dots */
}

.doctor-dots .dot {
  width: 8px !important;
  height: 8px !important;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  opacity: 1;
  border: none;
  margin: 0 !important;
  padding: 0;
}

.doctor-dots .dot.active {
  background-color: #0066cc;
}

/* Feature Cards */
.feature-card {
  background-color: #FAEEEE;
  padding: 25px;
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  min-height: 170px;
}

/* Hide the left stage padding */

#featureSlider {
  margin-top: 24px;
}

#featureSlider .owl-stage-outer {
  margin-left: -100px;
  padding-left: 80px;
  overflow: visible;
}

.feature-card.aqua {
  background-color: #DBFAF7;
}

.feature-card.blue {
  background-color: #E4EBF9;
}

.card-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-text {
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-right: 40px;
  margin-bottom: 0px;
}

.arrow-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  color: #0066cc;
}

.carousel-inner {
  padding-bottom: 20px;
}

/* health-awareness-section */
.health-awareness-section {
  padding: 40px 0;
  background-color: #F6F9FF;
}

.health-awareness-section .video-card {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.video-carousel {
  margin-top: 24px;
}

.health-awareness-section .video-card:hover {
  transform: translateY(-5px);
}

.health-awareness-section .video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.health-awareness-section .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.health-awareness-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;

  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.health-awareness-section .play-button img {
  height: 18px !important;
  border-radius: 0 !important;
  width: 15px !important;
}

.health-awareness-section .play-button:hover {
  background-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

.health-awareness-section .video-info {
  padding: 0 5px;
}

.health-awareness-section .video-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
  text-align: start;
}

.health-awareness-section .doctor-name {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 0;
}

.health-awareness-section .treatment-content {
  padding: 0 35px;
  text-align: start;
}

.treatment-content .section-tag {
  margin-bottom: 22px !important;
}

.health-awareness-section span.star-filled {
  color: #FEA500;
  font-size: 20px;
}

.health-awareness-section .google-rating-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.health-awareness-section .video-card {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.health-awareness-section .video-card:hover {
  transform: translateY(-5px);
}

.video-info {
  padding: 0 5px;
}

.doctor-name {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

.treatment-image {
  margin-right: 87px;
}

.treatment-section {
  padding: 40px 0;
  background: #FFFAFA;
}

/* our treatment */

.google-rating {
  display: flex;
  justify-content: center;
}

.treatment-content .section-title {
  color: var(--primary-color);
}

.treatment-content .section-title .section-tag {
  margin-bottom: 22px !important;
}

.google-rating .google-box-wraper {
  padding: 10px 20px;
  background-color: #fff;
  border-top: 2px solid #48DACB;
  box-shadow: 4px 4px 16px 0px #0000001A;
  border-radius: 10px;
  display: flex;
}

.google-rating .rating-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #153C89;
}

.rating-score {
  margin-right: 9px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans';
  color: #FEA500;
}

.google-rating .star-filled {
  color: #FEA500;
  font-size: 19px;
}

.rating-count p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  margin-bottom: 0;
  color: #153C89;
}


/* rare cases sec */

.rare-cases-section {
  padding: 40px 0;
  text-align: center;
  background-color: #FFFFFF;
}

.case-card {
  background-color: var(--primary-color);
  border: 8px solid var(--hover-color);
  border-radius: 10px;
  text-align: center;
  height: 375px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 00px;
}

.case-card img {
  width: 100%;
  height: 100%;
}

.case-card h3 {
  font-size: 1.2rem;
  color: var(--border-color);
  margin-bottom: 10px;
  background-color: var(--hover-color);
  width: 100%;
  padding: 10px;

}

.case-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  padding: 20px 20px;
}

.rare-cases-section .slick-dots li {
  margin: 0 5px;
}

.rare-cases-section .slick-dots li button:before {
  font-size: 10px;
}

.rare-cases-section .slick-dots li.slick-active button:before {
  color: #153C89;
}

/* search sec */

.search-sec {
  padding: 40px 0px;
  margin: 0 auto;
}

.search-sec .keyboard-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
}

.search-sec .search-card {
  background-color: #FBE9E7;
  border-radius: 12px;
  padding: 24px;
}

.search-sec .key-search {
  width: 40%;
  background-color: #1a3c7a;
  color: white;
}

.search-sec .keyboard-section {
  margin-bottom: 20px;
}

.search-sec .search-header {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.search-sec .search-form p {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: normal;
  font-weight: 600;
}

.search-sec .keyboard-row {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.search-sec .key {
  padding: 6px 0;
  width: 56px;
  height: 31px;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: 0 0.642px 0 0 rgba(0, 0, 0, 0.30);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.search-sec .key-search:hover {
  background-color: #000;
}

.search-sec .key-space {
  width: 45%;
}

.search-sec .key-search {
  width: 40%;
  background-color: var(--primary-color);
  color: var(--teal-blue);
}

.search-sec .search-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 99px;
  margin-bottom: 24px;
}

.search-sec .top-searches-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.search-sec .search-box-main {
  display: flex;
  gap: 16px;
}

.search-sec .search-tag {
  display: inline-flex;
  align-items: center;
  ;
  margin-bottom: 8px;
  font-size: 14px;
  margin-bottom: 0;
}

.search-sec .search-tag svg {
  margin-right: 5px;
  color: #1a3c7a;
}

/* awards sec */

.awards-section {
  padding: 40px 0px;
  margin: 0 auto;
  background-color: #FFFFFF;
  text-align: center;
}

.award-card {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0px 10px;
  background: #153C89;
}

.award-header {
  background-color: #153C89;
  color: white;
  padding: 12px 15px;
  text-align: center;
  font-weight: 500;
}

.award-image-container {
  background-color: white;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.award-image {
  max-width: 100%;
  min-height: 100%;
  object-fit: contain;
}

.awards-row {
  margin-top: 30px;
}

/* Custom CSS for Footer */
.footer-wrapper {
  background-color: var(--hover-color);
  color: white;
  padding: 30px 0 10px 0;
}

.hospital-logo {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.hospital-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.nested-links li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease 0s;
  opacity: 80%;
}

.nested-links li a:hover {
  color: #00c7c1;
  transform: translateX(3px);
  opacity: 100%;

}

.hospital-subtitle {
  font-size: 16px;
  margin-top: -5px;
  text-transform: uppercase;
}

.contact-info-1 {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.contact-info li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
}

.contact-info li span {
  margin-left: 10px;
  display: block;
  font-size: 14px;
}

.contact-info svg {
  margin-right: 10px;
  color: #00c7c1;
  min-width: 16px;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #00c7c1;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
}

.contact-info-1 li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.contact-info-1 li img {
  margin-right: 10px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 20px;
  font-size: 14px;
}

.footer-copyright p {
  margin: 0;
  opacity: 80%;
  font-size: 14px;
  font-weight: 400;
}

.social-links {
  margin-left: 10px;
}

.social-links a {
  margin-right: 10px;
}

.social-links a svg {
  fill: #fff;
}

.social-links a:hover svg path {
  fill: var(--teal-blue);
}

.nested-links {
  padding-left: 0;
  list-style: none;
  margin-bottom: 15px;
}

.nested-links li {
  margin-bottom: 5px;
}

/* find a doctor page css start */

/* ============= HEADER STYLES ============= */
.page-header {
  margin-bottom: 40px;
  padding: 80px 10px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
}

.mobile-breadcrumb {
  display: none;
}

.page-header::after {
  content: "";
  position: absolute;
  /* background: url(/images/find-dr-Background-2.png); */
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 0;
  left: 22%;
  bottom: 0;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  background: transparent;
  padding: 0;
}

.page-header .breadcrumb a {
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: var(--text-color);
}

.page-header .page-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--light-text);
}

.page-header p {
  font-weight: 500;
  font-size: 18px;
  color: var(--light-text);
  margin: 0;
}

/* ============= SEARCH FORM STYLES ============= */
.search-section-find-pag {
  border-radius: var(--border-radius-lg);
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1444px;
  margin-left: auto;
  margin-right: auto;
}

.search-section-find-pag .search-sec {
  padding: 22px !important;
}

.text-black {
  color: #141414 !important;
}

.search-sec {
  background-color: #FBE9E7;
  width: 100%;

  border-radius: var(--border-radius-lg);
}

#search-dr-input {
  width: 180px;
  height: 100%;
}

.search-section-find-pag .book-apoinment-hero {
  background-color: var(--primary-color);
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
  border-radius: 16px;
}

.search-section-find-pag .book-apoinment-hero span {
  color: #FFFFFF;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 10%;
}

.search-section-find-pag .book-apoinment-hero a {
  display: flex;
  align-items: center;
  background-color: #48DACB;
  color: #153C89;
  border-radius: 8px;
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  padding: 2px 2px;
  padding-right: 24px !important;
  gap: 20px;
}

.search-section-find-pag .book-apoinment-hero a img {
  background-color: #FFFFFF;
  padding: 8px 10px;
  border-radius: 8px;
}

.search-section-find-pag .search-form {
  position: relative;
  margin-bottom: var(--spacing-md);
}


.search-section-find-pag .search-input {
  width: 99%;
  padding: 12px 16px;
  padding-left: 40px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 16px;
  outline: none;
  transition: var(--transition-fast);
  margin: 0;
  margin-right: 22px;
}

.search-section-find-pag .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.search-section-find-pag .search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(19, 60, 139, 0.1);
}

.search-section-find-pag .search-btn {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 100px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.search-section-find-pag .search-btn:hover {
  background-color: var(--hover-color);
}

/* ============= POPULAR SEARCHES STYLES ============= */
.search-section-find-pag .popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.search-section-find-pag .popular-title {
  font-size: 14px;
  font-weight: 500;
  margin-right: var(--spacing-md);
  margin-bottom: 0;
}

.search-section-find-pag .popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.search-section-find-pag .popular-tag {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--primary-color);
  transition: var(--transition-fast);
  border: 1px solid rgba(19, 60, 139, 0.1);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
}

.search-section-find-pag .popular-tag:hover {
  background-color: rgba(19, 60, 139, 0.1);
}

/* ============= RESULTS STYLES ============= */
.results-section .results-count {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #353535;
}

.results-section .doctor-card {
  background-color: white;
  border-radius: 12px;
  margin-bottom: var(--spacing-lg);
  transition: var(--transition-fast);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  border: 1px solid #ECECEC;
}

.results-section .doctor-image {
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: #ECECEC;
  border-radius: 0;
  height: 389px;
}

.results-section .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.results-section .doctor-info {
  flex: 1;
  padding: 20px 0;
  overflow: hidden;
  margin: 0 24px;
  padding-bottom: 18px;
}

.results-section .doctor-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.view-profile {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  display: none;
}

.results-section .doctor-specialty {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 18px;
}

.results-section .experience {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 3px;
  letter-spacing: 0%;
  text-align: center;
}

.results-section .doctor-credentials {
  font-size: 18px;
  color: #9E9E9E;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-inner-row {
  display: flex;
}

.mobile-appointment {
  display: none;
}

.results-section .doctor-credentials svg {
  margin-right: var(--spacing-xs);
  color: #888;
}

.results-section .view-profile {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition-fast);
  text-decoration: none;
}

.results-section .view-profile:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

/* ============= AVAILABILITY STYLES ============= */
.results-section .availability {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  margin: 0 24px;
  padding-bottom: 24px;
}

.results-section .availability .btn {
  margin-bottom: 12px;
}

.results-section .avail-title {
  font-size: 14px;
  color: #666;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.results-section .avail-days {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.results-section .day.available {
  background-color: #E0EFE5;
  color: #258142;
}

/* ============= PAGINATION STYLES ============= */
.pagination-section {
  /* text-align: center; */
  margin-bottom: 100px;
  margin-top: 28px;
}

.page-results {
  width: 100%;
  max-width: 40%;
}

/* .pagination-style {
  width: 100%;
  max-width: 60%;
} */
.pagination li.active a {
  background-color: rgba(21, 60, 137, 1);
  color: #fff;
}

.pagination a {
    padding: 4px;
    width: 32px;
    height: 32px;
    display: inline-block;
    border: 1px solid rgba(158, 158, 158, 1);
    text-align: center;
    border-radius: 4px;
    color: rgba(158, 158, 158, 1);
    font-size: 15px;
    line-height: 20px;
}

.page-results {
  color: #9E9E9E;
  font-size: 16px;
  line-height: 20px;
}

.pagination {
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.page-item {
  display: inline-block;
}

#next,
#prev {
  border: 1px solid #9E9E9E;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0px solid #9E9E9E;
  border-radius: 5px;
  text-decoration: none;
  color: #9E9E9E;
  background: #fff;
  transition: 0.3s;
  font-size: 14px;
}

.page-link:hover {
  border-color: #0F172A;
  color: #0F172A;
}

.page-results .count {
  color: #000;
  line-height: 20px;
}

.page-item.active .page-link {
  background: #153C89;
  color: #fff;
  border-color: #153C89;
}

.page-link svg {
  width: 10px;
  height: 10px;
}

/* find a doctor page css end */

/* SIDE BAR MENU STRAT */

.contact-widget {
  position: fixed;
  right: 0px;
  top: 83%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}

.contact-item {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.contact-item:hover {
  transform: translateX(-5px);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.contact-item:hover::before {
  left: 100%;
}

/* Individual contact colors */
.contact-support {
  background: #40BCAF;
}

.contact-phone {
  background: #133C8B;
}

.contact-whatsapp {
  background: #25AD19;
}

/* Icons */
.contact-item svg {
  width: 100%;
  height: 100%;
  fill: white;
}

/* Tooltip */
.contact-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-item:hover::after {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Triangle for tooltip */
.contact-item:hover::after {
  box-shadow: 2px 0 0 0 #333;
}

/* Animation on load */
.contact-item {
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
  transform: translateX(100px);
}

.contact-item:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* SIDE BAR MENU end */

/* mobile menu strat */

.mobile-menu {
  position: fixed;
  bottom: 0;
  z-index: 99999;
  width: 100%;
}

.nav-container {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.mobile-menu .nav-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 10;
}

.mobile-menu .nav-bar {
  display: flex;
  justify-content: space-around;
  background-color: #f8fafc;
  margin: 0;
}

.mobile-menu .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 8px;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  border-top: 3px solid transparent;
  margin: 0;
}

div#doctor-results {
  margin-bottom: 20px;
}

.mobile-menu .nav-item.active {
  border-top: 3px solid var(--teal-blue);
  background-color: #f8fafc;
  background: linear-gradient(180deg, #EDF3FF 0%, #FFFFFF 100%);
}

.mobile-menu .nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  stroke-width: 2;
}

.menu-list {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 20;
  padding: 20px;
  overflow-y: scroll;
}

.menu-list.active {
  right: 0;
}

.menu-header .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-list a {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.menu-list a:hover {
  color: var(--primary-color);
}

.mobile-menu .nav-label {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.dropdown-toggle {
  padding: 15px 20px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  border: none;
  color: #333;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle::before {
  content: ' ';
  position: absolute;
  display: none;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='9' viewBox='0 0 16 9' fill='none'%3E%3Cpath d='M2 1.76025L8 7.76025L14 1.76025' stroke='%23353535' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-content.active {
  max-height: 100%;
}

/* Demo buttons */
.demo-controls {
  text-align: center;
  margin-top: 30px;
}

.demo-btn {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s;
}

.demo-btn:hover {
  background-color: #1d4ed8;
}

/* mobile menu end */
.dropdown-container {
  /* background-color: var(--primary-bg); */
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 8px !important;
  font-size: 18px;
  line-height: 27px;
}

.dropdown-container.active {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 32px;
  height: 32px;
}

.label {
  font-weight: bold;
  color: var(--primary-text);
}

.toggle-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.toggle-icon.rotate {
  transform: rotate(45deg);
}

.doctor-profile {
  margin-top: 20px;
}

.dropdown-content {
  display: none;
  padding: 0px 16px 12px 16px;
  border-radius: 8px;
  width: 100%;
  font-size: 17px;
}

.dropdown-content.active {
  display: block;
}

.drowpdown-wrapper {
  margin-bottom: 16px;
}

/* .drop-down-container .drowpdown-wrapper:nth-child(1) {
  background-color: #FAEEEE;
}

.drop-down-container .drowpdown-wrapper:nth-child(2) {
  background-color: #DBFAF7;
}

.drop-down-container .drowpdown-wrapper:nth-child(3) {
  background-color: #E4EBF9;
}

.drop-down-container .drowpdown-wrapper:nth-child(4) {
  background-color: #FAEEEE;
} */

/* Custom styles for the mobile footer */
.mobile-footer {
  display: none;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: #153C89;
  color: white;
  z-index: 1000;
  font-size: 14px;
  overflow-y: auto;
  display: none;
  margin-bottom: 80px;
  padding: 0 16px;
  padding-top: 12px;
}

.footer-section {
  margin-bottom: 0;
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0;
}

.footer-header h6 {
  font-weight: 600;
  margin: 0;
  color: white;
  font-size: 16px;
}

.footer-header .toggle-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.footer-header.expanded .toggle-icon {
  transform: rotate(45deg);
}

.footer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.footer-content.show {
  max-height: 500px;
  padding: 15px 0px;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-footer .footer-content li {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-content li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
  opacity: 80%;
  font-size: 15px;
  font-weight: 400;
}

.mobile-footer .contact-info {
  border-radius: 0;
  margin: 0;
  margin-top: 20px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  min-width: 16px;
}

.social-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.mobile-footer .social-section p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #fff;
  opacity: 80%;
}

.mobile-footer .social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.mobile-footer .social-icons a {
  width: 28px;
  height: 28px;
  display: flex;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 100%;
  transition: all 0.3s;
}

.mobile-footer .social-icons a:hover {
  background-color: #fff;
}

.footer-header {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-footer .social-icons a svg {
  height: 100%;
  width: 100%;
}


.copyright {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 20px;
  font-weight: 400;
  margin: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 2%;
  right: 5px;
  width: 40px;
  height: 50px;
  background: #10b981;
  border-radius: 50px;
  display: flex;
  z-index: 99999999;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transition: all 0.3s;
}

.scoll-top {
  visibility: hidden;
}

.scoll-top.show {
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

/* Demo content styles */
.demo-content {
  padding: 50px 20px;
  text-align: center;
  min-height: 150vh;
}

/* Custom scrollbar for footer */
.mobile-footer::-webkit-scrollbar {
  width: 4px;
}

.mobile-footer::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-footer::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.mobile-footer .footer-section h6 {
  font-size: 18px;
  font-weight: 600;
}

.list-group-item.active {
  background-color: #F5F5F5 !important;
  border: 1px solid #F5F5F5 !important;
}


/* main content  */

.main-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  margin-bottom: 100px;
}

.main-wrapper .main-content {
  width: 100%;
  max-width: 938px;
}

.main-wrapper .side-bar {
  width: 100%;
  max-width: 440px;
}

/* side bar strat*/

.training-section, .doc-gallery {
  max-width: 100%;
  background-color: #F3F6FF;
  padding: 18px;
  border-radius: 12px;
}

.training-section .section-title, .doc-gallery .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  text-align: left;
}

/* First Card - Slider Styles */
.training-section .training-slider-container {
  margin-bottom: 16px;
}

.training-section .training-card {
  height: auto;
  min-height: 400px;
  text-align: center;
  width: 100%;
  position: relative;
}

.training-section .training-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  padding-bottom: 43px;
  padding-top: 16px;
  padding-right: 4px;
  padding-left: 4px;
  background-color: #fff;
  text-align: center;
  border-radius: 12px;
}

.training-section .doctor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 27%;
  margin-bottom: 20px;
  right: 0%;
}

.training-section .doctor-image {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.training-section .doctor-details h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}

.training-section .doctor-details p {
  color: #353535;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.doc-gallery {
  margin-top: 32px;
}

.doc-gallery img {
  background-color: rgba(236, 236, 236, 1);
  border-radius: 12px;
  height: 300px;
  width: 100%;
}
.doc-gallery figcaption {
  font-size: 18px;
  margin-top: 16px;
  font-weight: 600;
}
/* Owl Carousel Custom Styles */
.training-section .owl-carousel .owl-nav {
  display: none;
}

.training-section .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: -141px !important;
  z-index: 9999;
  position: relative;
}

.training-section .owl-carousel .owl-dots span {
  text-align: center;
  margin-top: 20px;
}

.training-section .owl-carousel .owl-dot span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.training-section .owl-carousel .owl-dot.active span {
  background: #4285f4;
}

/* Static Cards Grid */
.training-section .static-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 8px;
}

.training-section .static-card {
  border-radius: 12px;
  padding: 18px;
  height: auto;
}

.training-section .static-card:nth-child(1) {
  background-color: #FAEEEE;
}

.training-section .static-card:nth-child(2) {
  background-color: #DBFAF7;
}

.training-section .static-card:nth-child(3) {
  background-color: #E4EBF9;
}

.training-section .static-card h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 100%;
  color: #153C89;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.training-section .static-card-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.training-section .static-card p {
  font-size: 14px;
  color: #353535;
  line-height: 1.6;
  margin-bottom: 0;
}

.training-section .arrow-icon {
  font-size: 18px;
  color: #4285f4;
}

.specialities-list li {
  margin-bottom: 10px;
}

.speciality-link {
  display: block;
  padding: 10px 15px;
  border: 1px solid #C0C7DE;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
}

.speciality-link:hover {
  background: #e0edff;
  color: #1d4ed8;
}

.speciality-link.active {
  background: white;
  color: #2563eb;
  font-weight: 600;
  border-color: #fff;
}

.our-specialties-section {
  max-width: 100%;
  background-color: #F3F6FF;
  padding: 18px;
  border-radius: 12px;
  margin-top: 20px;
}

.appointment-wrapper {
  margin-top: 32px;
}

.appointment-wrapper .appointment-box {
  background: #153C89;
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
}

.appointment-wrapper .appointment-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.appointment-wrapper .appointment-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
}

.appointment-wrapper .input-box {
  display: flex;
  align-items: self-start;
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 8px;
}

.appointment-wrapper .input-box img {
  margin-right: 14px;
}

.appointment-wrapper .input-box input,
.appointment-wrapper .input-box select,
.appointment-wrapper .input-box textarea {
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  color: #9E9E9E;
  background: transparent;
}

.appointment-wrapper .input-box textarea {
  resize: vertical;
  min-height: 120px;
}

.appointment-wrapper .type-select .radio-box {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.appointment-wrapper .radio-box label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 400;
}

.appointment-wrapper button[type="submit"] {
  width: 100%;
  background: #33DFD6;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.appointment-wrapper button[type="submit"]:hover {
  background: #29c7c0;
}

.radio-group {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  align-items: center;
}

.custom-radio {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 18px;
  color: white;
  user-select: none;
  display: flex;
  align-items: center;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-mark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-radio input:checked~.radio-mark {
  background-color: #33DFD6;
  box-shadow: 0 0 0 2px #0C2A7E inset;
  border-color: #33DFD6;
}

.radio-mark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked~.radio-mark::after {
  display: block;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33DFD6;
}

.callback-form {
  background-color: #48DACB;
  padding: 18px;
  border-radius: 10px;
  width: 100%;
}

.callback-form h2 {
  color: #153C89;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.callback-form .form-group {
  margin-bottom: 15px;
}

.callback-form label {
  display: block;
  color: #000000;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
}

.callback-form input {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  color: #9E9E9E;
  background: transparent;
}

.callback-form .input-box {
  display: flex;
  border: 1px solid #ccc;
  align-items: center;
  padding: 18px;
  padding-left: 14px;
  background-color: #fff;
  border-radius: 8px;
}

.callback-form .input-box img {
  margin-right: 14px;
}

.callback-form button {
  width: 100%;
  cursor: pointer;
}

/* side bar end */

/* main conatiner strat */
.specialty-card-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 100%;
  width: 100%;
  margin: auto;
}

.specialty-card {
  border-radius: 10px;
  padding: 32px;
}

.specialty-card .about-wrapper {
  padding: 24px 0;
  border-bottom: 1px solid rgba(212, 212, 212, 1);
}

.specialty-card .about-wrapper:first-child {
  padding-top: 0;
}

.specialty-card .about-wrapper:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.specialty-title {
  font-size: 28px;
  font-weight: 700;
  color: rgba(21, 60, 137, 1);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  line-height: normal;
}

.specialty-title i {
  margin-right: 10px;
  font-size: 28px;
}

.blue-bg {
  background-color: #F3F6FD;
}

.offwhite-bg {
  background-color: rgba(255, 250, 250, 1);
}

.specialty-title img {
  margin-right: 8px;
}
.star-list li, .star-list-light li {
  position: relative;
  padding-left: 22px;
  line-height: 28px;
  margin-bottom: 4px;
}
.star-list-light li {
  line-height: 26px;
}
.star-list li::before, .star-list-light li::before {
  position: absolute;
  content: '';
  background-image: url(../images/star-bullets.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  left: 0;
  top: 5px;
}
.star-list-light li::before {
  background-image: url(../images/star-light-bullets.svg);
  top: 50%;
  transform: translate(-50%, -50%);
  left: 5px;
}
.red-bg {
  background-color: #FAEEEE;
}

.red-bg .specialty-title i {
  color: #FF6347;
}


/* Styling the image wrapper to give it a specific aspect ratio */

.doctor-img-wrapper {
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio (Square) */
  position: relative;
  background-color: rgba(236, 236, 236, 1);
  /* Image background */
  overflow: hidden;
  border-radius: 12px;
}

.doctor-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.doctor-content-detail {
  margin-top: 16px;
  text-align: center;
}
.owl-carousel .doctor-content-detail span img {
  width: 24px;
  display: inline;
}
.doctor-content-detail h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0%;
  color: #000000;
}
.doctors-carousel .doctor-img-wrapper, .doctors-carousel .doctor-img-wrapper img {
  height: 300px;
}

.doctor-content-detail p {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0%;
  color: #353535;
  margin: 0;
}

.doctor-content-detail span {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0%;
  margin-top: 4px;
  color: #353535;
}

/* Adjusting Owl Carousel Nav/Dots for aesthetics */
.why-dev-nandini-sec .owl-dots {
  margin-top: 28px !important;
  display: flex;
  justify-content: center;
}

.why-dev-nandini-sec .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #D9D9D9 !important;
  /* Tailwind gray-400 */
  display: block;
  -webkit-backface-visibility: visiblewhy-dev-nandini-seccity 200ms ease;
  border-radius: 30px;
}

.why-dev-nandini-sec .owl-dot.active span {
  background: #153C89 !important;
  /* Custom color for active dot */
}


.doctor-card-specialist {
  padding: 16px;
  background-color: #fff;
  display: flex;
  border-radius: 12px;
}

.doctor-details-left {
  width: 100%;
  max-width: 43%;
}

.doctor-details-right {
  width: 100%;
  max-width: 57%;
}
.doctor-details-left-img {
  height: 100%;
}
.doctor-details-left-img img {
  background-color: #ECECEC;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.doctor-details-left-list {
  margin-top: 12px;
}

.doctor-details-list {
  background-color: #ffffff;
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
  padding: 0 22px 16px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.detail-item img {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 4px;
}
.detail-label {
  font-size: 18px;
  font-weight: 600;
  color: #285098;
  flex-shrink: 0;
  width: 32%;
}

.detail-value {
  font-size: 18px;
  color: #555;
  text-align: left;
  flex-grow: 1;
  font-weight: 400;
  width: 55%;
}

.detail-separator {
  border-bottom: 1px solid #eeeeee;
  margin: 0;
}
.doctor-buttons {
    padding: 0 22px;
}

.doctor-buttons .btn {
    width: 49%;
    margin-bottom: 15px;
    white-space: nowrap;
}

.doctor-buttons.full-btn .btn {
    width: 100%;
    margin-bottom: 0;
}
.doctor-details-list .detail-item:last-of-type+.detail-separator {
  display: none;
}

.doctor-summary-block {
  border-radius: 10px;
  padding: 16px 22px 0;
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.doctor-summary-block .doctor-name {
  font-size: 22px;
  font-weight: 700;
  color: #285098;
  margin-top: 0;
  margin-bottom: 12px;
}

.doctor-summary-block .doctor-designation {
  font-size: 16px;
  color: #353535;
  margin-bottom: 12px;
  font-weight: 400;
}

.doctor-summary-block .doctor-bio {
  font-size: 15px;
  color: #353535;
  margin-bottom: 12px;
  line-height: 28px;
}

.doctor-summary-block .doctor-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.why-dev-nandini-sec {
  background-color: #DBFAF7;
}

.why-dev-nandini-sec .specialty-title {
  margin-bottom: 28px;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px 32px;
  max-width: 900px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
}

.feature-item img {
  margin-right: 8px;
}

.feature-item p {
  color: #000000;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.specialty-card .video-cards-container {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.specialty-card .video-card-wraper {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.specialty-card .video-placeholder {
  background-color: #e0e0e0;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
}

.video-placeholder span {
  height: 58px;
  width: 58px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.specialty-card .video-placeholder i.fa-play-circle {
  font-size: 60px;
  /* Size of the play icon */
  color: #20c997;
  /* Teal/Turquoise color for the play icon */
  position: absolute;
  /* Position relative to .video-placeholder */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centering trick */
  transition: color 0.2s ease;
  /* Smooth transition on hover */
}

.specialty-card .video-placeholder:hover i.fa-play-circle {
  color: #1abc9c;
  /* Slightly darker teal on hover */
}

.specialty-card .video-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.faq-accordion-container {
  max-width: 100%;
  width: 100%;
}

.accordion-item {
  background-color: #ffffff;
  border-radius: 10px !important;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.accordion-item[open] {
  background-color: #ffffff;
}

.accordion-item:not([open]) {
  background-color: #fff;
}


.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  list-style: none;
}


.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-header::marker {
  display: none;
}


.accordion-question {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  flex-grow: 1;
  margin-right: 15px;
}

.accordion-header i.fa-plus {
  font-size: 20px;
  color: #153C89;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item[open] .accordion-header i.fa-plus {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 25px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.accordion-content p {
  margin: 0;
}

/* main conatiner end*/
/* main content end */

/* doctor-profile-card strat */

.doctor-profile-card {
  background-color: #48DACB;
  margin-bottom: 40px;
  padding-top: 32px;
}

.doctor-profile-card .container {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

/* Left section - Image Container */
.doctor-profile-card .profile-image-container {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-profile-card .profile-image-container img {
  width: 100%;
  /* Adjust size of the image itself */
  height: 100%;
  object-fit: cover;
}

/* Right section - Details Container */
.doctor-profile-card .profile-details-container {
  flex-grow: 1;
  /* Allows this section to take up remaining space */
  padding: 30px 40px;
  /* Adjust padding as needed */
  color: #333;
  /* Darker text color */
  position: relative;
  /* For positioning the share icon */
}

/* Share Icon */
.doctor-profile-card .share-icon-container {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  border: 1px solid #153C89;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.doctor-profile-card .share-icon {
  width: 18px;
  height: 18px;
  color: #153C89;
}

.doctor-profile-card .share-icon-container:hover {
  background-color: #fff;
  opacity: 0.8;
  border-color: #fff;
}

/* Doctor Name */
.doctor-profile-card .doctor-name {
  font-size: 2.2em;
  /* Adjust font size */
  color: #2c3e50;
  /* Darker blue/grey for the name */
  margin-bottom: 5px;
  font-weight: bold;
}

.doctor-profile-card .doctor-name {
  font-size: 40px;
  color: #153C89;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 2px;
}

.doctor-profile-card .doctor-specialty {
  font-weight: 500;
  color: #000;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 18px;
}

/* Detail Rows (Experience, Education, Language, Specialization) */
.doctor-profile-card .detail-row {
  display: flex;
  /* For label and value to be side by side */
  align-items: baseline;
  /* Align text baselines */
  border-bottom: 1px solid #32BFB1;
  padding: 12px 0;
}

.doctor-profile-card .detail-label {
  font-weight: 600;
  color: #153C89;
  width: 130px;
  /* Fixed width for labels to align values */
  flex-shrink: 0;
  /* Prevent label from shrinking */
  font-size: 18px;
}

.doctor-profile-card .detail-label img {
  width: 16px;
}

.doctor-profile-card .detail-value {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  margin-left: 15px;
}

.custom-bullet-list-container {
  max-width: 100%;
}

.custom-bullet-list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-bullet-list-container li {
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-left: 25px;
  font-weight: 400;
}

.custom-bullet-list-container li::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 0.7em;
  width: 10px;
  height: 10px;
  background-color: #5ec7bb;
  border-radius: 50%;
  transform: translateY(-50%);
}

.team-carousel {
  width: 100%;
  max-width: 100%;
}

.team-carousel .doctor-card {
  display: flex;
  flex-direction: column;
}

.owl-carousel .owl-stage {}


/* doctor-profile-card end */


.tpa-list {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  margin: 5px 0px;
  padding: 16px 0px;
  display: flex;
  align-items: center;
  min-height: 90px;
}

.tpa-list h3 {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 0;
}

.tpa-list .img-col {
  width: 20%;
  max-width: 79px;
}

.tpa-list .title-col {
  width: 80%;
}

.video-card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.play-button img.arrow-icon {
  width: 15px !important;
  height: 21px;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
  border-radius: 12px;
}

.video-title {
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
}

.welcome-slider-1-mobile.owl-carousel .owl-item .icon img {
  width: 24px;
}

.welcome-slider.owl-carousel .owl-item .icon img {
  width: 24px;
}

.appointment-wrapper .input-box input,
.appointment-wrapper .input-box select,
.appointment-wrapper .input-box textarea {
  color: #000000;
}

.callback-form .input-box input,
.callback-form .input-box select,
.callback-form .input-box textarea {
  color: #000000;
}

.our-specialties-section {
  margin-top: 0;
  margin-bottom: 20px;
}

.radio-box {
  padding-bottom: 20px;
}
.radio-box input[type='radio'] {
  margin-right: 3px;
}
span.wpcf7-list-item.last {
    margin-left: 15px;
}
.gtranslate_wrapper span {
  color: #353535;
  font-weight: 500;
  padding-left: 5px;
}

.gtranslate_wrapper .gt_switcher-popup span[style*="font-size:8px"] {
  display: none !important;
}

.appointment-wrapper {
  margin-top: 0px;
}

.callback-form {
  margin-bottom: 32px;
}

.specialty-description:not(:last-child) {
  margin-bottom: 30px;
}

#welcome-sec .hero-section {
  padding: 10px 0 50px 0;
}

/* Add your custom arrow after the language name */
.gtranslate_wrapper .gt_switcher-popup::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 9px;
  margin-left: 1px;
  background: url('../images/Vector.png') no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.gt_switcher-popup img {
  /* visibility: hidden;
				position: relative; */
  content: url("../images/Frame.svg");
  opacity: 1 !important;
  width: 22px;
}

a.glink span {
  padding-left: 0px;
}


/* .gt_switcher-popup img::after {
				content: url("../images/Frame-2.png");
				visibility: visible;
				position: absolute;
				top: 0;
				left: 0;
			}
			.MyClass123{
				content:url("http://imgur.com/SZ8Cm.jpg");
			} */
.text_white {
  color: #ffffff;
}

.specialties-images {
  margin-left: 80px;
}

.quality-image img {
  box-shadow: none;
}

.service-card {
  min-height: 219px;
}

.service-card-content .service-description {
  margin-bottom: 0;
}

.carousel-inner::before {
  right: 110px;
  top: 40px;
}

.doctors-section .doctor-image {
  background-color: #ffffff;
}

.google-rating {
  margin: 0 auto;
}

.wp-gr.wpac {
  padding-bottom: 0 !important;
}

.wp-google-based,
.wp-gr .wp-google-left {
  display: none !important;
}

.wp-gr .wp-google-right {
  text-align: center !important;
}

.case-card h3 {
  margin-bottom: 0;
  padding: 10px 10px 19px 10px;
}

.case-card {
  height: 375px;
}

.section-tag {
  margin-bottom: 12px !important;
}

/*.search-sec{
				padding: 80px 0 !important;
			}
			.search-sec .search-header{
				margin-left: 0px;
			    margin-bottom: 15px;
			}
			.search-sec .search-card{
			    background-color: #FBE9E7;
			}*/
.mb-5 {
  margin-bottom: 5rem;
}

.training-section .training-card {
  min-height: auto;
}

.training-section .doctor-info {
  position: relative;
  top: -50px;
  margin-bottom: 0px;
}

.training-section .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: -40px !important;
}

.training-section .doctor-details p {
  margin-bottom: 0px;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--teal-blue) !important;
}

.wpcf7-not-valid-tip {
  display: block;
  color: #d93025;
  font-size: 14px;
  margin-top: 5px;
}

.gtranslate_wrapper {
  display: inline-block;
  /* color: #ffffff !important; */
}

.gtranslate_wrapper .gt_switcher-popup span {
  color: #ffffff;
  font-weight: 300;
}

/* Make owl nav arrows vertically centered */
.welcome-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  /* lets slides still be clickable */
}

/* Left arrow */
.welcome-slider .owl-nav .owl-prev {
  position: absolute;
  left: 20px;
  /* adjust as per your layout */
  pointer-events: auto;
}

/* Right arrow */
.welcome-slider .owl-nav .owl-next {
  position: absolute;
  right: 20px;
  /* adjust as per your layout */
  pointer-events: auto;
}

/* Style arrows (optional) */
.welcome-slider .owl-prev span,
.welcome-slider .owl-next span {
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 50%;
}

/* Center align dots */
.welcome-slider .owl-dots {
  text-align: center;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  bottom: 16%;
}

/* Inactive dots */
.welcome-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px;
  background: rgba(0, 0, 0, 0.25) !important;
  display: block;
  border-radius: 50%;
  transition: background 0.3s ease;
}

/* Active dot */
.welcome-slider .owl-dots .owl-dot.active span {
  background: #153C89 !important;
}

@media only screen and (max-width: 768px) {
  #welcome-sec {
    padding: 0px 0 0px 0 !important;
  }

  #welcome-sec .upper-content .statistic-section {
    padding: 25px 15px 15px 15px;
  }

  .custom-btn-container {
    margin-bottom: 15px;
  }

  .hero-section-2 {
    margin-top: 22px;
  }

  .hero-section-2 .text-content h1 {
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 39px;
  }

  .hero-section-2 .text-content h1 span {
    font-weight: 400;
  }

  .hero-section-2 .text-content p {
    font-size: 18px;
  }

  .gtranslate_wrapper {
    float: right;
  }

  a.gt_switcher-popup span {
    font-size: 14px !important;
  }

  a.gt_switcher-popup img {
    width: 17px;
  }

  .gtranslate_wrapper .gt_switcher-popup::after {
    width: 10px;
  }

  .top_bar_text_mobile span {
    font-size: 14px;
  }

  .main-header {
    padding: 12px 0;
  }

  .logo-img {
    width: 60%;
  }
}

/* Call & Appointment Modal */
#callModal .modal-dialog, #appointmentModal .modal-dialog {
  width: 640px;
  max-width: 100%;
}
.modal-body.callback-form {
  background-color: transparent;
  margin-bottom: 0;
  text-align: left;
}
.modal-body.callback-form label {
  text-align: left;
}
#callModal .modal-title, #appointmentModal .modal-title {
  font-weight: 700;
}
#callModal .modal-footer {
  border: 0 none;
  padding-top: 0;
}
#callModal .modal-footer p {
  margin-bottom: 4px;
}
.modal-dialog .close {
    background: transparent;
    border: 0 none;
}
.modal-body .radio-group input[type='radio'] {
  width: auto;
}
.modal-body .radio-group label {
  display: inline;
}
.modal-dialog .bootstrap-datetimepicker-widget, .modal-dialog .bootstrap-datetimepicker-widget > * {
  padding: 10px;
}
.modal-dialog .form-select, .modal-dialog textarea, .modal-dialog .form-control {
  border: 0 none;
  padding: 0;
}
.modal-dialog .form-select:focus, .modal-dialog textarea:focus, .modal-dialog .form-control:focus {
  outline: none;
  box-shadow: none;
}
.modal-dialog .select-box {
  align-items: flex-start;
}
/* Call & Appointment Modal */

.d-flex {
  flex-wrap: wrap;
}

/* About Us Page */
.page-header.about_header::after {
  background: url(../images/bannerimg_about.png) no-repeat top right;
}
.page-header.about_header ul {
  margin-top: 28px;
}
.page-header.about_header li {
  display: flex;
  margin-right: 28px;
  align-items: center;
}
.page-header.about_header li p {
  line-height: 20px;
}
.page-header.about_header li strong {
  display: block;
  font-size: 16px;
  color: black;
  font-weight: 500;
}
.page-header.about_header li span {
  font-size: 14px;
  color: rgba(53, 53, 53, 1);
}
.star-list {
  margin-right: 32px;
}
.offwhite-bg .doctor-img-wrapper {
  background-color: rgba(236, 236, 236, 1);
}
.img-items {
  margin-top: 18px;
}
.img-items li {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(21, 60, 137, 0.12);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  min-width: 270px;
}
.img-items li h6 {
    margin-top: 16px;
    font-size: 18px;
    margin-bottom: 0;
}
.d-flex.two-row {
  flex-wrap: wrap;
  gap: 16px;
}
.d-flex.two-row p {
  margin-bottom: 0;
}
.two-row li {
  max-width: 50%;
  width: 50%;
  background-color: #fff;
  border: 1px solid rgba(212, 212, 212, 1);
  padding: 16px;
  border-radius: 8px;
  width: 49%;
}
.d-flex.two-row h4 {
  font-size: 18px;
  color: rgba(26, 150, 137, 1);
  font-weight: 600;
}
.values-bg {
  background-color: rgba(242, 255, 254, 1);
}
.specialities-wrapper .specialities-box {
    padding: 18px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
}
.specialities-wrapper .specialities-box h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.arrow-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.arrow-list li::before {
  position: absolute;
  content: '';
  background: url('../images/right-arrow.svg') no-repeat;
  width: 20px;
  height: 20px;
  left: 0;
  top: 3px;
}
.arrow-list li a {
  color: rgba(53, 53, 53, 1);
  font-weight: 500;
}
.arrow-list li a:hover {
  color: rgba(21, 60, 137, 1);
  text-decoration: underline;
}
.highlights-list li {
  margin-bottom: 26px;
  font-size: 18px;
}
.highlights-list li span {
    width: 32px;
    display: inline-block;
    text-align: right;
}
.highlights-list li img {
  display: inline-block;
  margin-right: 5px
}
.darkteal-bg {
  background-color: rgba(72, 218, 203, 1);
}
.darkblue-bg {
  background-color: rgba(21, 60, 137, 1);
  color: white;
}
.message-wrapper {
  position: relative;
}
.message-wrapper::after {
  background: url('../images/quotes-white.svg') no-repeat top center;
  background-size: contain;
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  top: 0;
  right: 0;
}
.message-box .col-md-9 {
  padding-left: 30px;
}
.message-box .message-desc {
  padding-top: 32px;
}
.message-box h3 {
  font-size: 24px;
  font-weight: 600;
}
.message-box h4 {
  font-size: 20px;
  font-weight: 400;
}
.message-box h5 {
  font-size: 16px;
}
.darkteal-bg .message-box h5 span {
  color: rgba(0, 0, 0, 0.5);
}
.darkblue-bg .message-box h5 span {
  color: rgba(150, 164, 189, 1);
}
.message-desc p:last-child {
  margin-bottom: 0;
}
.message-desc h4.teal-heading {
  font-weight: 700;
  font-size: 18px;
  color: rgba(72, 218, 203, 1);
}
.about-wrapper .d-flex .star-list {
  width: 29%;
}
.specialty-card.darkteal-bg .message-wrapper .message-desc {
  color: #000;
}
.message-desc .btm-border {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
/* About Us Page */

/* Contact Us Page */
.page-header.contact_header::after {
    background: url(../images/contact-page-banner.png) no-repeat top right;
}
.location-cards {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(212, 212, 212, 1);
  margin-bottom: 16px;
}
.location-cards figure {
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: row;
}
.location-cards figure img.loc-image {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  max-width: 200px;
}
.location-cards figure figcaption {
  padding: 0 70px 0 16px;
}
.gradient-bg {
  background: RGBA(21, 60, 137, 1);
  background: linear-gradient(90deg,rgba(21, 60, 137, 1) 50%, rgba(246, 249, 255, 1) 50%);
}
.address-form .address-box {
  padding: 100px 40px 40px 0;
}
.loc-data {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 24px;
}
.loc-data:not(:first-child) {
  padding-top: 24px;
}
.loc-data img {
  margin-right: 25px;
}
.loc-data h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}
.loc-data span a {
  text-decoration: underline;
}
.loc-data span {
  font-size: 16px;
  font-weight: 400;
}
.loc-data .btn-direction {
  color: rgba(21, 60, 137, 1);
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #ffffff 30%, #40e0d0 30%);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: auto;
}
.right-content {
    padding: 40px 0 0 40px;
}
.right-content .contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}
.right-content .nav-tabs {
  border: 1px solid rgba(21, 60, 137, 1);
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 22px;
}
.right-content .nav-tabs .nav-item:first-child .nav-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.right-content .nav-tabs .nav-item:nth-child(2) .nav-link {
  border-radius: 0;
}
.right-content .nav-tabs .nav-item:last-child .nav-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.right-content .nav-tabs .nav-link {
  padding: 16px 18px !important;
  border: 0 none;
  border-radius: var(--bs-nav-tabs-border-radius);
}
.right-content .nav-tabs .nav-link.active, .right-content .nav-tabs .nav-link:hover {
  background-color: rgba(21, 60, 137, 1);
  color: #fff !important;
  transition: none;
}
.callback-form.contact-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}
.callback-form.contact-form .form-select, .callback-form.contact-form textarea, .callback-form.contact-form .form-control {
    border: 0 none;
    padding: 0;
}
.form-select:focus, textarea:focus, .form-control:focus {
    outline: none;
    box-shadow: none;
}
.callback-form.contact-form .input-box.select-box {
    align-items: flex-start;
}
.callback-form.contact-form button {
  width: auto;
  color: #fff !important;
}
.find-location {
  padding: 40px 0;
}
.location-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: rgba(21, 60, 137, 1);
  margin-bottom: 18px;
}
.location-content figcaption h5 {
  font-weight: 600;
}
.location-content figcaption .btn-primary {
  color: #fff !important;
}
/* Contact Us Page */


/* TPA Page */
.page-header.tpa_header::after {
  background: url(../images/tpa-banner-img.png) no-repeat top right;
}
.check-list li {
  font-weight: 500;
  margin-bottom: 8px;
}
.check-list li img {
  display: inline-block;
  margin-right: 5px;
  width: 15px;
}
.tpa-main .specialty-card-container {
  gap: 40px;
}
.lightblue-bg {
  background: rgba(246, 249, 255, 1);
}
.list-of-panels li {
  gap: 12px;
  display: flex;
  align-items: center;
}
.list-of-panels li img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.two-row.list-of-panels li h4 {
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.contact-team-tpa, .tpa-contact-team {
  gap: 28px;
}
.tpa-contact-team {
  display: flex;
  flex-direction: column;
}
.contact-team-tpa .col {
  display: flex;
  align-items: center;
}
.contact-team-tpa figure {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  text-align: center;
}
.contact-team-tpa figure img {
  vertical-align: bottom;
  padding-top: 17px;
}
.contact-team-tpa .user-details {
  margin-left: 24px;
}
.contact-team-tpa .user-details h5 {
  font-size: 20px;
  font-weight: 600;
}
.contact-team-tpa .user-details img {
  width: 18px;
}
.mail-box {
  border: 1px solid rgba(150, 164, 189, 1);
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
}
.mail-box .email-btn {
  background-color: rgba(21, 60, 137, 1);
  height: 38px;
  width: 38px;
  border-radius: 4px;
  padding: 5px;
}
.mail-box .mail-desc h6 {
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
}
.mail-box .mail-desc a {
  text-decoration: underline;
  color: rgba(21, 60, 137, 1);
}
.dos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-box {
  border: 1px solid rgba(212, 212, 212, 1);
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
}
.card-box h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}
/* TPA Page */

/* Nursing Page */
.page-header.nursing_header::after {
    background: url(../images/nursing2-1.png) no-repeat top right;
}
.nursing_about .quality-image {
  margin-left: 0;
  margin-right: 80px;
}
.nursing_about .quality-image figure {
  position: relative;
}
.nursing_about .quality-image figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 16px 21px;
  max-width: fit-content;
  text-align: center;
}
.nursing_about .quality-image figcaption strong {
  color: rgba(21, 60, 137, 1);
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
  display: block;
}
.nursing_about .quality-image figcaption span {
  color: rgba(53, 53, 53, 1);
  font-weight: 600;
}
.mission-vision {
    padding: 40px 0;
}
.mission-vision .row:nth-child(even) {
  padding-top: 40px;
}
.mission-vision .row:nth-child(even) .col-lg-6, .alternate-rows .row:nth-child(even) .col-lg-8 {
  order: 2;
}
.mission-vision .row:nth-child(even) .col-lg-6.text-end, .alternate-rows .row:nth-child(even) .col-lg-4 {
  order: 1;
}
.col-lg-6.text-end {
  position: relative;
}
.mission-vision img {
  border: 6px solid white;
  border-radius: 12px;
}
.img-1-overlay {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(2%, -50%);
}
.section-desc {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 80%;
}
.alternate-rows .row {
  padding-bottom: 24px;
}
.uppercase-title {
  color: rgba(21, 60, 137, 1);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.our-lab, .blue-gradient, .nursing_main .offwhite-bg, .our-highlight, .our-gallery {
  padding: 40px 0;
}
.sub-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}
.our-lab img {
  border-radius: 12px;
}
.blue-gradient {
  background: RGBA(243, 246, 253, 1);
  background: linear-gradient(90deg,rgba(243, 246, 253, 1) 50%, rgba(242, 255, 254, 1) 50%);
}
.white-card {
    padding: 16px;
    gap: 12px;
    background: #fff;
    align-items: center;
    margin-bottom: 16px;
}
.blue-gradient .white-card {
  margin-right: 78px;
}
.blue-gradient .white-card h5 {
  width: 78%;
}
.approvals-col {
  padding-left: 78px;
}
.greencheck-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    line-height: 20px;
    font-weight: 500;
}
.greencheck-list li::before {
  position: absolute;
    content: '';
    background: url(../images/green-check.svg) no-repeat;
    width: 20px;
    height: 13px;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
.leader-details {
    display: flex;
    gap: 32px;
    align-items: center;
}
.leader-img {
    max-width: 210px;
    width: 100%;
    height: 280px;
}
.leader-desc {
    margin-right: 90px;
}
.leader-desc h4 {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 16px;
}
.name-area {
  margin-bottom: 16px;
}
.name-area h4 {
  font-weight: 400;
  margin-bottom: .5rem;
}
.name-area h6, .education h6 {
  font-size: 14px;
  font-weight: 400;
}
.education h4 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: .5rem;
}
.highlight-wrapper {
  gap: 32px;
  padding: 0;
}
.highlight-wrapper .col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 337px;
  gap: 12px;
  flex: 0 0 auto;
  padding: 16px;
  border-radius: 8px;
  min-height: 142px;
}
.highlight-wrapper .hightlight-box:nth-child(1n) {
  background-color: rgba(219, 250, 247, 1);
}
.highlight-wrapper .hightlight-box:nth-child(2n) {
  background-color: rgba(228, 235, 249, 1);
}
.highlight-wrapper .hightlight-box:nth-child(3n) {
  background-color: rgba(250, 238, 238, 1);
}
.dncon-bg {
  background: url(../images/nursing2-1.png) no-repeat top;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}
.dncon-bg::before {
  position: absolute;
  content: '';
  background-color: rgb(255 255 255 / 60%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.center-white-box {
  background-color: #fff;
  width: 65%;
  margin: 0 auto;
  padding: 48px;
  border-radius: 16px;
  position: relative;
}
.center-white-box .star-list {
  width: 48%;
  margin-right: 0;
}
.center-white-box .star-list:first-child {
  margin-right: 45px;
}
.center-white-box .star-list li {
  color: #000000;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}
.btn-direction.btn-blue-gradient {
  color: #fff;
  background: linear-gradient(to right, #ffffff 27%, #133c8b 27%);
  border: 1px solid rgba(212, 212, 212, 1);
}
.blue-gradient .loc-data {
  flex-wrap: nowrap;
}
.blue-gradient .loc-data img {
    margin-right: 16px;
}
.left-form-section {
  padding-right: 78px;
}
.upload-label {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.contact-form.callback-form .upload-box {
  border: 1px dashed rgba(21, 60, 137, 1);
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  color: rgba(21, 60, 137, 1);
  transition: border-color 0.3s ease;
  text-align: center;
  text-decoration: underline;
}

.upload-box:hover {
  border-color: #0073e6;
}

.upload-box input[type="file"] {
  display: none;
}

/* Surgery Page */
.page-header.surgery_header::after {
    background: url(../images/surgery_banner.png) no-repeat top right;
}
.star-list.star-list-sentence li {
  margin-bottom: 12px;
}
