@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

body {
  font-family: 'Nunito', sans-serif;
  color: #000000;
  background-color: #fefefe;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.layout_margin-top {
  margin-top: 90px;
}

.layout_margin-bottom {
  margin-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* overflow:hidden removed — it was clipping the mega-menu dropdown */
  overflow: visible;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.hero_video_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}

.sub_page .hero_area {
  min-height: auto;
  background-color: #178066;
  /* Sit above dept_hero images so the dropdown is never obscured */
  position: relative;
  z-index: 500;
}


.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 25px 0;
  position: relative;
  z-index: 10000;
  transition: all 0.3s ease;
  /* Ensure navbar-collapse & mega-menu are never clipped */
  overflow: visible;
}

.header_section .navbar,
.header_section .collapse,
.header_section .navbar-collapse {
  overflow: visible !important;
}

.header_section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #178066;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  overflow: visible;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}



.navbar-brand img {
  height: 115px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 0;
  position: relative;
  /* Allow mega-menu to overflow beyond the navbar bounds */
  overflow: visible !important;
}

.custom_nav-container .navbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Overflow must be visible so the dropdown isn't clipped */
  overflow: visible;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:last-child {
  margin-right: 50px;
}

/* Mega Menu Styles - Forced Solid Background */
.custom_nav-container .navbar-nav .nav-item.has-mega-menu {
  position: relative !important;
}

.custom_nav-container .navbar-nav .nav-item.has-mega-menu .mega-menu {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(0) !important;
  width: min(920px, 95vw) !important;
  background-color: #ffffff !important;
  /* FORCED SOLID WHITE */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid #eeeeee !important;
  border-top: 4px solid #1fab89 !important;
  /* VISUAL GREEN INDICATOR */
  border-radius: 4px !important;
  padding: 35px 45px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  z-index: 99999 !important;
  /* STAY ON TOP OF EVERYTHING */
  pointer-events: none !important;
}

.custom_nav-container .navbar-nav .nav-item.has-mega-menu:hover .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mega-menu-inner {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px 40px !important;
}

.mega-menu-link {
  color: #333333 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: block !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  text-align: left !important;
  letter-spacing: 0.3px !important;
}

.mega-menu-link:hover {
  color: #1fab89 !important;
  /* WEBSITE GREEN */
  background-color: rgba(31, 171, 137, 0.05) !important;
  /* SUBTLE GREEN HIGHLIGHT */
  padding-left: 18px !important;
  /* SMALL MOTION EFFECT */
}

/* Departments nav-link — chevron inline, no wrap */
.custom_nav-container .navbar-nav .nav-item.has-mega-menu>.nav-link {
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.custom_nav-container .navbar-nav .nav-item.has-mega-menu>.nav-link .dept-chevron {
  font-size: 11px;
  transition: transform 0.25s ease;
}

/* Desktop: rotate on hover */
.custom_nav-container .navbar-nav .nav-item.has-mega-menu:hover>.nav-link .dept-chevron {
  transform: rotate(180deg);
}

/* Mobile: rotate when JS adds .is-open */
.custom_nav-container .navbar-nav .nav-item.has-mega-menu.is-open>.nav-link .dept-chevron {
  transform: rotate(180deg);
}

/* Book Appointment Button */
.btn_appointment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 35px;
  background-color: #2e8b6e;
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  margin-left: auto;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn_appointment:hover {
  background-color: #ffffff;
  color: #2e8b6e !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn_appointment i {
  font-size: 15px;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #62d2a2;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 45px 0 70px 0;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box .hero_tag {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-size: 1.1rem;
  margin-left: 4px;
  padding: 0;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.slider_section .detail-box .btn-box a {
  text-align: center;
  min-width: 200px;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}

.slider_section .detail-box .btn-box .btn1 {
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(31, 171, 137, 0.3);
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.slider_section .detail-box .btn-box .btn2 {
  background-color: #ffffff;
  color: #1fab89;
  border: 2px solid #ffffff;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider_section .img-box img {
  width: 100%;
  max-width: 375px;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
}

/* ===== DEPARTMENTS SECTION (Redesigned) ===== */
.department_section {
  position: relative;
  background: linear-gradient(135deg, #f0faf6 0%, #f8fffe 50%, #eef9f4 100%);
}

.department_section .heading_container {
  margin-bottom: 15px;
}

.dept_subtitle {
  color: #666;
  font-size: 16px;
  max-width: 620px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* Department Grid */
.dept_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

/* Individual Card */
.dept_card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.dept_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(31, 171, 137, 0.15);
}

/* Card Image Area */
.dept_card_img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dept_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dept_card:hover .dept_card_img img {
  transform: scale(1.08);
}

.dept_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(23, 128, 102, 0.45) 100%);
  transition: background 0.4s ease;
}

.dept_card:hover .dept_card_overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(23, 128, 102, 0.6) 100%);
}

