/* 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;
}

.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-description {
  font-size: 16px;
  color: #353535;
  margin-bottom: 0;
  font-weight: 400;
}

.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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.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);
}

.health-awareness-section .video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.health-awareness-section .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.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: 20px;
  color: var(--light-text);
  margin: 0;
}

/* ============= SEARCH FORM STYLES ============= */
.search-section-find-pag {
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-xl);
  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;
}

.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%;
}

.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 {
  max-width: 100%;
  background-color: #F3F6FF;
  padding: 18px;
  border-radius: 12px;
}

.training-section .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%;
}

/* 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%;
}

.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%;
  margin-top: 32px;
  margin-bottom: 80px;
}

.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-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  line-height: normal;
}

.specialty-title i {
  margin-right: 10px;
  font-size: 28px;
}

.specialty-description {
  font-size: 16px;
  color: #353535;
  font-weight: 400;
  line-height: 24px;
}

.blue-bg {
  background-color: #F3F6FD;
}

.specialty-title img {
  margin-right: 8px;
}


.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: white;
  /* 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;
}

.doctor-content-detail h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0%;
  color: #000000;
}

.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;
}

.doctor-details-left {
  width: 100%;
  max-width: 43%;
}

.doctor-details-right {
  width: 100%;
  max-width: 57%;
}

.doctor-details-left-img img {
  background-color: #ECECEC;
}

.doctor-details-left-list {
  margin-top: 12px;
}

.doctor-details-list {
  background-color: #ffffff;
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.detail-label {
  font-size: 18px;
  font-weight: 600;
  color: #285098;
  flex-shrink: 0;
  width: 45%;
}

.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-details-list .detail-item:last-of-type+.detail-separator {
  display: none;
}

.doctor-summary-block {
  border-radius: 10px;
  padding: 16px 26px;
  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;
  align-items: self-start;
  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: 80px;
  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: 124px;
  /* Fixed width for labels to align values */
  flex-shrink: 0;
  /* Prevent label from shrinking */
  font-size: 18px;
}

.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%;
}