/* Card Content */
.dept_card_content {
  padding: 25px 22px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Icon Badge */
.dept_icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1fab89, #62d2a2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(31, 171, 137, 0.3);
}

.dept_icon i {
  font-size: 22px;
  color: #ffffff;
}

.dept_card_content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dept_card_content p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Learn More Link */
.dept_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1fab89;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.dept_link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dept_link:hover {
  color: #178066;
}

.dept_link:hover i {
  transform: translateX(5px);
}

/* CTA Button */
.dept_cta {
  text-align: center;
  margin-top: 55px;
}

.dept_cta_btn {
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(31, 171, 137, 0.25);
}

.dept_cta_btn:hover {
  background: transparent;
  color: #178066 !important;
  border-color: #178066;
  box-shadow: 0 4px 15px rgba(31, 171, 137, 0.15);
}

/* ===== END DEPARTMENTS SECTION ===== */

/* ===== DEPT STATS FIX ===== */
.dept_stats_section {
  position: relative;
  z-index: 10;
  margin-top: -60px !important;
  padding-bottom: 20px;
}

.dept_stats_bar {
  margin-top: 0 !important;
  margin-bottom: 20px;
}
/* ===== END DEPT STATS FIX ===== */

.about_section .heading_container {
  margin-bottom: 20px;
}

.about_section .heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.tag_text {
  color: #62d2a2;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  /* Added spacing between tag and heading */
  text-transform: uppercase;
}

.about_section .row {
  display: flex;
  align-items: stretch;
  /* Restored stretch so image matches text height */
}

.about_section .col-md-6 {
  display: flex;
}

.about_section .about_img_container {
  height: 100%;
  width: 100%;
  display: flex;
}

.about_section .about_img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about_section .detail-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Changed from space-between */
  height: auto;
  /* Changed from 100% */
  width: 100%;
  padding: 5px 0 5px 30px;
}

.about_section .detail-box .about_subtitle {
  font-size: 28px;
  color: #1a2a6c;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.about_section .detail-box .about_text {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about_section .detail-box .read_more_btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: #62d2a2;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #62d2a2;
  align-self: flex-start;
  margin-top: auto;
  /* Ensures it stays at the absolute bottom */
}

.about_section .detail-box .read_more_btn:hover {
  background-color: transparent;
  color: #62d2a2;
}

.about_section .about_contact p {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.about_section .about_contact i {
  color: #62d2a2;
  margin-right: 10px;
  width: 20px;
}

.doctor_section {
  background: rgba(98, 210, 162, 0.15);
  padding-bottom: 90px;
}

.doctor_section .heading_container {
  color: #1d1d1d;
  margin-bottom: 40px;
}

.doctor_section .doctor_card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctor_section .doctor_card:hover {
  transform: translateY(-5px);
}

.doctor_section .card_header {
  background: rgba(98, 210, 162, 0.15);
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor_section .card_header i {
  font-size: 65px;
  color: #62d2a2;
}

.doctor_section .card_body {
  padding: 30px 20px 5px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.doctor_section .specialty_tag {
  background: rgba(98, 210, 162, 0.15);
  color: #1a8e72;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: inline-block;
}

.doctor_section .dr_name {
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 2px;
  font-size: 17px;
}

.doctor_section .dr_qual {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
}

.doctor_section .dr_btn {
  background: #2e8b6e;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: 2px solid #2e8b6e;
  margin-top: 5px;
}

.doctor_section .dr_btn:hover {
  background: transparent;
  color: #2e8b6e !important;
}

.doctor_section .btn-box {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.doctor_section .btn-box a {
  display: inline-block;
  padding: 14px 50px;
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(31, 171, 137, 0.3);
}

.doctor_section .btn-box a:hover {
  background-color: transparent;
  color: #1fab89 !important;
}

/* page poster */
.page_poster {
  position: relative;
  background-image: url('hospital-building.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: left;
  /* Changed to left to match reference */
  margin-bottom: 0;
}

.page_poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(108, 122, 137, 0.85);
  /* Slate blue overlay */
  z-index: 1;
}

/* Page specific poster backgrounds */
.page_poster.about_poster {
  background-image: url('about_us.png');
}

.page_poster.doctors_poster {
  background-image: url('doctors.png');
}

.page_poster h1 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  /* White text */
  font-size: 56px;
  font-weight: 800;
  font-style: italic;
  /* Added italic to match reference vibe */
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  /* Softened shadow now that we have an overlay */
}

.contact_section {
  position: relative;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 20px;
  outline: none;
  color: #101010;
  background: #eeeeee;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #000000;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #000000;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #000000;
}

.contact_section .form_container input::placeholder {
  color: #000000;
}

.contact_section .form_container input.message-box {
  height: 175px;
}

.contact_section .contact_form_container button {
  width: 100%;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 55px;
  background: #ffffff;
  color: #178066;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact_section .contact_form_container button:hover {
  background-color: #f8f8f8;
  color: #1fab89;
}

.contact_section .map_container {
  height: 368px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0;
}

.contact_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

.client_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 45px;
  border-radius: 15px;
}

.client_section .box .img-box {
  margin-bottom: 15px;
  min-width: 145px;
  max-width: 145px;
  overflow: hidden;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 7px solid rgba(255, 255, 255, 0.45);
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.client_section .box .detail-box .name img {
  width: 25px;
  margin-bottom: 5px;
}

.client_section .box .detail-box .name h6 {
  color: #62d2a2;
  font-size: 20px;
}

.client_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  background-color: #62d2a2;
  background-position: center;
  border-radius: 5px;
  margin: 0 2.5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #1fab89;
}

.client_section .carousel-control-next {
  left: initial;
}

.footer_section {
  background: #178066;
  color: #ffffff;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer_section h4 {
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer_section .footer_col {
  margin-bottom: 40px;
}

.footer_section .footer_logo {
  margin-bottom: 25px;
}

.footer_section .footer_description {
  line-height: 1.8;
  font-size: 15px;
  opacity: 0.9;
}

.footer_section .footer_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_section .footer_list.dept_list {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 30px;
  justify-content: start;
}

@media (max-width: 991px) {
  .footer_section .footer_list.dept_list {
    grid-template-columns: 1fr;
  }
}

.footer_section .footer_list li {
  margin-bottom: 12px;
}

.footer_section .footer_list li a {
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 15px;
  opacity: 0.85;
}

.footer_section .footer_list li a:hover {
  color: #62d2a2;
  padding-left: 5px;
  opacity: 1;
}

.footer_section .emergency_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_section .emergency_list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
  opacity: 0.9;
}

.footer_section .emergency_list li i {
  width: 25px;
  color: #62d2a2;
  margin-right: 15px;
  font-size: 18px;
}

.footer_section .emergency_list li span {
  flex: 1;
}

.footer_section .footer_social {
  display: flex;
  margin-top: 25px;
}

.footer_section .footer_social a {
  width: 45px;
  height: 45px;
  background: rgba(98, 210, 162, 0.15);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer_section .footer_social a:hover {
  background: #62d2a2;
  color: #ffffff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer_section .footer_social a:active {
  transform: translateY(-2px) scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Custom container width to reduce side gaps on large screens */
@media (min-width: 1200px) {
  .container {
    max-width: 85% !important;
  }
}

/* =============================================
   APPOINTMENT PAGE STYLES
   ============================================= */

.appointment_section {
  background: #f8faf9;
}

.appointment_subtitle {
  color: #777;
  font-size: 16px;
  margin-top: 12px;
  max-width: 550px;
}

/* --- Multi-Step Form Card --- */
.appointment_form_card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.appointment_form_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #178066, #62d2a2, #1fab89);
}

/* --- Step Indicators --- */
.form_steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.step_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.step_item span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #bbb;
  transition: color 0.3s ease;
}

.step_circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8e8e8;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.step_item.active .step_circle {
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(23, 128, 102, 0.35);
  transform: scale(1.1);
}

.step_item.active span {
  color: #178066;
}

.step_item.completed .step_circle {
  background: #62d2a2;
  color: #ffffff;
}

.step_item.completed span {
  color: #62d2a2;
}

.step_line {
  flex: 1;
  height: 3px;
  background: #e8e8e8;
  margin: 0 15px;
  margin-bottom: 22px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* --- Form Step Content --- */
.form_step_content {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}

.form_step_content.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form_section_title {
  font-weight: 700;
  font-size: 20px;
  color: #1d1d1d;
  margin-bottom: 28px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.form_section_title i {
  color: #178066;
  margin-right: 10px;
  font-size: 18px;
}

/* --- Form Fields --- */
.appt_field {
  margin-bottom: 22px;
}

.appt_field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.appt_field label .required {
  color: #e74c3c;
}

.appt_field input,
.appt_field select,
.appt_field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid #e8ece9;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  color: #333;
  background: #fafcfb;
  transition: all 0.3s ease;
  outline: none;
}

.appt_field input:focus,
.appt_field select:focus,
.appt_field textarea:focus {
  border-color: #62d2a2;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(98, 210, 162, 0.12);
}

.appt_field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.appt_field textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Navigation Buttons --- */
.form_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.appt_btn_next,
.appt_btn_prev,
.appt_btn_submit {
  padding: 13px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
}

.appt_btn_next {
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(23, 128, 102, 0.3);
}

.appt_btn_next:hover {
  box-shadow: 0 6px 22px rgba(23, 128, 102, 0.45);
  transform: translateY(-2px);
}

.appt_btn_prev {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.appt_btn_prev:hover {
  border-color: #178066;
  color: #178066;
}

.appt_btn_submit {
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(23, 128, 102, 0.3);
  font-size: 16px;
  padding: 14px 38px;
}

.appt_btn_submit:hover {
  box-shadow: 0 6px 22px rgba(23, 128, 102, 0.45);
  transform: translateY(-2px);
}

.appt_btn_submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* --- Review Card (Step 3) --- */
.review_card {
  background: #f8faf9;
  border-radius: 15px;
  padding: 25px 30px;
  border: 1px solid #e8ece9;
}

.review_section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #dce5df;
}

.review_section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.review_section h6 {
  font-weight: 700;
  color: #178066;
  margin-bottom: 15px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review_section h6 i {
  margin-right: 8px;
}

.review_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review_item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review_label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.review_value {
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

.review_symptoms {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e8ece9;
}

/* --- Success State --- */
.appointment_success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 30px;
  animation: fadeSlideIn 0.5s ease;
}

.success_icon_wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #178066, #62d2a2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  animation: pulseSuccess 2s infinite;
}

.success_icon_wrap i {
  font-size: 45px;
  color: #ffffff;
}

@keyframes pulseSuccess {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(98, 210, 162, 0.4);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(98, 210, 162, 0);
  }
}

.appointment_success h3 {
  font-weight: 700;
  color: #178066;
  margin-bottom: 12px;
  font-size: 26px;
}

.appointment_success p {
  color: #777;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.success_actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.appt_btn_home {
  padding: 12px 28px;
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.appt_btn_home:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 128, 102, 0.35);
}

.appt_btn_new {
  padding: 12px 28px;
  background: transparent;
  color: #178066;
  border: 2px solid #178066;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

.appt_btn_new:hover {
  background: #178066;
  color: #ffffff;
}

/* --- Sidebar --- */
.appointment_sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar_card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.sidebar_card:hover {
  transform: translateY(-3px);
}

.sidebar_card_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sidebar_card_header i {
  font-size: 22px;
  color: #178066;
  width: 45px;
  height: 45px;
  background: rgba(98, 210, 162, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.sidebar_card_header h5 {
  font-weight: 700;
  color: #1d1d1d;
  margin: 0;
  font-size: 17px;
}

/* -- Working Hours -- */
.hours_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f3f3;
  font-size: 14px;
  color: #555;
}

.hours_list li:last-child {
  border-bottom: none;
}

.hours_time {
  font-weight: 700;
  color: #178066;
}

.hours_time.closed {
  color: #e74c3c;
}

/* -- Emergency Card -- */
.sidebar_card_emergency {
  background: linear-gradient(135deg, #178066, #1fab89);
  color: #ffffff;
}

.sidebar_card_emergency .sidebar_card_header i {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.sidebar_card_emergency .sidebar_card_header h5 {
  color: #ffffff;
}

.sidebar_card_emergency p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 18px;
}

.emergency_phone_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #ffffff;
  color: #178066 !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.emergency_phone_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* -- How It Works -- */
.how_it_works {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how_it_works li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

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

.how_step {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(98, 210, 162, 0.15);
  color: #178066;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.how_it_works strong {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 3px;
}

.how_it_works p {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* --- Toast Notification --- */
.appt_toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #333;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.appt_toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   DOCTORS PAGE — DEPARTMENT GROUPS
   ============================================= */

.doctors_page_subtitle {
  color: #777;
  font-size: 16px;
  margin-top: 10px;
  max-width: 550px;
}

.dept_group {
  margin-top: 50px;
  padding-top: 35px;
  border-top: 1px solid #e8ece9;
  animation: fadeSlideIn 0.4s ease;
}

.dept_group:first-of-type {
  margin-top: 40px;
  border-top: none;
  padding-top: 0;
}

.dept_group_title {
  font-weight: 700;
  font-size: 22px;
  color: #1d1d1d;
  margin-bottom: 25px;
  padding-left: 18px;
  border-left: 4px solid #62d2a2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .dept_group_title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 14px;
  }
}

.dept_group_title i {
  color: #178066;
  margin-right: 10px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .dept_group_title i {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
visibility: visible;
}

.mega-dropdown-menu a {
  display: block;
  padding: 11px 20px;
  color: #333 !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.mega-dropdown-menu a:hover {
  background: rgba(98, 210, 162, 0.1);
  color: #178066 !important;
}

/* New Contact Section Styles */
.contact_section {
  background-color: #ffffff;
}

.contact_form_container {
  background-color: #168a6d;
  padding: 45px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form_desc {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact_form_container .form-control {
  height: 50px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #ffffff;
  padding: 10px 20px;
  font-size: 15px;
}

.contact_form_container textarea.form-control {
  height: 150px;
  padding-top: 15px;
}

.contact_form_container .btn_box button {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  color: #168a6d;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s;
}

.contact_form_container .btn_box button:hover {
  background-color: #106651;
  color: #ffffff;
}

.contact_title {
  color: #255461;
  font-weight: bold;
  font-size: 32px;
}

.info_card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border-bottom: 4px solid #1fab89;
  transition: transform 0.3s;
}

.info_card:hover {
  transform: translateY(-5px);
}

.info_card .icon_box {
  color: #1fab89;
  font-size: 30px;
  margin-bottom: 15px;
}

.info_card h5 {
  color: #1fab89;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.info_card .card_line {
  width: 40px;
  height: 3px;
  background-color: #1fab89;
  margin-bottom: 15px;
}

.info_card p {
  margin-bottom: 5px;
  color: #444;
  font-weight: 500;
  line-height: 1.5;
}

.map_section {
  width: 100%;
  background-color: #ffffff;
}

.map_section #googleMap {
  height: 450px !important;
  width: 100%;
  filter: grayscale(10%) contrast(1.1);
}


/* =====================================================
   GLOBAL DROPDOWN FIX — applies to ALL pages
   ===================================================== */

/* 1. dept_hero image sections must sit BELOW the nav header.
      Each dept-*.css sets dept_hero { position:relative } and
      dept_hero_bg { z-index:0 } — we reinforce a low page z-index
      so the header (z-index: 500 on sub_page) always wins.        */
.dept_hero {
  z-index: 1 !important;
}

/* 2. Bootstrap 4 sets overflow:hidden on .collapsing via JS.
      Once the collapse is fully open (.show), we allow scrolling on mobile
      if the content is too long. Fixed height is handled in responsive.css. */
.navbar-collapse.show {
  /* overflow: visible removed to allow scrolling */
}

/* 3. The mega-menu itself must always be above every page section.  */
.mega-menu {
  z-index: 99999 !important;
}

/* 4. Ensure no section that follows the header creates a new
      stacking context that could bury the dropdown.                 */
.dept_stats_section,
.dept_about,
.dept_doctor,
.department_section,
.about_section,
.doctor_section,
.contact_section,
.slider_section {
  position: relative;
  z-index: 0;
}

/* =====================================================
   MOBILE MEGA-MENU — Single-column (reinforced)
   ===================================================== */
@media (max-width: 991px) {
  /* Force single column — no grid on mobile */
  .mega-menu-inner {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    width: 100% !important;
  }

  /* Each department link fills the full row */
  .mega-menu-link {
    display: block !important;
    width: 100% !important;
    padding: 13px 22px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #178066 !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    transition: background 0.2s, padding-left 0.2s !important;
  }

  .mega-menu-link:last-child {
    border-bottom: none !important;
  }

  .mega-menu-link:hover,
  .mega-menu-link:active {
    background: #178066 !important;
    color: #ffffff !important;
    padding-left: 30px !important;
  }

  /* The mega-menu container on mobile */
  .mega-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }
}

/* ===== ANNOUNCEMENT BAR (Auto-Scrolling Marquee) ===== */
.announcement_bar {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0d6b4e 0%, #178066 30%, #1fab89 60%, #178066 100%);
  background-size: 200% 200%;
  animation: announcement_gradient 6s ease infinite;
  color: #ffffff;
  padding: 0;
  z-index: 100000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  height: 44px;
}

@keyframes announcement_gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scrolling track — holds duplicated items */
.announcement_bar_track {
  display: flex;
  width: max-content;
  animation: announcement_scroll 80s linear infinite;
  height: 100%;
}

.announcement_bar:hover .announcement_bar_track {
  animation-play-state: paused;
}

@keyframes announcement_scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each repeated content block */
.announcement_bar_item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  white-space: nowrap;
  height: 44px;
  flex-shrink: 0;
}

/* Separator diamond between repeats */
.announcement_bar_sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  margin-left: 26px;
}

.announcement_bar_icon {
  font-size: 18px;
  animation: announcement_pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes announcement_pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.announcement_bar_text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
}

.announcement_bar_text strong {
  color: #ffd700;
  font-weight: 800;
}

.announcement_bar_cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #178066;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.announcement_bar_cta:hover {
  background: #ffd700;
  color: #0d4d3a;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Close button — floats on the right edge with a fade */
.announcement_bar_close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: linear-gradient(90deg, transparent 0%, #178066 40%);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.announcement_bar_close:hover {
  width: 60px;
  color: #ffd700;
}

/* Slide-up dismiss animation */
.announcement_bar.dismissed {
  animation: announcement_slideUp 0.4s ease forwards;
}

@keyframes announcement_slideUp {
  to {
    max-height: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .announcement_bar {
    height: 38px;
  }
  .announcement_bar_item {
    height: 38px;
    gap: 10px;
    padding: 0 30px;
  }
  .announcement_bar_text {
    font-size: 12px;
  }
  .announcement_bar_cta {
    font-size: 10px;
    padding: 4px 12px;
  }
  .announcement_bar_icon {
    font-size: 14px;
  }
  .announcement_bar_track {
    animation-duration: 120s;
  }
}
/* ===== END ANNOUNCEMENT BAR ===== */

/* ===== DOCTOR CARD IMAGES ===== */
.doctor_section .card_header.has_image {
  padding: 0;
  height: 220px;
  overflow: hidden;
}

.doctor_section .card_header.has_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dept_doctor_card .dept_doctor_photo.has_image {
  padding: 0 !important;
  display: block !important;
  overflow: hidden;
}

.dept_doctor_card .dept_doctor_photo.has_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google_reviews_section {
  background: rgba(98, 210, 162, 0.06);
  padding: 80px 0;
  border-top: 1px solid rgba(98, 210, 162, 0.15);
  border-bottom: 1px solid rgba(98, 210, 162, 0.15);
}

.google_reviews_section .text_google {
  font-weight: 800;
  background: linear-gradient(135deg, #1a73e8 0%, #ea4335 30%, #fbbc05 60%, #34a853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google_rating_summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(98, 210, 162, 0.15);
}

.google_g_circle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google_g_circle img {
  width: 100%;
  height: 100%;
}

.google_rating_summary .summary_stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google_rating_summary .rating_num {
  font-weight: 800;
  font-size: 16px;
  color: #1a2a3a;
}

.google_rating_summary .stars_row {
  color: #fbbc05;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.google_rating_summary .total_reviews {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.google_review_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(98, 210, 162, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.google_review_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(98, 210, 162, 0.12);
  border-color: rgba(98, 210, 162, 0.35);
}

.google_review_card .card_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.google_review_card .reviewer_profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google_review_card .reviewer_avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.google_review_card .reviewer_meta {
  display: flex;
  flex-direction: column;
}

.google_review_card .reviewer_name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0;
  line-height: 1.2;
}

.google_review_card .review_date {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.google_review_card .google_g_logo {
  width: 18px;
  height: 18px;
}

.google_review_card .card_mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.google_review_card .stars_row {
  color: #fbbc05;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.google_review_card .verification_badge {
  font-size: 11px;
  font-weight: 700;
  color: #178066;
  background: rgba(98, 210, 162, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.google_review_card .review_text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}

/* Customize Owl Carousel controls for Google Reviews */
.reviews_owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.reviews_owl-carousel .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #cbd5e1 !important;
  border-radius: 50%;
  display: inline-block;
  outline: none;
  border: none;
  transition: all 0.3s ease;
}

.reviews_owl-carousel .owl-dot.active {
  background: #1fab89 !important;
  transform: scale(1.2);
}

.reviews_owl-carousel .owl-nav {
  display: none;
}

/*# sourceMappingURL=style.css.map */