/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
:root {
  --primary-color: #fb0400;
  --secondary-color: #fba904;
  /* --secondary-color: #f2edb9; */
  --third-color: #1d39a0;
  --fourth-color: #0f4f7f;
  --skyblue-color: #9db4e0;
  --dark-gray-color: #222222;
  --black-color: #000;
  --white-color: #fff;
  --title-color: #161921;
  --light-black: #5a5a5a;
  --navy-blue: #0f2557;
  --hard-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
  --soft-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  --border-light: #e0e0e0;
  --border-medium: #d0d0d0;
  --light-bg: #f8f9fa;
  --container-width: 1320px;
  --container-padding: 20px;
}
/* utility classes start*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

ul {
  list-style: none;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-size: 16px;
  line-height: 28px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  color: var(--black-color);
  overflow-x: clip;
  width: 100%;
}

h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Merriweather", serif;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h3 {
  font-size: 30px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h4 {
  font-size: 25px;
  line-height: 28px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h5 {
  font-size: 22px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h6 {
  font-size: 20px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
/* .nav-container {
    width: 1400px;
    max-width: 90%;
    padding: 0px 74px;
    margin: 0 auto;
  } */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.flex,
.d-flex {
  display: flex;
}
.row {
  display: flex;
  flex-direction: row;
}
.column {
  display: flex;
  flex-direction: column;
}
.space-between,
.justify-between {
  justify-content: space-between;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-start {
  align-items: flex-start;
}
.flex-end {
  align-items: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-end {
  place-content: flex-end;
}
.text-center {
  text-align: center;
}
.grid {
  display: grid;
}
.grid-1-06 {
  grid-template-columns: 1fr 0.64fr;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-1-13-1 {
  grid-template-columns: 1fr 1.3fr 1fr;
}
.overflow-hidden {
  overflow: hidden;
}
button {
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border-radius: 5px;
}
input,
textarea {
  padding: 15px 20px;
  background: transparent;
  border-radius: 5px;
  font-size: 18px;
  font-family: "Inter" !important;
}
input::placeholder,
textarea::placeholder {
  font-family: "Inter" !important;
}
/* GAPS */
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-45 {
  gap: 45px;
}
.gap-60 {
  gap: 60px;
}
.gap-80 {
  gap: 80px;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-300 {
  padding-bottom: 300px;
}
.py-60 {
  padding: 60px 0px;
}
.py-80 {
  padding: 80px 0px;
}
/* MARGINS */
.m-0-auto {
  margin: 0 auto;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-170 {
  margin-top: 170px;
}
.mt--120 {
  margin-top: -120px;
}
.mt--150 {
  margin-top: -150px;
}
.mt--185 {
  margin-top: -185px;
}
/* BACKGROUND-COLORS */
.radial-gradient {
  background-image: radial-gradient(#1f3050, #0f1a2e);
}
.secondary-bg {
  background: var(--secondary-color);
}
.lightblue-bg {
  background: #dee6f5;
}
.lightgrey-bg {
  background: #fafafa;
}
.p-txt {
  color: var(--primary-color);
}
/* POSITION */
.po-relative {
  position: relative;
}
/* RADIUS */
.bdr-radius-0 {
  border-radius: 0px !important;
}
.bdr-radius-5 {
  border-radius: 5px;
}
.bdr-radius-5-0-0-5 {
  border-radius: 5px 0px 0px 5px;
}
.bdr-radius-0-5-5-0 {
  border-radius: 0px 5px 5px 0px;
}
/* FONT-SIZE */
.f-16 {
  font-size: 16px !important;
}
/* WIDTHS */
.w-15 {
  width: 15px;
}
.w-60-h-48 {
  height: 48px;
  width: 60px;
}
.w-52-h-52 {
  height: 52px !important;
  width: 52px !important;
}
.w-h-60 {
  height: 60px;
  width: 60px;
}
.w-h-100 {
  height: 100px;
  width: 100px;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
/* HOVER-EFFECT */
.hvr-link {
  position: relative;
}
.hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.white-hvr-link {
  position: relative;
}
.white-hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
/* HOVER-FLOAT */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}
.image-effect {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.image-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.image-effect:hover img {
  transform: scale(1.04);
}
/* BUTTONS */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 23px;
  font-size: 15.5px;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
  transition: all 0.5s ease-in-out;
}
.primary-btn {
  /* border: 1px solid var(--secondary-color); */
  color: var(--white-color);
  background: var(--third-color);
  /* border: 1px solid var(--primary-color); */
  transition: all 0.5s ease-in-out;
}
.primary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--primary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover {
  /* border: 1px solid var(--primary-color); */
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-btn {
  border: 1px solid;
  color: var(--black-color);
  border: 1px solid var(--primary-color);
  background: var(--third-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn {
  border: 1px solid;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.white-btn {
  border: 1px solid;
  color: var(--black-color);
  border: 1px solid var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--white-color);
  background: var(--white-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.white-btn:hover {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.outlinebtn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--secondary-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}
.outlinebtn2 {
  /* background: var(--white-color); */
  border: 1px solid var(--white-color);
  /* background: var(--third-color); */
  color: var(--white-color);
}
.outlinebtn2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--third-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn2:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn2:hover {
  color: var(--white-color);
  /* background: var(--third-color); */
  border: 1px solid var(--third-color);
}

.outlinebtn3 {
  background: var(--white-color);
  color: var(--black-color);
}
.outlinebtn3::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--black-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn3:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn3:hover {
  color: var(--white-color);
}

.bdr1 {
  border-bottom: 2px solid var(--primary-color);
}
.bdr2 {
  border-bottom: 2px solid var(--secondary-color);
}
.bdr3 {
  border-bottom: 2px solid var(--third-color);
}

/* --- Added Core Utility Classes for Design Consistency --- */

/* Display & Flex Helpers */
.d-inline-flex {
  display: inline-flex;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-none {
  display: none;
}
.flex-1 {
  flex: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}

/* Grid Extensions */
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-1-2 {
  grid-template-columns: 1fr 2fr;
}
.grid-2-1 {
  grid-template-columns: 2fr 1fr;
}

/* Spacing Extensions (Padding & Margin) */
.p-20 {
  padding: 20px;
}
.p-25 {
  padding: 25px;
}
.p-30 {
  padding: 30px;
}
.p-40 {
  padding: 40px;
}
.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}
.py-20 {
  padding: 20px 0;
}
.py-30 {
  padding: 30px 0;
}
.py-40 {
  padding: 40px 0;
}
.py-100 {
  padding: 100px 0;
}
.m-0 {
  margin: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}

/* Typography & Text Helpers */
.primary-txt {
  color: var(--primary-color) !important;
}
.secondary-txt {
  color: var(--secondary-color) !important;
}
.third-txt {
  color: var(--third-color) !important;
}
.dark-txt {
  color: var(--title-color) !important;
}
.white-txt {
  color: var(--white-color) !important;
}
.muted-txt {
  color: var(--light-black) !important;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.lh-1 {
  line-height: 1;
}
.lh-12 {
  line-height: 1.2;
}
.lh-16 {
  line-height: 1.6;
}

/* Background Color Helpers */
.primary-bg {
  background-color: var(--primary-color);
}
.third-bg {
  background-color: var(--third-color);
}
.fourth-bg {
  background-color: var(--fourth-color);
}
.navy-bg {
  background-color: var(--navy-blue);
}
.white-bg {
  background-color: var(--white-color);
}
.light-bg {
  background-color: var(--light-bg);
}

/* Section Tag / Subtitle Badges */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(29, 57, 160, 0.08);
  color: var(--third-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}
.sec-tag-primary {
  background: rgba(251, 4, 0, 0.1);
  color: var(--primary-color);
}
.sec-tag-secondary {
  background: rgba(251, 169, 4, 0.15);
  color: #d98200;
}
.sec-tag-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
}

/* Card, Shadow & Elevation */
.card-shadow {
  background: var(--white-color);
  border: 1px solid var(--border-light);
  box-shadow: var(--soft-shadow);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--hard-shadow);
}
.shadow-soft {
  box-shadow: var(--soft-shadow);
}
.shadow-hard {
  box-shadow: var(--hard-shadow);
}

/* Border Radius Helpers */
.bdr-radius-8 {
  border-radius: 8px;
}
.bdr-radius-10 {
  border-radius: 10px;
}
.bdr-radius-12 {
  border-radius: 12px;
}
.bdr-radius-15 {
  border-radius: 15px;
}
.bdr-radius-20 {
  border-radius: 20px;
}
.bdr-radius-50 {
  border-radius: 50px;
}
.rounded-circle {
  border-radius: 50% !important;
}

/* Icon Box Helpers */
.icon-box-40 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.icon-box-50 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.icon-box-60 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.icon-box-70 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

/* Positioning Helpers */
.po-absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-10 {
  z-index: 10;
}

/* Border Helpers */
.bdr-all {
  border: 1px solid var(--border-light);
}
.bdr-top {
  border-top: 1px solid var(--border-light);
}
.bdr-bottom {
  border-bottom: 1px solid var(--border-light);
}

/* utility classes end*/

/* Header css Start */
.site-header {
  position: relative;
  width: 100%;
  background: var(--white-color);
  z-index: 999;
}

/* 1. Modern Top Ribbon Bar (Clean Light Healthcare Style) */
.header-top-bar {
  background: #f4f8fc;
  color: var(--title-color);
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid #e2edf7;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(251, 4, 0, 0.28);
  transition: all 0.3s ease;
}

.top-emergency-badge:hover {
  background: #d60300;
  transform: translateY(-1px);
  color: var(--white-color);
}

.top-emergency-badge i {
  color: var(--white-color);
  font-size: 12px;
  animation: pulse-icon 1.5s infinite;
}

.top-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e2edf8;
  color: var(--third-color);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(29, 57, 160, 0.12);
}

.top-trust-badge i {
  color: var(--third-color);
  font-size: 12px;
}

@keyframes pulse-icon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-info-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--light-black);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.top-info-chip:hover {
  color: var(--third-color);
}

.top-info-chip i {
  color: var(--third-color);
  font-size: 13px;
}

.top-social-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-social-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--white-color);
  border: 1px solid #d4e3f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--third-color);
  font-size: 12px;
  transition: all 0.3s ease;
}

.top-social-btn:hover {
  background: var(--third-color);
  border-color: var(--third-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: var(--white-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #d4e3f2;
}

.lang-pill-item {
  color: var(--light-black);
  transition: all 0.3s ease;
}

.lang-pill-item.active,
.lang-pill-item:hover {
  color: var(--primary-color);
}

.lang-pill-sep {
  color: #c0d3e8;
  font-size: 11px;
}

/* 2. Header Main Bar (Center Logo & Feature Cards) */
.header-main-bar {
  padding: 10px 0;
  background: var(--white-color);
  border-bottom: 1px solid var(--border-light);
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-wrap .logo-img {
  height: 120px;
  width: auto !important;
  max-width: 280px;
  object-fit: contain;
}

.header-badges-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-badge-card:hover {
  background: var(--white-color);
  border-color: var(--third-color);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.badge-icon.surgery {
  background: rgba(29, 57, 160, 0.1);
  color: var(--third-color);
}

.badge-icon.opd {
  background: rgba(251, 169, 4, 0.15);
  color: #d98200;
}

.badge-icon.critical {
  background: rgba(251, 4, 0, 0.1);
  color: var(--primary-color);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--light-black);
  font-weight: 600;
  line-height: 1.2;
}

.badge-text strong {
  font-size: 13px;
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}

.header-action-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-appointment-btn {
  background: var(--third-color);
  color: var(--white-color);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(29, 57, 160, 0.25);
  transition: all 0.3s ease;
}

.header-appointment-btn:hover {
  background: var(--navy-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 37, 87, 0.35);
  color: var(--white-color);
}

/* 3. Modern Deep Sapphire Navbar */
.header-nav-bar {
  background: linear-gradient(135deg, #0f2557 0%, #16367c 100%);
  box-shadow: 0 4px 20px rgba(15, 37, 87, 0.18);
  transition: all 0.3s ease;
}

.site-header.is-sticky .header-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  animation: headerSlideDown 0.35s ease forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 15px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.nav-item:hover > .nav-link,
.nav-item.active > .nav-link {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
}

.nav-item:hover > .nav-link i {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.nav-item:hover > .nav-link::after,
.nav-item.active > .nav-link::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white-color);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 30px rgba(15, 37, 87, 0.18);
  border-top: 3px solid var(--secondary-color);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--title-color);
  transition: all 0.3s ease;
}

.dropdown-link i {
  font-size: 11px;
  color: var(--light-black);
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: rgba(29, 57, 160, 0.06);
  color: var(--third-color);
  padding-left: 22px;
}

.dropdown-link:hover i {
  color: var(--third-color);
  transform: translateX(3px);
}

/* Nav Right / Vibrant Accent Button */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-contact-btn {
  background: linear-gradient(135deg, #fba904 0%, #e69500 100%);
  color: #1a1a1a;
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(251, 169, 4, 0.35);
  transition: all 0.3s ease;
}

.nav-contact-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: var(--third-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.4);
}

.nav-contact-btn i {
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.nav-contact-btn:hover i {
  color: var(--third-color);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--navy-blue);
  border-radius: 8px;
  padding: 9px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: var(--third-color);
  transform: translateY(-1px);
}

/* Mobile Drawer (Sidebar) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 86%;
  height: 100vh;
  background: var(--white-color);
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer::-webkit-scrollbar {
  width: 5px;
}

.mobile-nav-drawer::-webkit-scrollbar-thumb {
  background: rgba(15, 37, 87, 0.25);
  border-radius: 10px;
}

.mobile-nav-drawer.is-active {
  right: 0;
}

.mobile-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-color);
  position: sticky;
  top: 0;
  z-index: 5;
}

.mobile-drawer-header .mobile-logo {
  height: 52px;
  width: auto;
}

.mobile-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--title-color);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-drawer-close:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.mobile-drawer-body {
  padding: 10px 0;
  flex: 1 0 auto;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
}

.mobile-menu-item {
  border-bottom: 1px solid #f0f4f8;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--title-color);
  transition: all 0.25s ease;
}

.mobile-menu-link:hover {
  color: var(--third-color);
  background: rgba(29, 57, 160, 0.04);
}

.mobile-menu-link.has-dropdown {
  cursor: pointer;
}

.mobile-menu-link i {
  font-size: 11px;
  color: var(--light-black);
  transition: transform 0.3s ease;
}

.mobile-dropdown-list {
  display: none;
  background: #f8fafc;
  padding: 6px 0;
  border-top: 1px solid #edf2f7;
}

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 30px;
  font-size: 13.5px;
  color: var(--title-color);
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
  color: var(--third-color);
  padding-left: 34px;
}

/* Mobile Drawer Footer with Contact Info */
.mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background: #f8fbfe;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.mobile-drawer-cta {
  width: 100%;
  background: var(--third-color);
  color: var(--white-color);
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(29, 57, 160, 0.25);
  transition: all 0.3s ease;
}

.mobile-drawer-cta:hover {
  background: var(--navy-blue);
  color: var(--white-color);
}

.mobile-drawer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* Mobile Menu Row & Dropdown Toggle */
.mobile-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu-row .mobile-menu-link {
  flex: 1;
}

.mobile-dropdown-toggle {
  background: transparent;
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-black);
  transition: all 0.25s ease;
}

.mobile-dropdown-toggle:hover {
  color: var(--third-color);
  background: rgba(29, 57, 160, 0.04);
}

.mobile-dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

/* Mobile Menu Row & Arrow Button */
.mobile-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu-row .mobile-menu-link {
  flex: 1;
}

.mobile-dropdown-toggle {
  background: transparent;
  border: none;
  padding: 13px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-black);
  outline: none;
  transition: all 0.25s ease;
}

.mobile-dropdown-toggle:hover {
  color: var(--third-color);
  background: rgba(29, 57, 160, 0.04);
}

.mobile-dropdown-toggle i {
  font-size: 11px;
  transition: transform 0.3s ease;
  pointer-events: none; /* ensures click registers on button */
}

.mobile-menu-item.is-open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-menu-item.is-open > .mobile-dropdown-list {
  display: block;
}


.drawer-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--white-color);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 12.5px;
  color: var(--title-color);
  font-weight: 600;
  transition: all 0.25s ease;
}

.drawer-contact-card.emergency {
  border-color: rgba(251, 4, 0, 0.3);
  background: rgba(251, 4, 0, 0.04);
  color: var(--primary-color);
}

.drawer-contact-card i {
  font-size: 14px;
  color: var(--third-color);
}

.drawer-contact-card.emergency i {
  color: var(--primary-color);
}

.drawer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 6px;
}

.drawer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--title-color);
  transition: all 0.3s ease;
}

.drawer-social-btn:hover {
  background: var(--third-color);
  color: var(--white-color);
  border-color: var(--third-color);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
/* Header css End */

/* Banner css Start */
.hero-banner-section {
  position: relative;
  background-color: #f5f8fd;
  background-image: 
    linear-gradient(135deg, rgba(238, 246, 255, 0.80) 0%, rgba(255, 255, 255, 0.68) 50%, rgba(238, 246, 255, 0.82) 100%),
    url('../images/banner-abstract-waves.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0 70px;
  overflow: hidden;
}

.hero-swiper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-slide {
  opacity: 1;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 45px;
  align-items: center;
}

/* Left Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 57, 160, 0.08);
  color: var(--third-color);
  border: 1px solid rgba(29, 57, 160, 0.18);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.hero-tag-badge i {
  color: var(--primary-color);
  animation: pulse-icon 1.5s infinite;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: "Merriweather", serif;
}

.hero-content h1 span {
  color: var(--third-color);
  position: relative;
}

.hero-content p {
  font-size: 16px;
  color: var(--light-black);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-btn-primary {
  background: var(--third-color);
  color: var(--white-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(29, 57, 160, 0.3);
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background: var(--navy-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 37, 87, 0.4);
  color: var(--white-color);
}

.hero-btn-emergency {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(251, 4, 0, 0.12);
  transition: all 0.3s ease;
}

.hero-btn-emergency:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 4, 0, 0.25);
}

/* Proof Trust Strip */
.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid #e1edf8;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-proof-item:nth-child(2) .hero-proof-icon {
  background: rgba(251, 169, 4, 0.12);
  color: #d98200;
}

.hero-proof-item:nth-child(3) .hero-proof-icon {
  background: rgba(251, 4, 0, 0.1);
  color: var(--primary-color);
}

.hero-proof-text {
  display: flex;
  flex-direction: column;
}

.hero-proof-text strong {
  font-size: 15px;
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.2;
}

.hero-proof-text span {
  font-size: 12px;
  color: var(--light-black);
  font-weight: 500;
}

/* Right Visual */
.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--white-color);
  background: var(--white-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hero-image-card .hero-slide-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Slider Controls */
.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 15px;
  position: relative;
  z-index: 5;
}

.hero-swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
}

.hero-dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbdbe8;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot-btn.is-active {
  width: 32px;
  border-radius: 20px;
  background: var(--third-color);
}

.hero-slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid #d2e3f3;
  color: var(--third-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.08);
  transition: all 0.3s ease;
}

.hero-arrow-btn:hover {
  background: var(--third-color);
  color: var(--white-color);
  border-color: var(--third-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 57, 160, 0.25);
}
/* Banner css End */

/* Updates Strip css Start */
.hospital-updates-strip {
  background: var(--white-color);
  border-bottom: 1px solid #e1edf8;
  border-top: 1px solid #e8f0f9;
  position: relative;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(15, 37, 87, 0.04);
}

.updates-strip-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 52px;
}

/* Left Live Badge */
.updates-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--third-color) 0%, #15297c 100%);
  color: var(--white-color);
  padding: 0 22px 0 16px;
  height: 100%;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  z-index: 3;
}

.updates-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3838;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.7);
  animation: pulseLiveDot 1.8s infinite;
}

@keyframes pulseLiveDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 56, 56, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0);
  }
}

.updates-badge i {
  color: var(--secondary-color);
  font-size: 13px;
}

/* Marquee Viewport & Track */
.updates-marquee-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 25px, black calc(100% - 25px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 25px, black calc(100% - 25px), transparent);
}

.updates-marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: updatesMarquee 40s linear infinite;
  padding-left: 20px;
}

.updates-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes updatesMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.update-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--title-color);
  padding: 0 10px;
}

.update-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(29, 57, 160, 0.08);
  color: var(--third-color);
  font-size: 11px;
  flex-shrink: 0;
}

.update-text {
  font-weight: 500;
}

.update-text strong {
  font-weight: 700;
  color: var(--third-color);
  margin-right: 4px;
}

.update-text a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.update-text a:hover {
  color: var(--third-color);
}

.update-separator {
  color: #c5d8ea;
  font-size: 14px;
  margin: 0 14px;
  font-weight: 300;
}
/* Updates Strip css End */

/* Quick Services css Start */
.hospital-services-section {
  padding: 80px 0;
  background-color: #edf5fd;
  border-top: 1px solid #d8e8f8;
  border-bottom: 1px solid #d8e8f8;
  position: relative;
  overflow: hidden;
}

.hospital-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bluebg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}

.hospital-services-section .container {
  position: relative;
  z-index: 2;
}

/* 4-Column Grid */
.services-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-highlight-card {
  background: var(--white-color);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 37, 87, 0.08);
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(15, 37, 87, 0.14);
}

/* Category Accent Borders */
.service-highlight-card:nth-child(4n + 1):hover,
.service-highlight-card.card-surgery:hover {
  border-color: var(--third-color);
}

.service-highlight-card:nth-child(4n + 2):hover,
.service-highlight-card.card-critical:hover {
  border-color: var(--primary-color);
}

.service-highlight-card:nth-child(4n + 3):hover,
.service-highlight-card.card-checkups:hover {
  border-color: #d98200;
}

.service-highlight-card:nth-child(4n + 4):hover,
.service-highlight-card.card-empanelments:hover {
  border-color: #059669;
}

/* Card Media Image Container */
.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  background: #eef5ff;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-highlight-card:hover .service-card-media img {
  transform: scale(1.08);
}

/* Circular Icon Badge Over Image - Pseudo-class based for dynamic CMS Repeaters */
.service-card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 4px 16px rgba(15, 37, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
  border: 1px solid rgba(29, 57, 160, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1st Card (4n + 1): Blue Icon */
.service-highlight-card:nth-child(4n + 1) .service-card-icon,
.service-highlight-card.card-surgery .service-card-icon {
  color: var(--third-color);
}

.service-highlight-card:nth-child(4n + 1):hover .service-card-icon,
.service-highlight-card.card-surgery:hover .service-card-icon {
  background: var(--third-color);
  color: var(--white-color);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(29, 57, 160, 0.3);
}

/* 2nd Card (4n + 2): Red Icon */
.service-highlight-card:nth-child(4n + 2) .service-card-icon,
.service-highlight-card.card-critical .service-card-icon {
  color: var(--primary-color);
}

.service-highlight-card:nth-child(4n + 2):hover .service-card-icon,
.service-highlight-card.card-critical:hover .service-card-icon {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(251, 4, 0, 0.3);
}

/* 3rd Card (4n + 3): Gold/Amber Icon */
.service-highlight-card:nth-child(4n + 3) .service-card-icon,
.service-highlight-card.card-checkups .service-card-icon {
  color: #d98200;
}

.service-highlight-card:nth-child(4n + 3):hover .service-card-icon,
.service-highlight-card.card-checkups:hover .service-card-icon {
  background: #d98200;
  color: var(--white-color);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(217, 130, 0, 0.3);
}

/* 4th Card (4n + 4): Green/Emerald Icon */
.service-highlight-card:nth-child(4n + 4) .service-card-icon,
.service-highlight-card.card-empanelments .service-card-icon {
  color: #059669;
}

.service-highlight-card:nth-child(4n + 4):hover .service-card-icon,
.service-highlight-card.card-empanelments:hover .service-card-icon {
  background: #059669;
  color: var(--white-color);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.3);
}

/* Card Body Content */
.service-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.service-card-body h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s ease;
  font-family: "Merriweather", serif;
}

.service-highlight-card:hover .service-card-body h3 {
  color: var(--third-color);
}

/* Card Action Link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--third-color);
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  transition: all 0.3s ease;
}

.service-card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-highlight-card:hover .service-card-link {
  color: var(--primary-color);
}

.service-highlight-card:hover .service-card-link i {
  transform: translateX(5px);
}
/* Quick Services css End */

/* About Section css Start */
.hospital-about-section {
  padding: 80px 0;
  background: var(--white-color);
  position: relative;
}

/* Card Container with Full Flush Left Image */
.about-card-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(15, 37, 87, 0.08);
  border: 2px solid #d4e5f7;
  border-radius: 18px;
  overflow: hidden;
  align-items: stretch;
}

/* Left Flush Media */
.about-card-media {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: #eef5ff;
}

.about-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top-Left Play Video Button */
.about-video-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #48bb78;
  color: var(--white-color);
  width: 86px;
  height: 86px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
  transition: all 0.3s ease;
  z-index: 3;
}

.about-video-btn .play-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.about-video-btn:hover {
  background: #38a169;
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(72, 187, 120, 0.4);
}

.about-video-btn:hover .play-circle {
  background: var(--white-color);
  color: #38a169;
}

/* Right Content Area */
.about-card-content {
  padding: 45px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-title-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.about-title-wrapper::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 60px;
  height: 60px;
  background: #e8eef8;
  border-radius: 50% 60% 40% 70% / 60% 50% 70% 40%;
  z-index: 0;
  opacity: 0.85;
}

.about-title-wrapper h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.22;
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: inherit;
}

.about-title-wrapper h2 span {
  font-weight: 700;
  color: #1e293b;
}

.about-card-content p {
  font-size: 16px;
  color: #556987;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Read More CTA Button */
.about-action-wrap {
  margin: 8px 0 22px;
}

.about-readmore-btn {
  background: #102766;
  color: var(--white-color);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 39, 102, 0.2);
  transition: all 0.3s ease;
}

.about-readmore-btn:hover {
  background: var(--third-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 57, 160, 0.3);
}

.about-readmore-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.about-readmore-btn:hover i {
  transform: translateX(4px);
}

/* 4 Pastel Stat Boxes (2x2 Grid) */
.about-stat-pastel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.stat-pastel-box {
  padding: 20px 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.stat-pastel-box strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  font-family: inherit;
}

.stat-pastel-box span {
  font-size: 13px;
  font-weight: 500;
  color: #556987;
}

.stat-pastel-box:hover {
  transform: translateY(-3px);
}

/* Pastel Tint Variations */
.stat-pastel-box.box-blue {
  background: #e9effd;
}
.stat-pastel-box.box-blue strong {
  color: #5c86e0;
}

.stat-pastel-box.box-green {
  background: #eaf5f2;
}
.stat-pastel-box.box-green strong {
  color: #55b399;
}

.stat-pastel-box.box-warm {
  background: #fcf4e8;
}
.stat-pastel-box.box-warm strong {
  color: #d99b50;
}

.stat-pastel-box.box-grey {
  background: #edf0f4;
}
.stat-pastel-box.box-grey strong {
  color: #6b778c;
}
/* About Section css End */

/* Hospital Achievements css Start */
.hospital-achievements-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}

.achievements-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 21, 48, 0.94) 0%, rgba(16, 39, 102, 0.91) 100%);
  z-index: 1;
}

.hospital-achievements-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.achievements-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.achievements-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}

.achievements-header p {
  font-size: 16px;
  color: #dbe7f8;
  line-height: 1.7;
  margin: 0;
}

/* 4-Column Modern Frosted Cards Grid */
.achievements-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-metric-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 38px 24px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-metric-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* Metric Icon Wrap - Pseudo-class based for Dynamic Repeaters */
.metric-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 1st Card (4n + 1): Blue Icon & Glow */
.achievement-metric-card:nth-child(4n + 1) .metric-icon-wrap,
.achievement-metric-card.card-blue .metric-icon-wrap {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.35);
}

/* 2nd Card (4n + 2): Red Icon & Glow */
.achievement-metric-card:nth-child(4n + 2) .metric-icon-wrap,
.achievement-metric-card.card-red .metric-icon-wrap {
  background: rgba(251, 4, 0, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.35);
}

/* 3rd Card (4n + 3): Gold/Amber Icon & Glow */
.achievement-metric-card:nth-child(4n + 3) .metric-icon-wrap,
.achievement-metric-card.card-gold .metric-icon-wrap {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

/* 4th Card (4n + 4): Green/Teal Icon & Glow */
.achievement-metric-card:nth-child(4n + 4) .metric-icon-wrap,
.achievement-metric-card.card-green .metric-icon-wrap {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.achievement-metric-card:hover .metric-icon-wrap {
  transform: scale(1.1) rotate(6deg);
}

/* Number Counter */
.metric-number-wrap strong {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  display: block;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
  letter-spacing: -0.5px;
}

/* Title & Description */
.metric-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.metric-desc {
  font-size: 14.5px;
  color: #c4d7ed;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
/* Hospital Achievements css End */

/* Specialized Services css Start */
.hospital-specialties-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7faff 0%, #edf4fd 100%);
  border-top: 1px solid #d8e6f5;
  border-bottom: 1px solid #d8e6f5;
  position: relative;
}

/* Header */
.specialties-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.specialties-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e1edfc;
  border: 1px solid #c9dff7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--third-color);
  margin-bottom: 14px;
}

.specialties-tag-pill i {
  color: var(--primary-color);
  font-size: 13px;
}

.specialties-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #102766;
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: "Merriweather", serif;
}

.specialties-header p {
  font-size: 16px;
  color: #556987;
  line-height: 1.7;
  margin: 0;
}

/* 6-Card Grid (3 Columns x 2 Rows) */
.specialties-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.specialty-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e1ecf8;
  box-shadow: 0 8px 25px rgba(15, 37, 87, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 37, 87, 0.13);
  border-color: #cde0f5;
}

/* Media Banner with Floating Icon */
.specialty-card-media {
  position: relative;
 
  height: 210px;
  overflow: hidden;
  background: #e8f0fa;
}

.specialty-card-media img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-card:hover .specialty-card-media img {
  transform: scale(1.08);
}

.specialty-icon-floating {
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.18);
  border: 1px solid #e2edfa;
  transition: all 0.35s ease;
  z-index: 2;
}

.specialty-card:hover .specialty-icon-floating {
  background: var(--third-color);
  color: var(--white-color);
  transform: scale(1.1) rotate(6deg);
}

/* Body */
.specialty-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.specialty-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.specialty-chip {
  background: #edf5fd;
  color: #2b569a;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.specialty-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #102766;
  line-height: 1.35;
  margin-bottom: 10px;
  font-family: inherit;
}

.specialty-card-body p {
  font-size: 15px;
  color: #556987;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* Card Explore Link Button */
.specialty-card-action {
  border-top: 1px solid #edf3fa;
  padding-top: 16px;
}

.specialty-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--third-color);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.specialty-explore-btn i {
  font-size: 12.5px;
  transition: transform 0.3s ease;
}

.specialty-explore-btn:hover {
  color: var(--primary-color);
}

.specialty-explore-btn:hover i {
  transform: translateX(5px);
}

/* Bottom CTA Area */
.specialties-bottom-strip {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.specialties-view-all-btn {
  background: #102766;
  color: var(--white-color);
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(16, 39, 102, 0.22);
  transition: all 0.3s ease;
}

.specialties-view-all-btn:hover {
  background: var(--third-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(29, 57, 160, 0.32);
}

.specialties-view-all-btn i {
  transition: transform 0.3s ease;
}

.specialties-view-all-btn:hover i {
  transform: translateX(5px);
}

.specialties-help-text {
  font-size: 15px;
  color: #556987;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.specialties-help-text i {
  color: var(--primary-color);
}

.specialties-help-text a {
  color: var(--third-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.specialties-help-text a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
/* Specialized Services css End */

/* Why Choose Us css Start */
.hospital-why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e1edf8;
}

.hospital-why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/white-bg-3.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hospital-why-choose-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.why-choose-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.why-choose-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #102766;
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: "Merriweather", serif;
}

.why-choose-header p {
  font-size: 16px;
  color: #556987;
  line-height: 1.7;
  margin: 0;
}

/* 6-Pillar Grid (3 Columns x 2 Rows) */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-pillar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px 30px;
  border: 1px solid #e5edf7;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-pillar-card:hover {
  transform: translateY(-7px);
  border-color: #bad3f2;
  box-shadow: 0 18px 42px rgba(15, 37, 87, 0.12);
}

/* Card Top: Icon and Watermark Number */
.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

/* Pillar Icon Box - Pseudo-class based for dynamic CMS Repeaters */
.pillar-icon-box {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.35s ease;
}

/* 1st Card / 6n + 1: Blue Icon & Background */
.why-pillar-card:nth-child(6n + 1) .pillar-icon-box,
.pillar-icon-box.box-blue {
  background: #eef5ff;
  color: #2b569a;
  border: 1px solid #d4e5fa;
}

.why-pillar-card:nth-child(6n + 1) .pillar-number {
  color: #dce7f5;
}

/* 2nd Card / 6n + 2: Red/Rose Icon & Background */
.why-pillar-card:nth-child(6n + 2) .pillar-icon-box,
.pillar-icon-box.box-red {
  background: #fff0f0;
  color: #fb0400;
  border: 1px solid #fedcdc;
}

.why-pillar-card:nth-child(6n + 2) .pillar-number {
  color: #fce1e1;
}

/* 3rd Card / 6n + 3: Green/Emerald Icon & Background */
.why-pillar-card:nth-child(6n + 3) .pillar-icon-box,
.pillar-icon-box.box-green {
  background: #edf8f3;
  color: #10b981;
  border: 1px solid #d1f2e2;
}

.why-pillar-card:nth-child(6n + 3) .pillar-number {
  color: #d7f1e4;
}

/* 4th Card / 6n + 4: Warm Orange Icon & Background */
.why-pillar-card:nth-child(6n + 4) .pillar-icon-box,
.pillar-icon-box.box-warm {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffedd5;
}

.why-pillar-card:nth-child(6n + 4) .pillar-number {
  color: #fedfc4;
}

/* 5th Card / 6n + 5: Cyan/Teal Icon & Background */
.why-pillar-card:nth-child(6n + 5) .pillar-icon-box,
.pillar-icon-box.box-cyan {
  background: #ecfeff;
  color: #0891b2;
  border: 1px solid #cffafe;
}

.why-pillar-card:nth-child(6n + 5) .pillar-number {
  color: #d1f5fa;
}

/* 6th Card / 6n + 6: Gold/Amber Icon & Background */
.why-pillar-card:nth-child(6n + 6) .pillar-icon-box,
.pillar-icon-box.box-gold {
  background: #fefce8;
  color: #ca8a04;
  border: 1px solid #fef08a;
}

.why-pillar-card:nth-child(6n + 6) .pillar-number {
  color: #fdf3b8;
}

.why-pillar-card:hover .pillar-icon-box {
  transform: scale(1.08) rotate(5deg);
}

.pillar-number {
  font-size: 48px;
  font-weight: 800;
  color: #dce7f5;
  font-family: "Merriweather", serif;
  line-height: 1;
  letter-spacing: -1.5px;
  transition: color 0.35s ease;
}

.why-pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #102766;
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: inherit;
}

.why-pillar-card p {
  font-size: 15px;
  color: #556987;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* Micro Tags */
.pillar-micro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #f0f4f9;
  padding-top: 16px;
}

.pillar-micro-tags span {
  background: #f4f7fb;
  color: #3b567d;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid #e5edf6;
}
/* Why Choose Us css End */

/* Doctors Section css Start */
.hospital-doctors-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7faff 0%, #edf4fd 100%);
  border-top: 1px solid #d8e6f5;
  border-bottom: 1px solid #d8e6f5;
  position: relative;
}

/* Header */
.doctors-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.doctors-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #102766;
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: "Merriweather", serif;
}

.doctors-header p {
  font-size: 16px;
  color: #556987;
  line-height: 1.7;
  margin: 0;
}

/* Doctors Swiper Carousel */
.doctors-carousel-wrapper {
  position: relative;
  margin-bottom: 26px;
}

.doctors-swiper {
  width: 100%;
  padding: 10px 4px 10px;
  overflow: hidden;
  position: relative;
}

.doctors-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  box-sizing: content-box;
}

.doctors-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}

.doctor-profile-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid #e2edfa;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.doctor-profile-card:hover {
  transform: translateY(-8px);
  border-color: #bad3f2;
  box-shadow: 0 18px 42px rgba(15, 37, 87, 0.12);
}

/* Media Box with Soft Curved Backdrop */
.doc-media-wrapper {
  position: relative;
  height: 220px;
  background: linear-gradient(180deg, #edf5fd 0%, #e2effd 100%);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doc-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-profile-card:hover .doc-media-wrapper img {
  transform: scale(1.06);
}

/* Top Right Badge (Medical Stethoscope Badge instead of heart) */
.doc-top-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.12);
  border: 1px solid #e1edfa;
  transition: all 0.3s ease;
  z-index: 2;
}

.doctor-profile-card:hover .doc-top-badge {
  background: var(--third-color);
  color: var(--white-color);
  transform: scale(1.1);
}

/* Details */
.doc-card-details {
  padding: 18px 8px 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.doc-card-details h3 {
  font-size: 19px;
  font-weight: 700;
  color: #102766;
  line-height: 1.3;
  margin-bottom: 5px;
}

.doc-degrees-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #1d39a0;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

/* Meta Details */
.doc-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.doc-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #556987;
  line-height: 1.45;
}

.doc-meta-item i {
  color: #7e94b2;
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}

/* View Profile Button */
.doc-profile-cta-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid #2b569a;
  background: transparent;
  color: #2b569a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doc-profile-cta-btn:hover {
  background: #2b569a;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(43, 86, 154, 0.25);
  transform: translateY(-2px);
}

/* Controls: Arrows + Dots */
.doctors-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.doctors-swiper-prev,
.doctors-swiper-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d4e3f5;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.06);
}

.doctors-swiper-prev:hover,
.doctors-swiper-next:hover {
  background: var(--third-color);
  color: var(--white-color);
  border-color: var(--third-color);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(29, 57, 160, 0.25);
}

/* Pagination Dots */
.doctors-swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
}

.doc-dot-bullet {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #cbdcf2;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.doc-dot-bullet.is-active {
  width: 28px;
  background: var(--third-color);
  box-shadow: 0 2px 8px rgba(29, 57, 160, 0.3);
}

/* Bottom View All Strip */
.doctors-bottom-strip {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.doctors-view-all-btn {
  background: #102766;
  color: var(--white-color);
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(16, 39, 102, 0.22);
  transition: all 0.3s ease;
}

.doctors-view-all-btn:hover {
  background: var(--third-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(29, 57, 160, 0.32);
}

.doctors-view-all-btn i {
  transition: transform 0.3s ease;
}

.doctors-view-all-btn:hover i {
  transform: translateX(5px);
}

.doctors-help-text {
  font-size: 15px;
  color: #556987;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doctors-help-text i {
  color: var(--primary-color);
}

.doctors-help-text a {
  color: var(--third-color);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.doctors-help-text a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
/* Doctors Section css End */

/* Video Feedback Section css Start */
.hospital-video-feedback-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  border-bottom: 1px solid #e1edf8;
}

/* Header */
.video-feedback-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.video-feedback-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #102766;
  line-height: 1.25;
  margin-bottom: 14px;
  font-family: "Merriweather", serif;
}

.video-feedback-header p {
  font-size: 16px;
  color: #556987;
  line-height: 1.7;
  margin: 0;
}

/* Swiper Slider Wrapper */
.video-carousel-wrapper {
  position: relative;
  margin-bottom: 26px;
}

.video-testimonials-swiper {
  width: 100%;
  padding: 10px 4px 10px;
  overflow: hidden;
  position: relative;
}

.video-testimonials-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  box-sizing: content-box;
}

.video-testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Video Feedback Card */
.video-feedback-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2edfa;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.video-feedback-card:hover {
  transform: translateY(-8px);
  border-color: #bad3f2;
  box-shadow: 0 18px 42px rgba(15, 37, 87, 0.12);
}

/* Video Thumbnail Frame with Overlay */
.video-thumb-frame {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #071530;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 21, 48, 0.25) 0%, rgba(7, 21, 48, 0.75) 100%);
  transition: background 0.35s ease;
  z-index: 1;
}

.video-feedback-card:hover .video-thumb-frame img {
  transform: scale(1.08);
}

.video-feedback-card:hover .video-thumb-overlay {
  background: linear-gradient(180deg, rgba(7, 21, 48, 0.15) 0%, rgba(7, 21, 48, 0.85) 100%);
}

/* Dept Tag */
.video-dept-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16, 39, 102, 0.88);
  backdrop-filter: blur(8px);
  color: var(--white-color);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-dept-tag i {
  color: #ffc107;
}

/* Bottom Duration Badge */
.video-badge-duration {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.video-badge-duration i {
  color: #ff0000;
  font-size: 12px;
}

/* Play Button with Glowing Pulse */
.video-play-trigger {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--third-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(29, 57, 160, 0.4);
  transition: all 0.35s ease;
}

.video-play-trigger i {
  margin-left: 3px;
}

.play-pulse-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: playPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.video-feedback-card:hover .video-play-trigger {
  background: var(--primary-color);
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(251, 4, 0, 0.45);
}

/* Video Card Body */
.video-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-star-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.video-star-row .stars {
  color: #f59e0b;
  font-size: 12.5px;
  display: inline-flex;
  gap: 3px;
}

.verified-tag {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.video-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #102766;
  line-height: 1.45;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Patient Info Meta */
.video-patient-info {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #edf3fa;
}

.patient-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef5fd;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #d8e6f7;
  flex-shrink: 0;
}

.patient-meta {
  display: flex;
  flex-direction: column;
}

.patient-meta strong {
  font-size: 14px;
  color: #102766;
  font-weight: 700;
  line-height: 1.3;
}

.patient-meta span {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* Carousel Controls */
.video-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.video-swiper-prev,
.video-swiper-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d4e3f5;
  color: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.06);
}

.video-swiper-prev:hover,
.video-swiper-next:hover {
  background: var(--third-color);
  color: var(--white-color);
  border-color: var(--third-color);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(29, 57, 160, 0.25);
}

.video-swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
}

.video-dot-bullet {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #cbdcf2;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.video-dot-bullet.is-active {
  width: 28px;
  background: var(--third-color);
  box-shadow: 0 2px 8px rgba(29, 57, 160, 0.3);
}

/* Bottom Strip */
.video-feedback-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fbff;
  border: 1px solid #e1edf9;
  border-radius: 14px;
  padding: 16px 24px;
  margin-top: 10px;
}

.google-rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #e1ebf7;
  font-weight: 700;
  color: #1a73e8;
  font-size: 13.5px;
}

.rating-stars-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #556987;
}

.rating-stars-num strong {
  color: #102766;
  font-size: 16px;
}

.stars-gold {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
  font-size: 13px;
}

.video-view-all-btn {
  background: #102766;
  color: var(--white-color);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-view-all-btn:hover {
  background: var(--third-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 57, 160, 0.25);
}

.video-view-all-btn i {
  transition: transform 0.3s ease;
}

.video-view-all-btn:hover i {
  transform: translateX(4px);
}
/* Video Feedback Section css End */

/* Footer css Start */
.site-footer {
  position: relative;
  background-color: #071530;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white-color);
  padding-top: 50px;
  border-top: 4px solid var(--secondary-color);
}

/* 1. Pre-Footer 3-Card Medical Action Hub */
.footer-action-hub {
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: 45px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.hub-card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #e1ecf8;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  transition: width 0.3s ease;
}

.hub-card.card-emergency::before {
  background: var(--primary-color);
}

.hub-card.card-appointment::before {
  background: var(--third-color);
}

.hub-card.card-location::before {
  background: var(--secondary-color);
}

.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.hub-card:hover::before {
  width: 8px;
}

.hub-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.hub-card.card-emergency .hub-icon-wrap {
  background: rgba(251, 4, 0, 0.1);
  color: var(--primary-color);
}

.hub-card.card-appointment .hub-icon-wrap {
  background: rgba(29, 57, 160, 0.1);
  color: var(--third-color);
}

.hub-card.card-location .hub-icon-wrap {
  background: rgba(251, 169, 4, 0.15);
  color: #d98200;
}

.hub-text {
  display: flex;
  flex-direction: column;
}

.hub-text span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--light-black);
  font-weight: 600;
}

.hub-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  margin: 2px 0 4px;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}

.hub-text a {
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.hub-card.card-emergency .hub-text a {
  color: var(--primary-color);
}

.hub-card.card-appointment .hub-text a {
  color: var(--third-color);
}

.hub-card.card-location .hub-text a {
  color: #b86e00;
}

.hub-text a:hover {
  transform: translateX(4px);
}

/* 2. Main Footer Body */
.footer-main-body {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
}

/* Column 1: Hospital Profile */
.footer-profile-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-box {
  margin-bottom: 16px;
}

.footer-logo-box .footer-logo-img {
  height: 95px;
  width: auto !important;
  max-width: 240px;
  object-fit: contain;
  background: var(--white-color);
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-profile-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.footer-social-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(251, 169, 4, 0.35);
}

.footer-badges-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.footer-badge-pill i {
  color: var(--secondary-color);
}

/* Footer Section Titles */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  font-family: "Merriweather", serif;
  letter-spacing: 0.3px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Footer Link Menus */
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links-col ul li a i {
  font-size: 9px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.footer-links-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
}

.footer-links-col ul li a:hover i {
  transform: translateX(2px);
}

/* Column 4: Contact Hub */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card-mini {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-card-mini:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-mini-icon {
  font-size: 15px;
  color: var(--secondary-color);
  margin-top: 3px;
}

.contact-card-mini.emergency-highlight .contact-mini-icon {
  color: var(--primary-color);
  animation: pulse-icon 1.5s infinite;
}

.contact-mini-info {
  display: flex;
  flex-direction: column;
}

.contact-mini-info span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.contact-mini-info a,
.contact-mini-info strong {
  font-size: 13.5px;
  color: var(--white-color);
  font-weight: 600;
  line-height: 1.35;
  transition: all 0.3s ease;
}

.contact-mini-info a:hover {
  color: var(--secondary-color);
}

/* 3. Bottom Strip / Copyright */
.footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: rgba(3, 9, 20, 0.88);
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.footer-bottom-strip p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer-bottom-strip p a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-bottom-strip p a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--third-color);
  color: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(29, 57, 160, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--secondary-color);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 169, 4, 0.4);
}
/* Footer css End */

/* ==========================================================================
   Inner Page Banner css Start (Universal for all Inner Pages)
   ========================================================================== */
.hospital-inner-banner {
  position: relative;
  background-color: #0c204c;
  background-image: url('../images/banner2.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 90px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.hospital-inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 23, 56, 0.4);
  pointer-events: none;
  z-index: 1;
}

.hospital-inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.inner-banner-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.inner-banner-title span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

/* Breadcrumb Navigation */
.inner-breadcrumb-nav {
  display: inline-flex;
  justify-content: center;
}

.inner-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 12px;
  margin: 0;
  list-style: none;
}

.inner-breadcrumb-list .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.inner-breadcrumb-list .breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.inner-breadcrumb-list .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
}

.inner-breadcrumb-list .breadcrumb-item.active {
  color: var(--secondary-color);
  font-size: 13.5px;
  font-weight: 600;
}
/* Inner Page Banner css End */

/* ==========================================================================
   Mission & Vision Page CSS Start
   ========================================================================== */

/* Section 1: Mission & Vision Split Showcase */
.mission-vision-showcase-section {
  position: relative;
  padding: 80px 0;
  background-color: #f1f5fa;
  border-bottom: 1px solid #e2e8f0;
}

.mv-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 0;
}

.hospital-section-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: "Merriweather", serif;
  margin-bottom: 12px;
  text-align: center;
}

.hospital-section-heading span {
  color: var(--primary-color);
}

.values-subtitle-desc {
  font-size: 15.5px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.6;
  text-align: center;
}

.mv-flagship-card {
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow: 0 10px 35px rgba(15, 37, 87, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.mv-flagship-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transition: height 0.3s ease;
}

.mv-flagship-card.mission-card::before {
  background: linear-gradient(90deg, #0d6efd 0%, #00b4d8 100%);
}

.mv-flagship-card.vision-card::before {
  background: linear-gradient(90deg, #fba904 0%, #ff6b35 100%);
}

.mv-flagship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 37, 87, 0.14);
  border-color: rgba(15, 37, 87, 0.2);
}

.mv-flagship-card:hover::before {
  height: 7px;
}

.mv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mv-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.mv-flagship-card:hover .mv-icon-badge {
  transform: scale(1.08) rotate(4deg);
}

.mission-card .mv-icon-badge {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.vision-card .mv-icon-badge {
  background: rgba(251, 169, 4, 0.12);
  color: #d97706;
}

.mv-pill-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 30px;
}

.mission-card .mv-pill-tag {
  background: #e0f2fe;
  color: #0284c7;
}

.vision-card .mv-pill-tag {
  background: #fef3c7;
  color: #b45309;
}

.mv-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.35;
  font-family: "Merriweather", serif;
}

.mv-card-body p {
  font-size: 15px;
  color: #556987;
  line-height: 1.7;
  margin-bottom: 22px;
}

.mv-key-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv-key-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.5;
}

.mv-key-point-item i {
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
}

.mission-card .mv-key-point-item i {
  color: #059669;
}

.vision-card .mv-key-point-item i {
  color: #d97706;
}

.mv-card-footer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.mv-card-footer-banner i {
  color: var(--primary-color);
  font-size: 15px;
  margin-right: 6px;
}

/* Section 2: Core Values 6 Pillars */
.hospital-values-section {
  position: relative;
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.value-box-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.35s ease;
  overflow: hidden;
  z-index: 1;
}

.value-box-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 37, 87, 0.03) 0%, rgba(251, 169, 4, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.value-box-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(15, 37, 87, 0.25);
  box-shadow: 0 14px 30px rgba(15, 37, 87, 0.1);
}

.value-box-card:hover::before {
  opacity: 1;
}

.value-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.value-box-card:hover .value-box-icon {
  background: #0f2557;
  border-color: #0f2557;
  color: #fba904;
  transform: scale(1.1);
}

.value-box-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 10px;
  line-height: 1.35;
}

.value-box-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Section 3: Medical Leadership Commitment */
.hospital-leadership-pledge {
  position: relative;
  padding: 80px 0;
  background: #f1f5fa;
}

.pledge-container-card {
  background: #0f2557;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 37, 87, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}

.pledge-image-col {
  position: relative;
  height: 100%;
  min-height: 380px;
}

.pledge-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pledge-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 37, 87, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--white-color);
}

.pledge-image-badge strong {
  display: block;
  font-size: 15px;
  color: var(--secondary-color);
}

.pledge-image-badge span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
}

.pledge-content-col {
  padding: 45px 40px;
  color: var(--white-color);
}

.pledge-quote-icon {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 16px;
  opacity: 0.85;
}

.pledge-content-col h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 16px;
  line-height: 1.35;
  font-family: "Merriweather", serif;
}

.pledge-content-col p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pledge-footer-action {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pledge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-color);
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pledge-btn:hover {
  background: #e59800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 169, 4, 0.35);
}

.pledge-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.pledge-phone-link:hover {
  color: var(--secondary-color);
}
/* Mission & Vision Page CSS End */

/* ==========================================================================
   CEO Message Page CSS Start
   ========================================================================== */

/* Main CEO Showcase Section */
.hospital-ceo-section {
  position: relative;
  padding: 80px 0;
  background-color: #ffffff;
}

.ceo-message-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 45px;
  align-items: start;
}

/* Left Profile Card */
.ceo-profile-card {
  position: sticky;
  top: 100px;
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 35px rgba(15, 37, 87, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.ceo-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 37, 87, 0.12);
  border-color: rgba(15, 37, 87, 0.18);
}

.ceo-image-frame {
  position: relative;
  height: 380px;
  background: #f1f5f9;
  overflow: hidden;
}

.ceo-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.ceo-profile-card:hover .ceo-image-frame img {
  transform: scale(1.03);
}

.ceo-verified-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 37, 87, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ceo-verified-badge i {
  color: #00e676;
  font-size: 18px;
  flex-shrink: 0;
}

.ceo-verified-badge span {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}

.ceo-profile-body {
  padding: 24px 22px;
}

.ceo-name-wrap {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.ceo-name-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 4px;
  font-family: "Merriweather", serif;
}

.ceo-designation {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.ceo-qualification {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.ceo-quick-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.ceo-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.ceo-contact-item:hover {
  color: var(--primary-color);
}

.ceo-contact-item i {
  color: #0f2557;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.ceo-appointment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(251, 169, 4, 0.3);
}

.ceo-appointment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(251, 169, 4, 0.4);
}

/* Right Content Column */
.ceo-content-wrapper {
  padding-left: 10px;
}

.ceo-quote-lead {
  position: relative;
  background: #f1f5fa;
  border-left: 4px solid var(--secondary-color);
  padding: 22px 28px;
  border-radius: 0 16px 16px 0;
  margin-bottom: 28px;
}

.ceo-quote-lead i {
  font-size: 26px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

.ceo-quote-lead p {
  font-size: 17px;
  font-weight: 600;
  color: #0f2557;
  line-height: 1.6;
  font-style: italic;
  font-family: "Merriweather", serif;
  margin: 0;
}

.ceo-body-text {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.75;
}

.ceo-body-text p {
  margin-bottom: 20px;
}

.ceo-body-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f2557;
  margin: 28px 0 16px;
  font-family: "Merriweather", serif;
}

/* CEO 4 Strategic Pillars */
.ceo-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0 35px;
}

.ceo-pillar-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  transition: all 0.3s ease;
}

.ceo-pillar-item:hover {
  background: #ffffff;
  border-color: rgba(15, 37, 87, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 37, 87, 0.06);
}

.ceo-pillar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ceo-pillar-header i {
  font-size: 18px;
  color: var(--primary-color);
}

.ceo-pillar-header strong {
  font-size: 15px;
  color: #0f2557;
  font-weight: 700;
}

.ceo-pillar-item p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Formal Sign-off Block */
.ceo-signature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 30px;
  border-top: 2px dashed #e2e8f0;
}

.ceo-sign-text strong {
  display: block;
  font-size: 18px;
  color: #0f2557;
  font-family: "Merriweather", serif;
  margin-bottom: 4px;
}

.ceo-sign-text span {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.ceo-official-seal {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 8px 16px;
  border-radius: 30px;
  color: #166534;
  font-size: 12.5px;
  font-weight: 700;
}

.ceo-official-seal i {
  color: #16a34a;
  font-size: 16px;
}

/* CEO Milestones Strip */
.hospital-ceo-milestones {
  position: relative;
  padding: 60px 0;
  background: #0f2557;
  color: var(--white-color);
}

.ceo-milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ceo-milestone-card {
  text-align: center;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.ceo-milestone-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(251, 169, 4, 0.4);
}

.ceo-milestone-card i {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.ceo-milestone-card strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.2;
  margin-bottom: 4px;
}

.ceo-milestone-card span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
/* CEO Message Page CSS End */

/* ==========================================================================
   Surgical Packages Page CSS Start
   ========================================================================== */

/* Main Packages Section */
.surgery-packages-section {
  position: relative;
  padding: 80px 0;
  background-color: #f1f5fa;
}

/* 3-Column Trust / Transparency Feature Cards */
.surgery-trust-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.surgery-trust-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 25px rgba(15, 37, 87, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s ease;
}

.surgery-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 37, 87, 0.2);
  box-shadow: 0 16px 35px rgba(15, 37, 87, 0.1);
}

.surgery-trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #f1f5fa;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.surgery-trust-card:hover .surgery-trust-icon {
  background: #0f2557;
  color: var(--secondary-color);
  transform: scale(1.08);
}

.surgery-trust-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 6px;
  line-height: 1.35;
  font-family: "Merriweather", serif;
}

.surgery-trust-info p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Section 2: Modern Surgical Excellence Section */
.surgery-excellence-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--white-color);
  border-top: 1px solid #e2e8f0;
}

.surgery-excellence-hub {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 12px 35px rgba(15, 37, 87, 0.06);
  position: relative;
  overflow: hidden;
}

.surgery-excellence-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0f2557 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

.hub-top-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5fa;
}

.hub-header-left {
  max-width: 620px;
}

.hub-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5fa;
  color: #0f2557;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.hub-badge-tag i {
  color: var(--primary-color);
}

.hub-header-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin: 0 0 8px 0;
  font-family: "Merriweather", serif;
}

.hub-header-left p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Quick Department Shortcut Pills */
.hub-quick-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hub-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.hub-nav-pill:hover {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  transform: translateY(-2px);
}

.hub-nav-pill.active {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.2);
}

.hub-nav-pill.active i {
  color: var(--secondary-color);
}

/* 3 Modern Value Cards Grid */
.hub-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hub-pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 22px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hub-pillar-card:hover {
  background: var(--white-color);
  border-color: rgba(15, 37, 87, 0.25);
  box-shadow: 0 12px 30px rgba(15, 37, 87, 0.08);
  transform: translateY(-4px);
}

.hub-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #0f2557;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.hub-pillar-card:hover .hub-pillar-icon {
  background: var(--primary-color);
  transform: scale(1.08);
}

.hub-pillar-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f2557;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.hub-pillar-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Hospital Specialty Tab Navigation */
.surgery-tabs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.surgery-tab-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  margin-bottom: 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  width: 100%;
}

.surgery-tab-nav-bar::-webkit-scrollbar {
  height: 5px;
}

.surgery-tab-nav-bar::-webkit-scrollbar-track {
  background: rgba(15, 37, 87, 0.05);
  border-radius: 10px;
}

.surgery-tab-nav-bar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.surgery-tab-nav-bar::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.surgery-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-color);
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #0f2557;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.04);
}

.surgery-tab-pill:hover {
  background: #f8fafc;
  border-color: #0f2557;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.surgery-tab-pill.active {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  box-shadow: 0 6px 20px rgba(15, 37, 87, 0.25);
}

.surgery-tab-pill.active i {
  color: var(--secondary-color);
}

.surgery-tab-pill i {
  font-size: 14px;
  color: var(--primary-color);
}

/* Surgery Tab Content & Accordion Panel */
.surgery-tab-panes-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 35px rgba(15, 37, 87, 0.06);
}

.surgery-tab-pane {
  display: none;
}

.surgery-tab-pane.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* Surgery Accordion Card System */
.surgery-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.surgery-accordion-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff;
}

.surgery-accordion-card:hover {
  border-color: rgba(15, 37, 87, 0.3);
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.08);
}

.surgery-acc-header {
  background: #0f2557;
  color: var(--white-color);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: background 0.25s ease;
}

.surgery-acc-header:hover {
  background: #14316b;
}

.surgery-acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.surgery-acc-title-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0;
  letter-spacing: 0.2px;
}

.surgery-acc-duration-chip {
  background: rgba(251, 169, 4, 0.2);
  color: #fba904;
  border: 1px solid rgba(251, 169, 4, 0.4);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.surgery-acc-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.surgery-accordion-card.is-open .surgery-acc-toggle-icon {
  background: var(--secondary-color);
  color: #1a1a1a;
  transform: rotate(45deg);
}

/* Accordion Body Content */
.surgery-acc-body {
  display: none;
  padding: 26px 24px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.surgery-accordion-card.is-open .surgery-acc-body {
  display: block;
  animation: fadeIn 0.3s ease;
}

.surgery-acc-duration-bar {
  font-size: 15px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5fa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.surgery-acc-duration-bar span {
  color: #d97706;
}

/* Split Columns for Includes & Not Included */
.surgery-acc-breakdown-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-bottom: 22px;
}

.surgery-breakdown-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.surgery-breakdown-col.includes h4 {
  color: #059669;
}

.surgery-breakdown-col.excludes h4 {
  color: #e11d48;
}

.surgery-breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.surgery-breakdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  line-height: 1.45;
}

.surgery-breakdown-col.includes .surgery-breakdown-item i {
  color: #059669;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.surgery-breakdown-col.excludes .surgery-breakdown-item i {
  color: #e11d48;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Bottom Policy Banner */
.surgery-acc-policy-banner {
  background: #f8fafc;
  border-left: 4px solid var(--secondary-color);
  padding: 12px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 13.5px;
  color: #475569;
  margin-bottom: 22px;
  font-weight: 500;
}

.surgery-acc-policy-banner strong {
  color: #0f2557;
}

/* Accordion Action Buttons */
.surgery-acc-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.surgery-acc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f2557;
  color: var(--white-color);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.surgery-acc-btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 37, 87, 0.2);
}

.surgery-acc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5fa;
  color: #0f2557;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.surgery-acc-btn-secondary:hover {
  background: #ffffff;
  border-color: #0f2557;
  color: var(--primary-color);
}

.pkg-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5fa;
  color: #0f2557;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.pkg-call-btn:hover {
  background: #ffffff;
  border-color: #0f2557;
  color: var(--primary-color);
}

/* Critical Care & ICU Page CSS Start */
.icu-overview-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--white-color);
}

.icu-overview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.icu-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(15, 37, 87, 0.08);
  border: 1px solid #e2e8f0;
}

.icu-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.icu-hero-img-wrap:hover .icu-hero-img {
  transform: scale(1.03);
}

.icu-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 37, 87, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icu-img-badge i {
  color: var(--secondary-color);
}

.icu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 27, 35, 0.08);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.icu-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.3;
  margin: 0 0 16px 0;
  font-family: "Merriweather", serif;
}

.icu-lead-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.icu-vitals-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.icu-vital-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.icu-vital-card:hover {
  background: var(--white-color);
  border-color: rgba(15, 37, 87, 0.25);
  box-shadow: 0 8px 22px rgba(15, 37, 87, 0.06);
  transform: translateY(-2px);
}

.icu-vital-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f2557;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icu-vital-card:hover .icu-vital-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.icu-vital-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f2557;
  margin: 0 0 4px 0;
}

.icu-vital-info p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.icu-action-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.icu-btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(227, 27, 35, 0.3);
}

.icu-btn-emergency:hover {
  background: #cc121a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 27, 35, 0.4);
}

.icu-btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f2557;
  color: var(--white-color);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icu-btn-inquiry:hover {
  background: #173778;
  transform: translateY(-2px);
}

/* Units Navigator Card */
.icu-portal-wrapper {
  position: sticky;
  top: 110px;
}

.icu-units-portal-card {
  background: #0f2557;
  border-radius: 24px;
  padding: 32px 26px;
  color: var(--white-color);
  box-shadow: 0 16px 40px rgba(15, 37, 87, 0.15);
}

.icu-portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.icu-portal-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0;
  font-family: "Merriweather", serif;
}

.icu-portal-header span {
  background: rgba(251, 169, 4, 0.2);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.icu-unit-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.icu-unit-link-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--secondary-color);
  transform: translateX(4px);
}

.icu-unit-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icu-unit-link-left i {
  font-size: 15px;
  color: var(--secondary-color);
}

.icu-unit-link-left span {
  font-size: 14.5px;
  font-weight: 600;
}

.icu-unit-link-item i.fa-angle-right {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.icu-unit-link-item:hover i.fa-angle-right {
  transform: translateX(3px);
  color: var(--secondary-color);
}

.icu-portal-badge {
  margin-top: 20px;
  background: rgba(251, 169, 4, 0.15);
  border: 1px solid rgba(251, 169, 4, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #fba904;
}

.icu-portal-badge i {
  font-size: 18px;
}

/* Section 2: High-Tech ICU Infrastructure */
.icu-infra-section {
  position: relative;
  padding: 80px 0;
  background-color: #f1f5fa;
  border-top: 1px solid #e2e8f0;
}

.icu-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.icu-tech-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 22px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.icu-tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f2557, var(--primary-color));
  transition: height 0.3s ease;
}

.icu-tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.1);
  border-color: rgba(15, 37, 87, 0.2);
}

.icu-tech-card:hover::before {
  height: 6px;
}

.icu-tech-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #0f2557;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.icu-tech-card:hover .icu-tech-icon {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.08);
}

.icu-tech-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f2557;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.icu-tech-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Health Checkup Packages Page CSS Start */
/* Package Catalog Matrix Section */
.pkg-catalog-section {
  position: relative;
  padding: 80px 0;
  background-color: #f1f5fa;
  border-top: 1px solid #e2e8f0;
}

.pkg-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  margin-bottom: 36px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  width: 100%;
}

.pkg-nav-bar::-webkit-scrollbar {
  height: 5px;
}

.pkg-nav-bar::-webkit-scrollbar-track {
  background: rgba(15, 37, 87, 0.05);
  border-radius: 10px;
}

.pkg-nav-bar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.pkg-nav-bar::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.pkg-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-color);
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.04);
}

.pkg-tab-pill.active,
.pkg-tab-pill:hover {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.2);
}

.pkg-tab-pill.active i,
.pkg-tab-pill:hover i {
  color: var(--secondary-color);
}

.pkg-tables-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pkg-table-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 12px 35px rgba(15, 37, 87, 0.07);
  position: relative;
  overflow: hidden;
}

.pkg-table-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0f2557 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
}

.pkg-table-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5fa;
  flex-wrap: wrap;
}

.pkg-table-title-group {
  max-width: 650px;
}

.pkg-table-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 169, 4, 0.15);
  color: #d97706;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pkg-table-title-group h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f2557;
  margin: 0 0 6px 0;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pkg-table-title-group p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.pkg-table-meta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pkg-table-pricing {
  text-align: right;
}

.pkg-table-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin: 0 0 4px 0;
}

.pkg-table-count {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0f2557;
  background: #f1f5fa;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Modern Diagnostic Matrix Table */
.health-matrix-table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: var(--white-color);
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(15, 37, 87, 0.03);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.health-matrix-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.health-matrix-table-wrap::-webkit-scrollbar-track {
  background: #f1f5fa;
  border-radius: 10px;
}

.health-matrix-table-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.health-matrix-table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.health-matrix-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  text-align: left;
}

.matrix-thead {
  background: #0f2557;
}

.matrix-thead th {
  padding: 16px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.matrix-thead th:last-child {
  border-right: none;
}

.matrix-thead th i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.matrix-tbody tr {
  border-bottom: 1px solid #e8eef5;
  transition: background 0.2s ease;
}

.matrix-tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.matrix-tbody tr:hover {
  background-color: #f1f5fa;
}

.matrix-tbody tr:last-child {
  border-bottom: none;
}

.matrix-cell {
  padding: 13px 16px;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
  border-right: 1px solid #e8eef5;
  vertical-align: middle;
  line-height: 1.4;
}

.matrix-cell:last-child {
  border-right: none;
}

.matrix-cell.empty-cell {
  color: #94a3b8;
  text-align: center;
  font-style: italic;
}

.pkg-table-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 14px 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.pkg-footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #1e40af;
  font-weight: 600;
}

.pkg-footer-info i {
  font-size: 18px;
  color: #2563eb;
  flex-shrink: 0;
}

.pkg-footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pkg-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.25);
}

.pkg-btn-book:hover {
  background: #cc121a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(227, 27, 35, 0.35);
}

.pkg-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f1f5fa;
  color: #0f2557;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.pkg-btn-call:hover {
  background: var(--white-color);
  border-color: #0f2557;
  color: var(--primary-color);
}

/* Health Checkup Packages Page CSS End */

/* Empanelments & Cashless Insurance Page CSS Start */
.empanel-catalog-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--white-color);
}

.empanel-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  margin-bottom: 36px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  width: 100%;
}

.empanel-filter-nav::-webkit-scrollbar {
  height: 5px;
}

.empanel-filter-nav::-webkit-scrollbar-track {
  background: rgba(15, 37, 87, 0.05);
  border-radius: 10px;
}

.empanel-filter-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.empanel-filter-nav::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.empanel-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.04);
}

.empanel-filter-pill.active,
.empanel-filter-pill:hover {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.2);
}

.empanel-filter-pill.active i,
.empanel-filter-pill:hover i {
  color: var(--secondary-color);
}

/* Brand Cards Grid */
.empanel-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.empanel-brand-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.empanel-brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f2557, var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.empanel-brand-card:hover {
  background: var(--white-color);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 37, 87, 0.1);
  border-color: rgba(15, 37, 87, 0.25);
}

.empanel-brand-card:hover::before {
  opacity: 1;
}

.empanel-logo-box {
  width: 100%;
  height: 85px;
  background: var(--white-color);
  border: 1px solid #edf2f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.empanel-brand-card:hover .empanel-logo-box {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 37, 87, 0.06);
}

.empanel-logo-img {
  max-width: 100%;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.empanel-brand-card:hover .empanel-logo-img {
  transform: scale(1.05);
}

.empanel-brand-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f2557;
  margin: 0;
  line-height: 1.35;
}
/* Empanelments Page CSS End */

/* OPD Schedule Page CSS Start */
.opd-schedule-page-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.opd-schedule-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--white-color);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Department Filter Navigation */
.opd-filter-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 6px 12px 6px;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  width: 100%;
  max-width: 100%;
}

.opd-filter-nav::-webkit-scrollbar {
  height: 5px;
}

.opd-filter-nav::-webkit-scrollbar-track {
  background: rgba(15, 37, 87, 0.05);
  border-radius: 10px;
}

.opd-filter-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.opd-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f8fafc;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f2557;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.opd-filter-pill.active,
.opd-filter-pill:hover {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  box-shadow: 0 6px 16px rgba(15, 37, 87, 0.18);
}

.opd-filter-pill.active i,
.opd-filter-pill:hover i {
  color: var(--secondary-color);
}

/* Modern OPD Table Wrapper */
.opd-table-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(15, 37, 87, 0.05);
  overflow: hidden;
  margin-bottom: 35px;
}

.opd-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.opd-matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.opd-matrix-table thead th {
  background: #0f2557;
  color: var(--white-color);
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--secondary-color);
  white-space: nowrap;
}

.opd-matrix-table thead th:first-child {
  border-top-left-radius: 18px;
}

.opd-matrix-table thead th:last-child {
  border-top-right-radius: 18px;
  text-align: right;
}

.opd-matrix-table tbody tr {
  transition: background-color 0.25s ease;
  border-bottom: 1px solid #f1f5fa;
}

.opd-matrix-table tbody tr:nth-child(even) {
  background-color: #fbfcfe;
}

.opd-matrix-table tbody tr:hover {
  background-color: #f0f6ff;
}

.opd-matrix-table tbody td {
  padding: 20px 24px;
  vertical-align: middle;
  border-bottom: 1px solid #eef2f6;
}

/* Department Cell */
.opd-dept-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.opd-dept-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5fa;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.opd-matrix-table tbody tr:hover .opd-dept-icon {
  background: #0f2557;
  color: var(--secondary-color);
  transform: scale(1.06);
}

.opd-dept-info strong {
  display: block;
  font-size: 15.5px;
  color: #0f2557;
  font-weight: 700;
  margin-bottom: 2px;
}

.opd-dept-info span {
  display: block;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

/* Consultant Cell */
.opd-doctor-cell strong {
  display: block;
  font-size: 15.5px;
  color: #0f2557;
  font-weight: 700;
  margin-bottom: 3px;
  font-family: "Merriweather", serif;
}

.opd-doctor-cell span {
  display: block;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.35;
}

.opd-exp-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
}

/* Timings Slots & Badges */
.opd-timing-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.opd-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  width: fit-content;
  box-shadow: 0 2px 5px rgba(15, 37, 87, 0.03);
}

.opd-time-pill i {
  color: var(--primary-color);
  font-size: 12px;
}

.opd-time-pill.emergency {
  background: rgba(227, 27, 35, 0.08);
  border-color: rgba(227, 27, 35, 0.25);
  color: #b91c1c;
  font-weight: 700;
}

.opd-time-pill.emergency i {
  color: #b91c1c;
}

/* Action Cell */
.opd-action-cell {
  text-align: right;
}

.opd-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.2);
  white-space: nowrap;
}

.opd-btn-book:hover {
  background: #cc121a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(227, 27, 35, 0.3);
}

/* Bottom Notice Banner */
.opd-notice-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.opd-notice-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
}

.opd-notice-text i {
  color: #d97706;
  font-size: 18px;
  flex-shrink: 0;
}

.opd-notice-hotline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  text-decoration: none;
  transition: color 0.2s ease;
}

.opd-notice-hotline:hover {
  color: var(--primary-color);
}
/* OPD Schedule Page CSS End */

/* Patient Safety Page CSS Start */
.safety-page-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 1. Safety Hero Commitment Section */
.safety-hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, var(--white-color) 100%);
}

.safety-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.safety-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 37, 87, 0.08);
  color: #0f2557;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 37, 87, 0.15);
}

.safety-badge-tag i {
  color: var(--primary-color);
}

.safety-hero-text h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #0f2557;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: "Merriweather", serif;
}

.safety-hero-text h2 span {
  color: var(--primary-color);
}

.safety-hero-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.safety-accreditation-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.safety-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f2557;
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.04);
}

.safety-trust-chip i {
  color: #059669;
}

/* Stat Counters Row */
.safety-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.safety-stat-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.safety-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f2557, var(--primary-color));
}

.safety-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 37, 87, 0.09);
}

.safety-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1f5fa;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.safety-stat-card:hover .safety-stat-icon {
  background: #0f2557;
  color: var(--secondary-color);
  transform: scale(1.08);
}

.safety-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: #0f2557;
  margin-bottom: 4px;
  display: block;
  font-family: "Montserrat", sans-serif;
}

.safety-stat-label {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* 1. Patient Safety Protocols Matrix (6 Pillars) */
.safety-protocols-section {
  position: relative;
  padding: 80px 0 90px;
  background-color: var(--white-color);
}

.safety-protocols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.safety-pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.safety-pillar-card:hover {
  background: var(--white-color);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.08);
  transform: translateY(-5px);
}

.safety-pillar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.safety-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 37, 87, 0.07);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.safety-pillar-card:hover .safety-pillar-icon {
  background: #0f2557;
  color: var(--secondary-color);
}

.safety-pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin: 0;
}

.safety-pillar-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 18px;
}

.safety-check-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
}

.safety-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.45;
}

.safety-check-item i {
  color: #059669;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* 2. Safety Facilities & Capacity Benchmark Section */
.safety-facility-section {
  position: relative;
  padding: 90px 0 80px;
  background-color: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.safety-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
}

/* Left Accordion Protocols */
.safety-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.safety-acc-item {
  background: var(--white-color);
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 37, 87, 0.04);
  transition: all 0.25s ease;
}

.safety-acc-item.active {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.08);
}

.safety-acc-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: var(--white-color);
  transition: all 0.2s ease;
}

.safety-acc-header:hover {
  background: #f8fafc;
}

.safety-acc-item.active .safety-acc-header {
  border-bottom: 2px solid #cbd5e1;
  background: #ffffff;
}

.safety-acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.safety-acc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15, 37, 87, 0.08);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.safety-acc-item.active .safety-acc-icon {
  background: #0f2557;
  color: var(--secondary-color);
}

.safety-acc-header strong {
  font-size: 16px;
  color: #0f2557;
  font-weight: 700;
}

.safety-acc-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5fa;
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.safety-acc-item.active .safety-acc-toggle {
  transform: rotate(180deg);
  background: #0f2557;
  color: var(--white-color);
}

.safety-acc-body {
  padding: 22px 26px 24px 26px;
  display: none;
  font-size: 14.5px;
  line-height: 1.7;
  color: #334155;
  background: #f8fafc;
}

.safety-acc-item.active .safety-acc-body {
  display: block;
}

/* Right Benchmark Capacity Box */
.safety-benchmark-card {
  background: #0f2557;
  color: var(--white-color);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 16px 40px rgba(15, 37, 87, 0.2);
  position: relative;
  overflow: hidden;
}

.safety-benchmark-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 169, 4, 0.15) 0%, transparent 70%);
}

.benchmark-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.benchmark-card-head i {
  color: var(--secondary-color);
  font-size: 24px;
}

.benchmark-card-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
  margin: 0;
  font-family: "Merriweather", serif;
}

.benchmark-subtitle {
  font-size: 13.5px;
  color: #94a3b8;
  margin-bottom: 24px;
  line-height: 1.5;
}

.benchmark-points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benchmark-point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.25s ease;
}

.benchmark-point-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--secondary-color);
  transform: translateX(4px);
}

.benchmark-point-item i {
  color: var(--secondary-color);
  font-size: 15px;
  flex-shrink: 0;
}

.benchmark-point-item span {
  font-size: 14px;
  color: #f1f5fa;
  font-weight: 600;
}

/* 4. Speak Up / Patient Rights Banner */
.safety-pledge-banner {
  background: linear-gradient(135deg, #0f2557 0%, #1a365d 100%);
  color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 14px 36px rgba(15, 37, 87, 0.15);
}

.pledge-banner-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 8px;
}

.pledge-banner-content p {
  font-size: 14.5px;
  color: #cbd5e1;
  margin: 0;
  max-width: 650px;
  line-height: 1.6;
}

.pledge-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pledge-btn-hotline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.25);
}

.pledge-btn-hotline:hover {
  background: #cc121a;
  transform: translateY(-2px);
}
/* Patient Safety Page CSS End */

/* Patient Rights & Charter Page CSS Start */
.charter-page-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 1. Patient Rights Charter Section */
.charter-rights-section {
  position: relative;
  padding: 80px 0 90px;
  background-color: var(--white-color);
}

.charter-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.charter-right-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 24px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}

.charter-right-card:hover {
  background: var(--white-color);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(15, 37, 87, 0.08);
  transform: translateY(-4px);
}

.charter-right-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(15, 37, 87, 0.08);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.charter-right-card:hover .charter-right-icon {
  background: #0f2557;
  color: var(--secondary-color);
  transform: scale(1.08);
}

.charter-right-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 6px;
  line-height: 1.35;
}

.charter-right-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* 2. DOs and DON'Ts Dual-Column Comparison Section */
.charter-dodont-section {
  position: relative;
  padding: 90px 0 80px;
  background-color: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.charter-dodont-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* DOs Card */
.charter-do-card {
  background: var(--white-color);
  border: 1px solid #d1fae5;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 10px 32px rgba(5, 150, 105, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.charter-do-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #059669, #10b981);
}

.charter-do-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.charter-do-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.charter-do-title h3 {
  font-size: 22px;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 2px;
  font-family: "Merriweather", serif;
}

.charter-do-title span {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
}

.charter-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.charter-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

.charter-item.do i {
  color: #059669;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* DON'Ts Card */
.charter-dont-card {
  background: var(--white-color);
  border: 1px solid #fee2e2;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 10px 32px rgba(227, 27, 35, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.charter-dont-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.charter-dont-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.charter-dont-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(227, 27, 35, 0.1);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.charter-dont-title h3 {
  font-size: 22px;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 2px;
  font-family: "Merriweather", serif;
}

.charter-dont-title span {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
}

.charter-item.dont i {
  color: #dc2626;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* 3. Grievance Redressal Banner */
.charter-grievance-banner {
  background: linear-gradient(135deg, #0f2557 0%, #1a365d 100%);
  color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 14px 36px rgba(15, 37, 87, 0.15);
}

.grievance-banner-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 8px;
}

.grievance-banner-text p {
  font-size: 14.5px;
  color: #cbd5e1;
  margin: 0;
  max-width: 650px;
  line-height: 1.6;
}

.grievance-btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.25);
  white-space: nowrap;
}

.grievance-btn-pro:hover {
  background: #cc121a;
  transform: translateY(-2px);
}
/* Patient Rights & Charter Page CSS End */

/* Patient Responsibilities Page CSS Start */
.resp-page-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 1. Responsibilities 6-Pillar Matrix Section */
.resp-matrix-section {
  position: relative;
  padding: 80px 0 90px;
  background-color: var(--white-color);
}

.resp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resp-pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.resp-pillar-card:hover {
  background: var(--white-color);
  border-color: #cbd5e1;
  box-shadow: 0 14px 34px rgba(15, 37, 87, 0.08);
  transform: translateY(-5px);
}

.resp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf2f7;
}

.resp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 37, 87, 0.08);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.resp-pillar-card:hover .resp-card-icon {
  background: #0f2557;
  color: var(--secondary-color);
  transform: scale(1.06);
}

.resp-card-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin: 0;
}

.resp-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.resp-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.8px;
  line-height: 1.5;
  color: #334155;
}

.resp-check-item i {
  color: #059669;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* 2. Partnership for Healing Split Section */
.resp-partnership-section {
  position: relative;
  padding: 90px 0 80px;
  background-color: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.resp-partnership-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.partnership-info-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: 0 10px 30px rgba(15, 37, 87, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partnership-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f2557;
  margin-bottom: 14px;
  font-family: "Merriweather", serif;
}

.partnership-info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
}

.partnership-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.highlight-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-box i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.highlight-box strong {
  font-size: 13.5px;
  color: #0f2557;
  display: block;
}

/* Right Support Card */
.resp-support-card {
  background: #0f2557;
  color: var(--white-color);
  border-radius: 22px;
  padding: 38px 32px;
  box-shadow: 0 14px 36px rgba(15, 37, 87, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resp-support-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.resp-support-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.support-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.support-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
}

.support-contact-item i {
  color: var(--secondary-color);
  font-size: 16px;
}

.support-contact-item span {
  font-size: 13.5px;
  color: #f1f5fa;
}

.support-btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.25);
  width: 100%;
}

.support-btn-action:hover {
  background: #cc121a;
  transform: translateY(-2px);
}
/* Patient Responsibilities Page CSS End */

/* Appointment Page CSS Start */
.appointment-page-main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 1. Quick Info Strip */
.appointment-quick-strip {
  padding: 40px 0 0;
  background-color: var(--white-color);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quick-strip-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.quick-strip-card:hover {
  background: var(--white-color);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 37, 87, 0.06);
  transform: translateY(-3px);
}

.quick-strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15, 37, 87, 0.08);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.quick-strip-card.emergency .quick-strip-icon {
  background: rgba(227, 27, 35, 0.1);
  color: var(--primary-color);
}

.quick-strip-card:hover .quick-strip-icon {
  background: #0f2557;
  color: var(--secondary-color);
}

.quick-strip-card.emergency:hover .quick-strip-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

.quick-strip-text span {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.quick-strip-text strong {
  font-size: 15px;
  color: #0f2557;
  display: block;
}

.quick-strip-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

/* 2. Main Appointment Hub Section */
.appointment-main-section {
  position: relative;
  padding: 50px 0 90px;
  background-color: var(--white-color);
}

.appointment-grid-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 36px;
  align-items: start;
}

/* Left Column: OPD Clinical Info & Schedule Card */
.appointment-info-panel {
  background: linear-gradient(145deg, #0f2557 0%, #173474 100%);
  color: var(--white-color);
  border-radius: 24px;
  padding: 38px 32px;
  box-shadow: 0 16px 40px rgba(15, 37, 87, 0.18);
  position: relative;
  overflow: hidden;
}

.appointment-info-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 169, 4, 0.18) 0%, transparent 70%);
}

.info-panel-head {
  margin-bottom: 28px;
}

.info-panel-head h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.info-panel-head p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin: 0;
}

/* OPD Timing Matrix Box */
.opd-summary-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px 20px;
  margin-bottom: 24px;
}

.opd-summary-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opd-summary-title h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opd-summary-badge {
  font-size: 11.5px;
  background: rgba(5, 150, 105, 0.25);
  color: #34d399;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.opd-matrix-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opd-matrix-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.8px;
}

.opd-matrix-item .label {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opd-matrix-item .label i {
  color: var(--secondary-color);
  font-size: 14px;
}

.opd-matrix-item .value {
  color: #ffffff;
  font-weight: 700;
}

.opd-matrix-item .value.free {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Patient Guidance Points */
.appointment-guidance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.guidance-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.guidance-item i {
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Helpdesk Direct Box */
.panel-contact-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.panel-contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-contact-info i {
  font-size: 20px;
  color: var(--secondary-color);
}

.panel-contact-info span {
  font-size: 12px;
  color: #94a3b8;
  display: block;
}

.panel-contact-info a {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 700;
  text-decoration: none;
}

/* Right Column: Appointment Form Card */
.appointment-form-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 14px 40px rgba(15, 37, 87, 0.08);
}

.form-header-wrap {
  margin-bottom: 28px;
}

.form-header-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0f2557;
  margin-bottom: 6px;
  font-family: "Merriweather", serif;
}

.form-header-wrap p {
  font-size: 14.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.booking-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-input-group label {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f2557;
}

.form-input-group label span.required {
  color: var(--primary-color);
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
  pointer-events: none;
  transition: color 0.2s ease;
}

.booking-input,
.booking-select,
.booking-textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
}

.booking-textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 95px;
}

.booking-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
  background: var(--white-color);
  border-color: #0f2557;
  box-shadow: 0 0 0 4px rgba(15, 37, 87, 0.08);
}

.input-with-icon:focus-within i {
  color: #0f2557;
}

/* Time Slot Radio Buttons Group */
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-slot-option {
  position: relative;
}

.time-slot-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.time-slot-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}

.time-slot-label strong {
  font-size: 13px;
  color: #0f2557;
}

.time-slot-label span {
  font-size: 11px;
  color: #64748b;
}

.time-slot-option input[type="radio"]:checked + .time-slot-label {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
}

.time-slot-option input[type="radio"]:checked + .time-slot-label strong,
.time-slot-option input[type="radio"]:checked + .time-slot-label span {
  color: var(--white-color);
}

/* WhatsApp Notification Checkbox */
.form-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
}

.form-checkbox-wrap input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #059669;
  cursor: pointer;
}

.form-checkbox-wrap i {
  color: #25d366;
  font-size: 16px;
}

/* Submit Action Button */
.btn-book-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #c41219 100%);
  color: var(--white-color);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.25);
}

.btn-book-submit:hover {
  background: #b51016;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(227, 27, 35, 0.35);
}

.form-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  text-align: center;
}

/* 3. Three-Step Booking Journey Section */
.appointment-steps-section {
  position: relative;
  padding: 80px 0;
  background-color: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

.steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.booking-step-card {
  background: var(--white-color);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.booking-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 37, 87, 0.08);
}

.step-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: 900;
  color: #e2e8f0;
  font-family: "Merriweather", serif;
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 37, 87, 0.08);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.booking-step-card:hover .step-icon {
  background: #0f2557;
  color: var(--secondary-color);
}

.booking-step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 8px;
}

.booking-step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
/* Appointment Page CSS End */

/* Doctors Archive Page CSS Start */
.doctors-archive-page {
  width: 100%;
  max-width: 100%;
}

.doctors-archive-section {
  padding: 60px 0 80px;
  background-color: #f8fafc;
}

.doctors-archive-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 36px;
  align-items: flex-start;
}

/* 1. Left Filter Sidebar */
.doctors-filter-sidebar {
  background: var(--white-color);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.04);
  position: -webkit-sticky;
  position: sticky;
  top: 85px;
  margin-top: 0;
  z-index: 10;
  align-self: flex-start;
  max-height: calc(100vh - 105px);
  overflow-y: auto;
}

.doctors-filter-sidebar::-webkit-scrollbar {
  width: 4px;
}

.doctors-filter-sidebar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.filter-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #e2e8f0;
}

.filter-head-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-head-toggle h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f2557;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-filter-toggle-icon {
  display: none;
}

.filter-sidebar-body {
  display: block;
}

.clear-filters-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.clear-filters-btn:hover {
  background: rgba(227, 27, 35, 0.08);
}

/* Search Box */
.filter-search-box {
  position: relative;
  margin-bottom: 24px;
}

.filter-search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

.filter-search-input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 13.5px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
}

.filter-search-input:focus {
  background: var(--white-color);
  border-color: #0f2557;
  box-shadow: 0 0 0 3px rgba(15, 37, 87, 0.08);
}

/* Filter Groups */
.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 14px;
}

.filter-group-title i {
  color: #64748b;
  font-size: 13px;
}

.filter-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 4px;
}

/* Custom Scrollbar for list */
.filter-checkbox-list::-webkit-scrollbar {
  width: 4px;
}

.filter-checkbox-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.filter-checkbox-item:hover {
  background: #f1f5f9;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0f2557;
  cursor: pointer;
}

.filter-count-badge {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 12px;
}

.filter-checkbox-item:hover .filter-count-badge {
  background: #e2e8f0;
  color: #0f2557;
}

/* 2. Right Content Area */
.doctors-content-area {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Grid for Archive */
.doctors-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Empty State */
.doctors-empty-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: var(--white-color);
  border: 1.5px dashed #cbd5e1;
  border-radius: 20px;
  width: 100%;
}

.doctors-empty-state.active {
  display: block;
}

.empty-state-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.doctors-empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 8px;
}

.doctors-empty-state p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* Pagination Bar */
.doctors-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: var(--white-color);
  color: #0f2557;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.pagination-btn.active {
  background: #0f2557;
  border-color: #0f2557;
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(15, 37, 87, 0.2);
}

/* Bottom Call to Action Card */
.doctors-bottom-cta {
  background: linear-gradient(135deg, #0f2557 0%, #173474 100%);
  border-radius: 20px;
  padding: 36px 40px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 14px 36px rgba(15, 37, 87, 0.16);
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.doctors-bottom-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 169, 4, 0.2) 0%, transparent 70%);
}

.cta-text-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cta-text-side h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 4px;
}

.cta-text-side p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
}

.cta-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(227, 27, 35, 0.3);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.cta-action-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}
/* Doctors Archive Page CSS End */

/* ==========================================================================
   Photo Gallery Archive Page CSS Start (Simple Clean Grid)
   ========================================================================== */
.gallery-archive-page {
  width: 100%;
  max-width: 100%;
}

.gallery-archive-section {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

/* 3-Column Simple Photo Gallery Grid */
.gallery-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

/* Simple Gallery Card */
.simple-gallery-card {
  background: var(--white-color);
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 37, 87, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.simple-gallery-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.09);
}

/* Thumbnail Area */
.simple-gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f1f5f9;
}

.simple-gallery-thumb img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.simple-gallery-card:hover .simple-gallery-thumb img {
  transform: scale(1.06);
}

/* Card Body & Title */
.simple-gallery-body {
  padding: 18px 20px 22px;
  background: var(--white-color);
}

.simple-gallery-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin: 0;
  font-family: "Merriweather", serif;
}

.simple-gallery-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.simple-gallery-title a:hover {
  color: var(--primary-color);
}

/* Pagination Bar */
.gallery-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
/* Photo Gallery Archive Page CSS End */

/* ==========================================================================
   Video Gallery Archive Page CSS Start
   ========================================================================== */
.video-archive-page {
  width: 100%;
  max-width: 100%;
}

.video-archive-section {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

/* 3-Column Video Gallery Grid (No Swiper) */
.video-gallery-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.video-gallery-archive-grid .video-feedback-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 37, 87, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-gallery-archive-grid .video-feedback-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.09);
}
/* Video Gallery Archive Page CSS End */

/* ==========================================================================
   News & Blog Archive Page CSS Start
   ========================================================================== */
.news-archive-page {
  width: 100%;
  max-width: 100%;
}

.news-archive-section {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

/* 3-Column News Grid */
.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

/* News Card */
.news-card {
  background: var(--white-color);
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 37, 87, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.09);
}

/* Thumbnail Area */
.news-thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.news-thumb-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-thumb-wrap img {
  transform: scale(1.07);
}

.news-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 37, 87, 0.9);
  backdrop-filter: blur(8px);
  color: var(--white-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content Area */
.news-content-wrap {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-meta-item i {
  color: var(--primary-color);
  font-size: 12px;
}

.news-meta-dot {
  color: #cbd5e1;
}

.news-title {
  font-size: 18.5px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.4;
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-title a:hover {
  color: var(--primary-color);
}

.news-excerpt {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f2557;
  text-decoration: none;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  transition: all 0.25s ease;
}

.news-read-more i {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.news-read-more:hover {
  color: var(--primary-color);
}

.news-read-more:hover i {
  transform: translateX(4px);
}
/* News & Blog Archive Page CSS End */

/* ==========================================================================
   Medical Services Archive Page CSS Start
   ========================================================================== */
.services-archive-page {
  width: 100%;
  max-width: 100%;
}

.services-archive-section {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

/* 3-Column Services Grid */
.services-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

/* Bottom Assistance CTA Strip */
.services-bottom-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #0f2557 0%, #1a3875 100%);
  border-radius: 20px;
  padding: 30px 36px;
  color: var(--white-color);
  box-shadow: 0 12px 32px rgba(15, 37, 87, 0.12);
  margin-top: 50px;
}

.services-help-text-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-help-text-wrap i {
  font-size: 34px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.help-text-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 4px;
}

.help-text-content p {
  font-size: 13.5px;
  color: #cbd5e1;
  margin: 0;
}

.services-help-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 13px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(227, 27, 35, 0.3);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.services-help-phone-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}
/* Medical Services Archive Page CSS End */

/* ==========================================================================
   Clinical Departments Archive Page CSS Start
   ========================================================================== */
.departments-archive-page {
  width: 100%;
  max-width: 100%;
}

.departments-archive-section {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

/* 3-Column Grid */
.departments-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

/* Department Card */
.department-archive-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 37, 87, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.department-archive-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.1);
}

/* Card Thumbnail Area */
.dept-card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.dept-card-thumb img {
  width: 100% !important;
  max-width: 100% Im !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.department-archive-card:hover .dept-card-thumb img {
  transform: scale(1.07);
}

.dept-icon-floating {
  position: absolute;
  bottom: 14px;
  left: 18px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f2557 0%, #1a3875 100%);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(15, 37, 87, 0.3);
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.department-archive-card:hover .dept-icon-floating {
  transform: scale(1.1);
}

.dept-avail-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #0f2557;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

/* Card Body */
.dept-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Procedure Tags */
.dept-procedure-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.proc-pill {
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.dept-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.dept-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dept-card-title a:hover {
  color: var(--primary-color);
}

.dept-card-excerpt {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer */
.dept-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.dept-doctor-count {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dept-doctor-count i {
  color: var(--primary-color);
  font-size: 13px;
}

.dept-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f2557;
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.dept-explore-btn i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.dept-explore-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.25);
}

.dept-explore-btn:hover i {
  transform: translateX(3px);
}
/* Clinical Departments Archive Page CSS End */

/* ==========================================================================
   Single Service Detail Page CSS Start
   ========================================================================== */
.single-service-page-main {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

.single-service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* --- Left Column: Primary Content --- */
.service-main-content-col {
  min-width: 0;
}

/* 1. Hero Media Box */
.service-hero-media-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 37, 87, 0.08);
  border: 1.5px solid #e2e8f0;
  margin-bottom: 35px;
}

.service-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.service-media-overlay-badges {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.media-badge.live-opd {
  background: rgba(15, 37, 87, 0.9);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-badge.emergency-ipd {
  background: rgba(227, 27, 35, 0.9);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 1.8s infinite;
}

/* 2. Overview Block */
.service-overview-block {
  margin-bottom: 35px;
}

.service-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 27, 35, 0.08);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}

.singlecontent p {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  font-weight: 500;
  margin-bottom: 14px;
}

/* .service-body-paragraph {
  font-size: 14px;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
} */

/* 3. Metrics Strip */
.service-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white-color);
  padding: 22px 24px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 37, 87, 0.04);
  margin-bottom: 40px;
}

.service-metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-metric-item .metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 37, 87, 0.06);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-metric-item:nth-child(2) .metric-icon {
  background: rgba(227, 27, 35, 0.08);
  color: var(--primary-color);
}

.service-metric-item:nth-child(3) .metric-icon {
  background: rgba(255, 183, 3, 0.15);
  color: #d97706;
}

.service-metric-item:nth-child(4) .metric-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.metric-data {
  display: flex;
  flex-direction: column;
}

.metric-data strong {
  font-size: 18px;
  font-weight: 800;
  color: #0f2557;
  line-height: 1.2;
}

.metric-data span {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
}

/* 4. Conditions Treated Section */
.service-conditions-section {
  margin-bottom: 40px;
}

.service-subheading {
  font-size: 22px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 6px;
  font-family: "Merriweather", serif;
}

.section-subtext {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 22px;
}

.service-conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.condition-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 24px 22px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 37, 87, 0.03);
  transition: all 0.3s ease;
}

.condition-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(15, 37, 87, 0.08);
}

.condition-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 37, 87, 0.08) 0%, rgba(15, 37, 87, 0.02) 100%);
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.condition-card:hover .condition-icon-badge {
  background: #0f2557;
  color: var(--white-color);
}

.condition-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 8px;
}

.condition-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* 5. Infrastructure Highlight Card */
.service-infra-highlight-card {
  background: linear-gradient(135deg, #0f2557 0%, #173875 100%);
  border-radius: 18px;
  padding: 28px 30px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 12px 32px rgba(15, 37, 87, 0.15);
  margin-bottom: 45px;
}

.infra-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 183, 3, 0.2);
  color: #ffb703;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 183, 3, 0.4);
}

.infra-card-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 6px;
}

.infra-card-content p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* 6. Department Leading Specialists Block */
.service-specialists-block {
  background: var(--white-color);
  border-radius: 20px;
  padding: 32px 30px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 37, 87, 0.04);
  margin-bottom: 40px;
}

.specialists-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.specialists-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-color);
  margin-bottom: 4px;
  display: inline-block;
}

.view-all-doctors-link {
  font-size: 13px;
  font-weight: 700;
  color: #0f2557;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.view-all-doctors-link:hover {
  color: var(--primary-color);
}

.service-doctors-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-doctors-profile-grid .doc-card-details {
  padding: 16px 14px 18px;
}

.service-doctors-profile-grid .doc-card-details h3 {
  font-size: 16px;
}

.service-doctors-profile-grid .doc-degrees-text {
  font-size: 11.5px;
  margin-bottom: 10px;
}

.service-doctors-profile-grid .doc-meta-item {
  font-size: 11.5px;
  gap: 6px;
}

.service-doctors-profile-grid .doc-profile-cta-btn {
  padding: 8px 12px;
  font-size: 12.5px;
}

/* 7. FAQ Accordion Block */
.service-faq-block {
  margin-bottom: 40px;
}

.medical-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  background: var(--white-color);
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: #0f2557;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  cursor: pointer;
  font-family: inherit;
}

.faq-arrow {
  font-size: 12px;
  color: #64748b;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
}

.faq-answer-body p {
  margin: 0;
}

/* 8. Prev / Next Navigation Deck */
.service-navigation-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 25px;
  border-top: 1.5px solid #e2e8f0;
}

.service-nav-card {
  background: var(--white-color);
  border-radius: 14px;
  padding: 20px 22px;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.service-nav-card.next {
  text-align: right;
  align-items: flex-end;
}

.service-nav-card:hover {
  border-color: #0f2557;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 37, 87, 0.06);
}

.nav-direction {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-service-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f2557;
  margin: 0;
  font-family: "Merriweather", serif;
  transition: color 0.2s ease;
}

.service-nav-card:hover .nav-service-title {
  color: var(--primary-color);
}

/* --- Right Sidebar Widgets --- */
.service-sidebar-col {
  min-width: 0;
}

.service-sticky-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget-box {
  background: var(--white-color);
  border-radius: 18px;
  padding: 26px 24px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 37, 87, 0.04);
}

.sidebar-widget-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Merriweather", serif;
}

.sidebar-widget-title i {
  color: var(--primary-color);
  font-size: 16px;
}

/* Services Navigation Menu */
.sidebar-services-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-services-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  background: #f8fafc;
  border: 1px solid transparent;
}

.sidebar-services-menu li.active a,
.sidebar-services-menu li a:hover {
  background: #0f2557;
  color: var(--white-color);
}

.menu-icon {
  width: 26px;
  display: inline-flex;
  color: #64748b;
  font-size: 13px;
}

.sidebar-services-menu li.active .menu-icon,
.sidebar-services-menu li a:hover .menu-icon {
  color: #ffb703;
}

.menu-name {
  flex: 1;
}

.menu-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.sidebar-services-menu li a:hover .menu-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* Emergency Sidebar Card */
.sidebar-emergency-card {
  background: linear-gradient(135deg, #0f2557 0%, #1a3875 100%);
  color: var(--white-color);
  border: none;
  box-shadow: 0 12px 32px rgba(15, 37, 87, 0.18);
}

.s-emg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.s-emg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(227, 27, 35, 0.25);
  color: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.s-emg-live {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  padding: 3px 10px;
  border-radius: 12px;
}

.s-emg-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 8px;
  line-height: 1.35;
}

.s-emg-desc {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 16px;
}

.s-emg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.35);
  transition: all 0.25s ease;
}

.s-emg-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}

/* Schedule Sidebar Card */
.schedule-timing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.schedule-timing-list .time-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.schedule-timing-list .time-row span {
  font-size: 11.5px;
  color: #64748b;
}

.schedule-timing-list .time-row strong {
  font-size: 13px;
  color: #0f2557;
}

.schedule-timing-list .time-row.highlight {
  background: #fff1f2;
  border-color: #ffe4e6;
}

.schedule-timing-list .time-row.highlight span {
  color: #e11d48;
}

.schedule-timing-list .time-row.highlight strong {
  color: #9f1239;
}

.sidebar-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0f2557;
  color: var(--white-color);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sidebar-book-btn:hover {
  background: var(--primary-color);
}

/* Download Brochure Card */
.download-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fef2f2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.download-text {
  flex: 1;
}

.download-text h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f2557;
  margin: 0 0 2px;
}

.download-text span {
  font-size: 11px;
  color: #94a3b8;
}

.download-btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.download-btn-circle:hover {
  background: #0f2557;
  color: var(--white-color);
}
/* Single Service Detail Page CSS End */

/* ==========================================================================
   Single Photo Gallery Album Page CSS Start
   ========================================================================== */
.single-gallery-page-main {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

/* 1. Album Header Deck */
.album-header-deck {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 36px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 37, 87, 0.05);
  margin-bottom: 40px;
}

.album-top-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.back-to-archive-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f2557;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.back-to-archive-btn:hover {
  background: #0f2557;
  color: var(--white-color);
  border-color: #0f2557;
  transform: translateX(-3px);
}

.album-photo-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.album-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.album-main-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
}

.album-description-text {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  max-width: 960px;
  margin-bottom: 22px;
}

.album-meta-chips-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px dashed #e2e8f0;
}

.album-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  background: #f8fafc;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.album-meta-chip i {
  color: var(--primary-color);
  font-size: 13.5px;
}

.album-meta-chip strong {
  color: #0f2557;
  font-weight: 700;
}

/* 2. Single Gallery Photo Grid (4 in a row on Desktop) */
.single-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-photo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 37, 87, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15, 37, 87, 0.12);
  border-color: #cbd5e1;
}

.gallery-photo-link {
  display: block;
  text-decoration: none;
  outline: none;
}

.photo-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0f2557;
}

.photo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-card:hover .photo-img-wrap img {
  transform: scale(1.08);
}

.photo-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.gallery-photo-card:hover .photo-zoom-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* 3. Bottom Album Navigation Deck */
.single-gallery-bottom-deck {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: #ffffff;
  padding: 24px 30px;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.05);
}

.album-nav-btn {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.album-nav-btn.prev {
  text-align: left;
}

.album-nav-btn.next {
  text-align: right;
  align-items: flex-end;
}

.album-nav-btn.all-albums {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #0f2557;
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.album-nav-btn.all-albums:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
}

.album-nav-btn .nav-sub {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.album-nav-btn .nav-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f2557;
  margin: 0;
  font-family: "Merriweather", serif;
  transition: color 0.2s ease;
}

.album-nav-btn:hover .nav-title {
  color: var(--primary-color);
}
/* Single Photo Gallery Album Page CSS End */

/* ==========================================================================
   Single News & Article Detail Page CSS Start
   ========================================================================== */
.single-news-page-main {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

.single-news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.news-main-content-col {
  min-width: 0;
}

/* Primary Article Card */
.single-article-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 36px 40px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 37, 87, 0.05);
  margin-bottom: 45px;
}

.article-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.article-read-time {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-article-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.35;
  margin-bottom: 22px;
  font-family: "Merriweather", serif;
}

.article-author-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 28px;
}

.author-reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(15, 37, 87, 0.12);
}

.reviewed-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.author-name {
  font-size: 14.5px;
  color: #0f2557;
  font-weight: 700;
  display: block;
}

.author-spec {
  font-size: 12px;
  color: #64748b;
  display: block;
}

.article-publish-date {
  font-size: 12.5px;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-publish-date strong {
  color: #0f2557;
}

/* Featured Media */
.article-featured-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
}

.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.media-caption-tag {
  display: block;
  padding: 10px 16px;
  background: #0f2557;
  color: #cbd5e1;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.media-caption-tag i {
  color: #fbbf24;
}

/* Rich Editorial Content Body */
.article-body-content {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.article-lead-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 24px;
}

.article-content-heading {
  font-size: 22px;
  font-weight: 700;
  color: #0f2557;
  margin: 32px 0 14px;
  font-family: "Merriweather", serif;
  line-height: 1.4;
}

.article-doctor-quote {
  margin: 30px 0;
  padding: 26px 30px;
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  border-radius: 0 16px 16px 0;
  position: relative;
}

.article-doctor-quote .quote-icon {
  font-size: 24px;
  color: #16a34a;
  opacity: 0.6;
  margin-bottom: 10px;
}

.article-doctor-quote p {
  font-size: 15px;
  font-style: italic;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 14px;
}

.quote-author-info strong {
  display: block;
  font-size: 14.5px;
  color: #0f2557;
  font-weight: 700;
}

.quote-author-info span {
  font-size: 12px;
  color: #64748b;
}

.article-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 30px;
}

.benefit-card {
  padding: 20px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.benefit-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.05);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.benefit-card h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.article-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #334155;
}

.article-checklist li i {
  color: #16a34a;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* In-Article CTA */
.article-cta-box {
  margin: 35px 0 20px;
  padding: 26px 30px;
  background: linear-gradient(135deg, #0f2557 0%, #1e3a8a 100%);
  border-radius: 16px;
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.article-cta-box .cta-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 6px;
  font-family: "Merriweather", serif;
}

.article-cta-box .cta-text p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
}

.article-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.3);
  transition: all 0.25s ease;
}

.article-cta-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}

/* Article Footer Deck (Tags + Share) */
.article-footer-deck {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-top: 35px;
}

.article-tags-wrap,
.article-share-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tags-label,
.share-label {
  font-size: 13px;
  font-weight: 700;
  color: #0f2557;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tag-chip {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-tag-chip:hover {
  background: #0f2557;
  color: var(--white-color);
}

.share-buttons-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.share-btn.fb { background: #1877f2; }
.share-btn.wa { background: #25d366; }
.share-btn.x { background: #000000; }
.share-btn.li { background: #0a66c2; }

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Doctor Author Card */
.article-author-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin: 35px 0;
  align-items: center;
}

.author-card-avatar img {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.author-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-color);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}

.author-card-bio h4 {
  font-size: 19px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 2px;
  font-family: "Merriweather", serif;
}

.author-qual {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 10px;
}

.author-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.author-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.author-book-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}

.author-profile-link {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f2557;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.author-profile-link:hover {
  color: var(--primary-color);
}

/* Article Navigation Deck */
.article-navigation-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.article-nav-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.article-nav-card.next {
  text-align: right;
  align-items: flex-end;
}

.article-nav-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.05);
}

.nav-dir {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-art-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f2557;
  margin: 0;
  line-height: 1.4;
  font-family: "Merriweather", serif;
  transition: color 0.2s ease;
}

.article-nav-card:hover .nav-art-title {
  color: var(--primary-color);
}

/* Related News Section */
.related-news-section {
  margin-top: 50px;
}

.related-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 24px;
  font-family: "Merriweather", serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-section-title i {
  color: var(--primary-color);
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Sticky Medical Blog Sidebar */
.news-sticky-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-search-box {
  display: flex;
  position: relative;
}

.sidebar-search-input {
  width: 100%;
  padding: 11px 44px 11px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.25s ease;
}

.sidebar-search-input:focus {
  border-color: var(--primary-color);
}

.sidebar-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #0f2557;
  color: var(--white-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.2s ease;
}

.sidebar-search-btn:hover {
  background: var(--primary-color);
}

/* Recent News List in Sidebar */
.sidebar-recent-news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-news-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  text-decoration: none;
  align-items: center;
  transition: transform 0.2s ease;
}

.recent-news-item:hover {
  transform: translateX(4px);
}

.recent-news-thumb {
  width: 70px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f2557;
}

.recent-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-news-txt {
  display: flex;
  flex-direction: column;
}

.recent-news-date {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.recent-news-txt h5 {
  font-size: 13px;
  font-weight: 700;
  color: #0f2557;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.recent-news-item:hover .recent-news-txt h5 {
  color: var(--primary-color);
}

/* Sidebar Contact Info Card */
.sidebar-contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 37, 87, 0.04);
}

.sidebar-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.s-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.s-contact-item:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.s-contact-item.emergency {
  background: #fff1f2;
  border-color: #fecdd3;
}

.s-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.s-contact-item.emergency .s-contact-icon {
  background: #ffe4e6;
  color: #e11d48;
}

.s-contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.s-contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.s-contact-item.emergency .s-contact-label {
  color: #e11d48;
}

.s-contact-text a {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f2557;
  text-decoration: none;
  transition: color 0.2s ease;
}

.s-contact-text a:hover {
  color: var(--primary-color);
}

.s-contact-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.s-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #0f2557;
  color: var(--white-color);
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.s-contact-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
}
/* Single News & Article Detail Page CSS End */

/* ==========================================================================
   Single Doctor Profile Page CSS Start
   ========================================================================== */
.single-doctor-page-main {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

.doctor-single-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column: Doctor Profile Sidebar */
.doctor-profile-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.doctor-hero-profile-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 37, 87, 0.06);
}

.doc-portrait-wrap {
  position: relative;
  height: 370px;
  overflow: hidden;
  background: #0f2557;
}

.doc-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.doc-verified-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 37, 87, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.doc-verified-badge i {
  color: #38bdf8;
}

.doc-status-ribbon {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #0f2557;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.pulse-green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.doc-hero-body {
  padding: 26px 24px;
}

.doc-hero-spec-pill {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.doc-hero-name {
  font-size: 24px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 4px;
  font-family: "Merriweather", serif;
}

.doc-hero-degrees {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.doc-hero-designation {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.45;
}

.doc-stats-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 22px;
}

.doc-stat-box {
  text-align: center;
  flex: 1;
}

.stat-num {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #0f2557;
  line-height: 1.2;
}

.stat-lbl {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.doc-stat-divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
}

.doc-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.doc-action-btn.primary {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.3);
}

.doc-action-btn.primary:hover {
  background: #cc121a;
  transform: translateY(-2px);
}

.doc-action-btn.secondary {
  background: #0f2557;
  color: #ffffff;
}

.doc-action-btn.secondary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}

/* Doctor Quick Info Widget */
.doctor-sidebar-widget {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 37, 87, 0.04);
}

.doc-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Merriweather", serif;
}

.doc-widget-title i {
  color: var(--primary-color);
}

.doc-info-item-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.doc-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  flex-shrink: 0;
}

.doc-info-txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.info-val {
  font-size: 13px;
  font-weight: 600;
  color: #0f2557;
}

.info-val-link {
  font-size: 13px;
  font-weight: 700;
  color: #0f2557;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-val-link:hover {
  color: var(--primary-color);
}

.doc-lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.lang-tag {
  font-size: 11.5px;
  font-weight: 600;
  background: #f1f5f9;
  color: #334155;
  padding: 3px 10px;
  border-radius: 6px;
}

/* Emergency Card in Doc Sidebar */
.doctor-emergency-card {
  background: linear-gradient(135deg, #0f2557 0%, #1e3a8a 100%);
  border-radius: 18px;
  padding: 24px 20px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.1);
}

.doc-emg-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fbbf24;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.doctor-emergency-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: "Merriweather", serif;
}

.doctor-emergency-card p {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 14px;
}

.doc-emg-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.doc-emg-call-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}

/* Right Column: Main Details Body */
.doctor-details-main {
  min-width: 0;
}

.doc-section-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 32px 34px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(15, 37, 87, 0.04);
  margin-bottom: 28px;
}

.doc-section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 16px;
}

.doc-sec-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.doc-sec-title {
  font-size: 21px;
  font-weight: 700;
  color: #0f2557;
  margin: 0;
  font-family: "Merriweather", serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doc-sec-title i {
  color: var(--primary-color);
  font-size: 18px;
}

.doc-sec-intro {
  font-size: 14.5px;
  color: #64748b;
  margin-bottom: 18px;
}

.doc-lead-bio {
  font-size: 15.5px;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 14px;
}

.doc-sec-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 14px;
}

.doc-sec-body p:last-child {
  margin-bottom: 0;
}

/* 6-Card Areas of Expertise Grid */
.doc-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.expertise-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.expertise-box:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 37, 87, 0.06);
}

.exp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.exp-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 4px;
}

.exp-text p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Timeline Components */
.doc-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 32px;
}

.doc-timeline-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 12px;
  width: 2px;
  background: #e2e8f0;
}

.doc-timeline-item {
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -32px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #2563eb;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.timeline-marker.active {
  border-color: #16a34a;
  color: #16a34a;
}

.timeline-content {
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.timeline-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f2557;
  margin: 0;
}

.timeline-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #475569;
}

.timeline-badge.aiims {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.timeline-badge.current {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.timeline-inst {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* OPD Table Styling */
.doc-opd-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.doc-opd-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.doc-opd-table th {
  background: #0f2557;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
}

.doc-opd-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  color: #334155;
}

.doc-opd-table tr:last-child td {
  border-bottom: none;
}

.doc-opd-table tr:hover td {
  background: #f8fafc;
}

.shift-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.shift-badge.morning {
  background: #eff6ff;
  color: #1d4ed8;
}

.shift-badge.evening {
  background: #fef3c7;
  color: #92400e;
}

.shift-badge.emergency-only {
  background: #fff1f2;
  color: #e11d48;
}

.table-book-btn {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.table-book-btn:hover {
  background: #cc121a;
  transform: translateY(-1px);
}

.table-call-btn {
  display: inline-flex;
  align-items: center;
  background: #0f2557;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

/* OPD Booking Banner in Doc page */
.doc-booking-cta-strip {
  padding: 24px 26px;
  background: linear-gradient(135deg, #0f2557 0%, #1e3a8a 100%);
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.doc-booking-cta-strip .cta-txt h4 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: "Merriweather", serif;
}

.doc-booking-cta-strip .cta-txt p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
}

.doc-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.35);
  transition: all 0.25s ease;
}

.doc-strip-btn:hover {
  background: #cc121a;
  transform: translateY(-2px);
}
/* Single Doctor Profile Page CSS End */

/* ==========================================================================
   Unique Contact & Patient Support Page CSS Start
   ========================================================================== */
.contact-page-main {
  width: 100%;
  max-width: 100%;
}

/* 1. 4-Card Healthcare Connectivity Strip */
.contact-quick-access-section {
  padding: 55px 0 35px;
  background-color: #f8fafc;
}

.contact-quad-deck {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quad-deck-card,
.deck-quad-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 37, 87, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.quad-deck-card::before,
.deck-quad-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

/* Top Color Accents via pseudo-classes */
.contact-quad-deck .quad-deck-card:nth-child(4n + 1)::before, .card-emergency-deck::before { background: var(--primary-color); }
.contact-quad-deck .quad-deck-card:nth-child(4n + 2)::before, .card-opd-deck::before { background: #0f2557; }
.contact-quad-deck .quad-deck-card:nth-child(4n + 3)::before, .card-tpa-deck::before { background: #0284c7; }
.contact-quad-deck .quad-deck-card:nth-child(4n + 4)::before, .card-location-deck::before { background: #d97706; }

.quad-deck-card:hover,
.deck-quad-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 37, 87, 0.1);
}

.deck-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.deck-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Icon Badges via pseudo-classes */
.contact-quad-deck .quad-deck-card:nth-child(4n + 1) .deck-icon-badge, .deck-icon-badge.emergency { background: #fee2e2; color: var(--primary-color); }
.contact-quad-deck .quad-deck-card:nth-child(4n + 2) .deck-icon-badge, .deck-icon-badge.opd { background: #e0e7ff; color: #0f2557; }
.contact-quad-deck .quad-deck-card:nth-child(4n + 3) .deck-icon-badge, .deck-icon-badge.tpa { background: #e0f2fe; color: #0284c7; }
.contact-quad-deck .quad-deck-card:nth-child(4n + 4) .deck-icon-badge, .deck-icon-badge.location { background: #fef3c7; color: #d97706; }

.deck-live-status {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Status Badges via pseudo-classes */
.contact-quad-deck .quad-deck-card:nth-child(4n + 1) .deck-live-status, .deck-live-status.pulse {
  background: #fef2f2;
  color: var(--primary-color);
  border: 1px solid #fecaca;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  display: inline-block;
  animation: livePulse 1.6s infinite ease-in-out;
}

@keyframes livePulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 10px rgba(227, 27, 35, 0.7); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.contact-quad-deck .quad-deck-card:nth-child(4n + 2) .deck-live-status, .deck-live-status.opd { background: #f1f5f9; color: #334155; }
.contact-quad-deck .quad-deck-card:nth-child(4n + 3) .deck-live-status, .deck-live-status.tpa { background: #f0fdf4; color: #16a34a; }
.contact-quad-deck .quad-deck-card:nth-child(4n + 4) .deck-live-status, .deck-live-status.location { background: #fffbeb; color: #b45309; }

.deck-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 8px;
  font-family: "Merriweather", serif;
}

.deck-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.deck-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Action Buttons via pseudo-classes */
.contact-quad-deck .quad-deck-card:nth-child(4n + 1) .deck-cta-btn, .deck-cta-btn.emergency {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
  border: none;
}

.contact-quad-deck .quad-deck-card:nth-child(4n + 1) .deck-cta-btn:hover, .deck-cta-btn.emergency:hover {
  background: #cc121a;
  transform: translateY(-2px);
}

.contact-quad-deck .quad-deck-card:nth-child(4n + 2) .deck-cta-btn, .deck-cta-btn.opd {
  background: #0f2557;
  color: var(--white-color);
  border: none;
}

.contact-quad-deck .quad-deck-card:nth-child(4n + 2) .deck-cta-btn:hover, .deck-cta-btn.opd:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.contact-quad-deck .quad-deck-card:nth-child(4n + 3) .deck-cta-btn,
.contact-quad-deck .quad-deck-card:nth-child(4n + 4) .deck-cta-btn,
.deck-cta-btn.tpa,
.deck-cta-btn.location {
  background: #f1f5f9;
  color: #0f2557;
  border: 1px solid #e2e8f0;
}

.contact-quad-deck .quad-deck-card:nth-child(4n + 3) .deck-cta-btn:hover,
.contact-quad-deck .quad-deck-card:nth-child(4n + 4) .deck-cta-btn:hover,
.deck-cta-btn.tpa:hover,
.deck-cta-btn.location:hover {
  background: #0f2557;
  color: var(--white-color);
  border-color: #0f2557;
}


/* 2. Main Concierge & Interactive Query Section */
.contact-concierge-section {
  padding: 35px 0 65px;
  background-color: #f8fafc;
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 32px;
  align-items: start;
}

/* Left: Concierge Info Card */
.concierge-info-card {
  background: linear-gradient(145deg, #0f2557 0%, #15326f 100%);
  border-radius: 24px;
  padding: 44px 38px;
  color: var(--white-color);
  box-shadow: 0 16px 44px rgba(15, 37, 87, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.concierge-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffb703;
  margin-bottom: 20px;
}

.concierge-main-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}

.concierge-main-text {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Department Extensions Grid */
.department-extensions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.dept-ext-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: background 0.25s ease;
}

.dept-ext-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dept-ext-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 183, 3, 0.2);
  color: #ffb703;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.dept-ext-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.dept-ext-name {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dept-ext-details strong {
  font-size: 13px;
  color: var(--white-color);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Patient Guarantees */
.concierge-guarantees-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #e2e8f0;
}

.guarantee-item i {
  color: #22c55e;
  font-size: 15px;
}

/* Social Box */
.concierge-social-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.concierge-social-label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.concierge-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.c-social-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* Right: Smart Form Terminal */
.concierge-form-card {
  background: var(--white-color);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 16px 44px rgba(15, 37, 87, 0.06);
}

.form-card-top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.form-terminal-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 6px;
  font-family: "Merriweather", serif;
}

.form-terminal-subtitle {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.form-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.smart-medical-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Form Fields */
.form-field-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon .input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

.terminal-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px 12px 42px;
  font-size: 14px;
  color: #1e293b;
  background-color: #f8fafc;
  transition: all 0.25s ease;
  font-family: inherit;
}

.terminal-select {
  cursor: pointer;
}

.terminal-textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #1e293b;
  background-color: #f8fafc;
  transition: all 0.25s ease;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

.terminal-input:focus,
.terminal-textarea:focus {
  outline: none;
  border-color: #0f2557;
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px rgba(15, 37, 87, 0.08);
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.terminal-submit-btn {
  background: #0f2557;
  color: var(--white-color);
  border: none;
  border-radius: 12px;
  padding: 15px 32px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(15, 37, 87, 0.2);
}

.terminal-submit-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(227, 27, 35, 0.3);
}

.privacy-notice {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  justify-content: center;
}

.privacy-notice i {
  color: #16a34a;
}

/* 3. Modern Transit & Interactive Google Map */
.contact-transit-section {
  padding: 0 0 85px;
  background-color: #f8fafc;
}

.transit-combined-card {
  display: grid;
  grid-template-columns: 42% 58%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(15, 37, 87, 0.08);
  border: 1.5px solid #e2e8f0;
  background: var(--white-color);
}

.transit-info-panel {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.transit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  align-self: flex-start;
  margin-bottom: 14px;
}

.transit-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f2557;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.transit-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 22px;
}

.transit-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.transit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.transit-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f2557;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.transit-txt {
  display: flex;
  flex-direction: column;
}

.transit-txt strong {
  font-size: 13.5px;
  color: #0f2557;
  font-weight: 700;
}

.transit-txt span {
  font-size: 12.5px;
  color: #64748b;
}

.transit-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f2557;
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.transit-map-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.transit-map-panel {
  width: 100%;
  min-height: 380px;
  background: #e2e8f0;
}

.transit-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
/* Unique Contact Page CSS End */

/* ==========================================================================
   Responsive CSS Start
   ========================================================================== */

/* 1200px Breakpoint */
@media (max-width: 1200px) {
  .nav-link {
    padding: 14px 10px;
    font-size: 13.5px;
  }

  .header-badges-wrap {
    gap: 12px;
  }

  .header-badge-card {
    padding: 6px 12px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-slide-grid {
    gap: 35px;
  }

  .footer-hub-grid {
    gap: 16px;
  }

  .hub-card {
    padding: 20px;
  }

  .footer-grid-layout {
    gap: 25px;
  }
}

/* 1024px Breakpoint */
@media (max-width: 1024px) {
  .header-badges-wrap {
    display: none;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-link {
    padding: 14px 8px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .footer-grid-layout {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 20px;
  }

  .icu-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .safety-protocols-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .resp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .resp-partnership-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .appointment-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quick-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .steps-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .doctors-archive-layout {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }

  .doctors-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 1024px Breakpoint (Tablet 2-Card Grid & Contact Responsive) */
@media (max-width: 1024px) {
  .contact-quad-deck {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .contact-modern-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .transit-combined-card {
    grid-template-columns: 1fr !important;
  }

  .transit-map-panel {
    min-height: 340px !important;
  }

  .services-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .gallery-simple-grid,
  .gallery-archive-grid,
  .single-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .video-gallery-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .news-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .departments-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .single-service-layout,
  .single-news-layout,
  .doctor-single-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .doctor-profile-sidebar {
    position: static !important;
  }

  .service-hero-img,
  .article-hero-img {
    height: 360px;
  }

  .related-news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* 991px Breakpoint */
@media (max-width: 991px) {
  .header-top-bar {
    display: none;
  }

  .header-nav-bar {
    display: none;
  }

  .header-badges-wrap {
    display: none;
  }

  .main-navigation {
    display: none;
  }

  .header-main-bar {
    padding: 10px 0;
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .site-header.is-sticky .header-main-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    animation: headerSlideDown 0.35s ease forwards;
  }

  .header-action-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-appointment-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .header-logo-wrap .logo-img {
    height: 60px;
  }

  .hero-banner-section {
    padding: 40px 0 50px;
  }

  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-tag-badge {
    align-self: center;
  }

  .hero-actions-group {
    justify-content: center;
  }

  .hero-proof-strip {
    justify-content: center;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hospital-services-section {
    padding: 60px 0;
  }

  .hospital-about-section {
    padding: 60px 0;
  }

  .about-card-container {
    grid-template-columns: 1fr;
  }

  .about-card-media {
    min-height: 380px;
    height: 380px;
  }

  .about-card-content {
    padding: 35px 28px;
  }

  .services-four-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-action-hub {
    margin-top: 0;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .hospital-achievements-section {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .achievements-four-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .achievements-header h2 {
    font-size: 30px;
  }

  .hospital-specialties-section {
    padding: 60px 0;
  }

  .specialties-six-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .specialties-header h2 {
    font-size: 30px;
  }

  .hospital-why-choose-section {
    padding: 60px 0;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose-header h2 {
    font-size: 30px;
  }

  .hospital-doctors-section {
    padding: 60px 0;
  }

  .doctors-four-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .doctors-header h2 {
    font-size: 30px;
  }
}

/* 768px Breakpoint */
@media (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .safety-protocols-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .charter-rights-grid,
  .charter-dodont-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .resp-cards-grid,
  .resp-partnership-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .quick-strip-grid,
  .steps-cards-grid,
  .form-row-two,
  .time-slot-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .doctors-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .services-archive-grid,
  .gallery-simple-grid,
  .gallery-archive-grid,
  .video-gallery-archive-grid,
  .news-archive-grid,
  .departments-archive-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .hospital-services-section {
    padding: 60px 0;
  }

  .hospital-about-section {
    padding: 60px 0;
  }

  .about-content-column h2 {
    font-size: 28px;
  }

  .header-logo-wrap .logo-img {
    height: 52px;
  }

  .header-appointment-btn {
    padding: 8px 12px;
    font-size: 12.5px;
    gap: 5px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-proof-strip {
    display: none;
  }

  .hero-actions-group {
    margin-bottom: 0;
  }

  .hero-slider-controls {
    margin-top: 20px;
    padding-top: 0;
  }

  .updates-strip-wrap {
    height: 46px;
  }

  .updates-badge {
    padding: 0 16px 0 12px;
    font-size: 11.5px;
    gap: 6px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  }

  .update-item {
    font-size: 12.5px;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-strip .flex-space-between {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .dept-card-footer
  {
    flex-direction: column;
    align-items: start;
  }

}

/* 576px Breakpoint */
@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hospital-services-section {
    padding: 40px 0;
  }

  .about-card-media {
    min-height: 260px;
    height: 260px;
  }

  .about-video-btn {
    top: 14px;
    left: 14px;
    width: 68px;
    height: 68px;
    font-size: 9px;
  }

  .about-video-btn .play-circle {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .about-card-content {
    padding: 28px 18px;
  }

  .about-title-wrapper h2 {
    font-size: 26px;
  }

  .about-stat-pastel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-pastel-box {
    padding: 16px 10px;
  }

  .stat-pastel-box strong {
    font-size: 22px;
  }

  .stat-pastel-box span {
    font-size: 11.5px;
  }

  .header-logo-wrap .logo-img {
    height: 46px;
  }

  /* Mission Vision 991px */
  .mission-vision-showcase-section,
  .hospital-values-section,
  .hospital-leadership-pledge {
    padding: 60px 0;
  }

  .mv-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pledge-container-card {
    grid-template-columns: 1fr;
  }

  .pledge-image-col {
    min-height: 280px;
    max-height: 320px;
  }

  .pledge-content-col {
    padding: 30px 24px;
  }

  /* CEO Message 991px */
  .hospital-ceo-section {
    padding: 60px 0;
  }

  .ceo-message-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ceo-profile-card {
    position: static;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .ceo-content-wrapper {
    padding-left: 0;
  }

  .ceo-milestones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Surgical Packages 991px */
  .surgery-packages-section,
  .surgery-excellence-section {
    padding: 60px 0;
  }

  .surgery-trust-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .surgery-excellence-hub {
    padding: 30px 24px;
  }

  .hub-top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .hub-quick-nav {
    flex-wrap: wrap;
    width: 100%;
  }

  .hub-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .surgery-tab-panes-wrap {
    padding: 24px 20px;
  }

  .surgery-acc-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Critical Care 991px */
  .icu-overview-section,
  .icu-infra-section {
    padding: 60px 0;
  }

  .icu-overview-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .icu-portal-wrapper {
    position: static;
  }

  .icu-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Health Packages 991px */
  .pkg-catalog-section {
    padding: 60px 0;
  }

  /* Empanelments 991px */
  .empanel-catalog-section {
    padding: 60px 0;
  }

  .empanel-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* OPD Schedule 991px (2x2 Tablet Card Grid) */
  .opd-schedule-section {
    padding: 60px 0;
  }

  .opd-filter-nav {
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .opd-table-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 25px;
  }

  .opd-table-responsive {
    overflow: visible;
  }

  .opd-matrix-table,
  .opd-matrix-table thead,
  .opd-matrix-table tbody,
  .opd-matrix-table th,
  .opd-matrix-table td,
  .opd-matrix-table tr {
    display: block;
  }

  .opd-matrix-table thead {
    display: none;
  }

  .opd-matrix-table tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .opd-matrix-table tbody tr.opd-schedule-row {
    background: var(--white-color) !important;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 6px 20px rgba(15, 37, 87, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .opd-matrix-table tbody tr.opd-schedule-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0f2557, var(--primary-color));
  }

  .opd-matrix-table tbody td {
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
  }

  .opd-dept-cell {
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5fa;
    width: 100%;
  }

  .opd-doctor-cell {
    width: 100%;
  }

  .opd-doctor-cell strong {
    font-size: 16.5px;
  }

  .opd-timing-stack {
    width: 100%;
    gap: 8px;
    margin-top: auto;
  }

  .opd-time-pill {
    width: 100%;
    font-size: 12.5px;
    padding: 7px 12px;
    justify-content: flex-start;
  }

  .opd-action-cell {
    text-align: left;
    margin-top: 6px;
    width: 100%;
  }

  .opd-btn-book {
    width: 100%;
    justify-content: center;
    padding: 11px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Patient Safety 991px */
  .safety-hero-section,
  .safety-protocols-section,
  .safety-facility-section {
    padding: 60px 0;
  }

  .safety-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 35px;
  }

  .safety-hero-text h2 {
    font-size: 28px;
  }

  .safety-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .safety-protocols-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .safety-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .safety-pledge-banner {
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Patient Rights 991px */
  .charter-rights-section,
  .charter-dodont-section {
    padding: 60px 0;
  }

  .charter-rights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .charter-dodont-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .charter-grievance-banner {
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Patient Responsibilities 991px */
  .resp-matrix-section,
  .resp-partnership-section {
    padding: 60px 0;
  }

  .resp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .resp-partnership-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Appointment 991px */
  .appointment-main-section,
  .appointment-steps-section {
    padding: 60px 0;
  }

  .appointment-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quick-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .steps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Doctors Archive 991px */
  .doctors-archive-section {
    padding: 50px 0 60px;
  }

  .doctors-archive-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .doctors-filter-sidebar {
    position: static;
  }

  .doctors-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .filter-head-toggle {
    cursor: pointer;
    user-select: none;
  }

  .mobile-filter-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5fa;
    color: #0f2557;
    font-size: 11px;
    transition: all 0.3s ease;
  }

  .doctors-filter-sidebar.is-open .mobile-filter-chevron {
    transform: rotate(180deg);
  }

  .doctors-filter-sidebar.is-open .mobile-filter-toggle-icon {
    background: #0f2557;
    color: var(--white-color);
  }

  .filter-sidebar-body {
    display: none;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    margin-top: 14px;
    animation: filterSlideDown 0.3s ease forwards;
  }

  .doctors-filter-sidebar.is-open .filter-sidebar-body {
    display: block;
  }

  @keyframes filterSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .doctors-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .cta-text-side {
    flex-direction: column;
    text-align: center;
  }

  /* Photo Gallery 991px */
  .gallery-archive-section {
    padding: 50px 0 60px;
  }

  .gallery-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  /* Video Gallery 991px */
  .video-archive-section {
    padding: 50px 0 60px;
  }

  .video-gallery-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  /* News Archive 991px */
  .news-archive-section {
    padding: 50px 0 60px;
  }

  .news-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  /* Services Archive 991px */
  .services-archive-section {
    padding: 50px 0 60px;
  }

  .services-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .services-bottom-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }

  .services-help-text-wrap {
    flex-direction: column;
    text-align: center;
  }

  /* Single Service Detail 991px */
  .single-service-page-main {
    padding: 50px 0 60px;
  }

  .service-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Contact Page 991px */
  .contact-quick-access-section {
    padding: 40px 0 25px;
  }

  .contact-quad-deck {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .contact-concierge-section {
    padding: 25px 0 45px;
  }

  .contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .concierge-info-card {
    padding: 36px 30px;
  }

  .concierge-form-card {
    padding: 36px 30px;
  }

  .transit-combined-card {
    grid-template-columns: 1fr;
  }

  .transit-info-panel {
    padding: 36px 30px;
  }

  .transit-map-panel {
    min-height: 320px;
  }

  /* Inner Banner 991px */
  .hospital-inner-banner {
    padding: 60px 0;
    text-align: center;
  }

  .inner-banner-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .inner-banner-aside {
    width: 100%;
    max-width: 500px;
  }

  .header-appointment-btn span {
    display: none;
  }

  .header-appointment-btn {
    padding: 9px 12px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .header-appointment-btn i {
    font-size: 15px;
    margin: 0;
  }

  .updates-strip-wrap {
    height: 42px;
  }

  .updates-badge {
    padding: 0 14px 0 10px;
    font-size: 11px;
    gap: 5px;
  }

  .update-item {
    font-size: 12px;
  }

  .hero-banner-section {
    padding: 20px 0 25px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-actions-group {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    gap: 12px;
  }

  .hero-slider-controls {
    margin-top: 18px;
    padding-top: 0;
  }

  .hero-btn-primary,
  .hero-btn-emergency {
    width: 100%;
    justify-content: center;
  }

  .mobile-nav-drawer {
    width: 290px;
  }

  .services-four-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card-body {
    padding: 18px 16px;
  }

  .service-card-body h3 {
    font-size: 17.5px;
  }

  .hub-card {
    padding: 16px;
  }

  .hospital-achievements-section {
    padding: 40px 0;
  }

  .achievements-header {
    margin-bottom: 25px;
  }

  .achievements-header h2 {
    font-size: 23px;
  }

  .achievements-four-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .achievement-metric-card {
    padding: 24px 18px;
  }

  .metric-number-wrap strong {
    font-size: 32px;
  }

  .hospital-specialties-section {
    padding: 40px 0;
  }

  .specialties-header {
    margin-bottom: 25px;
  }

  .specialties-header h2 {
    font-size: 24px;
  }

  .specialties-six-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .specialty-card-media {
    height: 190px;
  }

  .specialty-card-body {
    padding: 20px 18px 22px;
  }

  .specialty-card-body h3 {
    font-size: 19px;
  }

  .specialties-view-all-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .specialties-help-text {
    font-size: 13.5px;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }

  .hospital-why-choose-section {
    padding: 40px 0;
  }

  .why-choose-header {
    margin-bottom: 25px;
  }

  .why-choose-header h2 {
    font-size: 24px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-pillar-card {
    padding: 24px 20px 22px;
  }

  .pillar-icon-box {
    width: 56px;
    height: 56px;
    font-size: 24px;
    border-radius: 12px;
  }

  .pillar-number {
    font-size: 38px;
  }

  .why-pillar-card h3 {
    font-size: 19px;
  }

  .hospital-doctors-section {
    padding: 40px 0;
  }

  .doctors-header {
    margin-bottom: 25px;
  }

  .doctors-header h2 {
    font-size: 24px;
  }

  .doctors-carousel-wrapper {
    margin-bottom: 20px;
  }

  .doc-media-wrapper {
    height: 200px;
  }

  .doc-card-details {
    padding: 16px 4px 4px;
  }

  .doctors-swiper-controls {
    margin-top: 16px;
    gap: 12px;
  }

  .doctors-swiper-prev,
  .doctors-swiper-next {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .doctors-view-all-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .doctors-help-text {
    font-size: 13.5px;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }

  /* Video Feedback Mobile */
  .hospital-video-feedback-section {
    padding: 40px 0;
  }

  .video-feedback-header {
    margin-bottom: 25px;
  }

  .video-feedback-header h2 {
    font-size: 24px;
  }

  .video-carousel-wrapper {
    margin-bottom: 20px;
  }

  .video-thumb-frame {
    height: 190px;
  }

  .video-card-body {
    padding: 16px 14px 18px;
  }

  .video-card-body h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .video-swiper-controls {
    margin-top: 16px;
    gap: 12px;
  }

  .video-swiper-prev,
  .video-swiper-next {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .video-feedback-bottom-strip {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 16px;
  }

  .google-rating-box {
    flex-direction: column;
    gap: 8px;
  }

  .video-view-all-btn {
    width: 100%;
    justify-content: center;
  }

  /* OPD Schedule 768px */
  .opd-matrix-table tbody {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  /* Inner Banner Mobile */
  .hospital-inner-banner {
    padding: 40px 0;
    text-align: center;
  }

  .inner-banner-title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .inner-breadcrumb-nav {
    justify-content: center;
  }

  .inner-breadcrumb-list {
    flex-wrap: wrap;
    padding: 6px 14px;
    gap: 6px;
  }

  .inner-breadcrumb-list .breadcrumb-item a,
  .inner-breadcrumb-list .breadcrumb-item.active {
    font-size: 12.5px;
  }

  /* Mission Vision 576px */
  .mission-vision-showcase-section,
  .hospital-values-section,
  .hospital-leadership-pledge {
    padding: 40px 0;
  }

  .mv-cards-grid {
    gap: 25px;
  }

  .mv-flagship-card {
    padding: 26px 20px;
  }

  .mv-card-body h3 {
    font-size: 20px;
  }

  .values-subtitle-desc {
    margin: 0 auto 25px;
    font-size: 14.5px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 0;
  }

  .value-box-card {
    padding: 22px 18px;
  }

  .pledge-content-col h3 {
    font-size: 20px;
  }

  .pledge-footer-action {
    flex-direction: column;
    align-items: stretch;
  }

  .pledge-btn {
    justify-content: center;
  }

  /* CEO Message 576px */
  .hospital-ceo-section {
    padding: 40px 0;
  }

  .ceo-image-frame {
    height: 320px;
  }

  .ceo-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 28px;
  }

  .ceo-quote-lead {
    padding: 18px 20px;
  }

  .ceo-quote-lead p {
    font-size: 15px;
  }

  .ceo-signature-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ceo-milestones-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Surgical Packages 576px */
  .surgery-packages-section,
  .surgery-excellence-section {
    padding: 40px 0;
  }

  .surgery-excellence-hub {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .hub-header-left h3 {
    font-size: 19px;
  }

  .hub-nav-pill {
    padding: 8px 14px;
    font-size: 12.5px;
    width: 100%;
    justify-content: center;
  }

  .hub-pillar-card {
    padding: 20px 16px;
  }

  .surgery-tab-nav-bar {
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 6px;
    margin-bottom: 16px;
  }

  .surgery-tab-pill {
    padding: 10px 18px;
    font-size: 13.5px;
    width: auto;
    flex-shrink: 0;
  }

  .surgery-tab-panes-wrap {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .surgery-acc-header {
    padding: 14px 16px;
  }

  .surgery-acc-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .surgery-acc-title-wrap h3 {
    font-size: 15.5px;
  }

  .surgery-acc-body {
    padding: 18px 14px;
  }

  .surgery-acc-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .surgery-acc-btn-primary,
  .surgery-acc-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Critical Care 576px */
  .icu-overview-section,
  .icu-infra-section {
    padding: 40px 0;
  }

  .icu-hero-title {
    font-size: 23px;
  }

  .icu-vital-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .icu-tech-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .icu-action-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .icu-btn-emergency,
  .icu-btn-inquiry {
    width: 100%;
    justify-content: center;
  }

  /* Health Packages 576px */
  .pkg-catalog-section {
    padding: 40px 0;
  }

  .pkg-tables-stack {
    gap: 25px;
  }

  .pkg-table-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .pkg-table-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .pkg-table-title-group h3 {
    font-size: 20px;
  }

  .pkg-table-meta-actions {
    width: 100%;
    justify-content: space-between;
  }

  .pkg-table-pricing {
    text-align: left;
  }

  .pkg-nav-bar {
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 6px;
    margin-bottom: 24px;
  }

  .pkg-tab-pill {
    padding: 10px 18px;
    font-size: 13px;
  }

  .pkg-table-footer-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .pkg-footer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .pkg-btn-book,
  .pkg-btn-call {
    width: 100%;
    justify-content: center;
  }

  /* Empanelments 576px */
  .empanel-catalog-section {
    padding: 40px 0;
  }

  .empanel-brand-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .empanel-filter-nav {
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 6px;
    margin-bottom: 24px;
  }

  .empanel-filter-pill {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* OPD Schedule 576px (1-Column Mobile Card Stack) */
  .opd-schedule-section {
    padding: 40px 0;
  }

  .opd-controls-bar {
    margin-bottom: 20px;
    gap: 12px;
  }

  .opd-filter-nav {
    justify-content: flex-start;
    gap: 6px;
    padding-bottom: 6px;
  }

  .opd-filter-pill {
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .opd-matrix-table tbody {
    grid-template-columns: 1fr !important;
    gap: 25px; /* Mobile Card Gap Rule */
  }

  .opd-matrix-table tbody tr.opd-schedule-row {
    padding: 18px 16px;
  }

  .opd-time-pill {
    font-size: 12px;
    padding: 6px 10px;
  }

  .opd-btn-book {
    padding: 10px;
    font-size: 13.5px;
  }

  .opd-notice-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  /* Patient Safety 576px */
  .safety-hero-section,
  .safety-protocols-section,
  .safety-facility-section {
    padding: 40px 0;
  }

  .safety-hero-text h2 {
    font-size: 24px;
  }

  .safety-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .safety-protocols-grid {
    grid-template-columns: 1fr;
    gap: 25px; /* Mobile Card Gap Rule */
  }

  .safety-pillar-card {
    padding: 24px 20px;
  }

  .safety-stat-card {
    padding: 20px 16px;
  }

  .safety-benchmark-card {
    padding: 28px 20px;
  }

  .pledge-btn-hotline {
    width: 100%;
    justify-content: center;
  }

  /* Patient Rights 576px */
  .charter-rights-section,
  .charter-dodont-section {
    padding: 40px 0;
  }

  .charter-rights-grid,
  .charter-dodont-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .charter-do-card,
  .charter-dont-card {
    padding: 26px 20px;
  }

  .charter-right-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .grievance-btn-pro {
    width: 100%;
    justify-content: center;
  }

  /* Patient Responsibilities 576px */
  .resp-matrix-section,
  .resp-partnership-section {
    padding: 40px 0;
  }

  .resp-cards-grid,
  .resp-partnership-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .resp-pillar-card {
    padding: 24px 20px;
  }

  .partnership-info-card,
  .resp-support-card {
    padding: 26px 20px;
  }

  .partnership-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Appointment 576px */
  .appointment-quick-strip {
    padding: 25px 0 0;
  }

  .appointment-main-section,
  .appointment-steps-section {
    padding: 40px 0;
  }

  .appointment-info-panel,
  .appointment-form-card {
    padding: 26px 20px;
  }

  .btn-book-submit {
    padding: 14px 18px;
    font-size: 15px;
  }

  /* Doctors Archive 576px */
  .doctors-archive-section {
    padding: 40px 0;
  }

  .doctors-filter-sidebar {
    padding: 20px 16px;
  }

  .doctors-bottom-cta {
    padding: 26px 18px;
  }

  .cta-action-btn {
    width: 100%;
    justify-content: center;
  }

  /* Photo Gallery 576px */
  .gallery-archive-section {
    padding: 40px 0;
  }

  .gallery-simple-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 35px;
  }

  .simple-gallery-thumb {
    height: 210px;
  }

  /* Video Gallery 576px */
  .video-archive-section {
    padding: 40px 0;
  }

  .video-gallery-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 35px;
  }

  /* News Archive 576px */
  .news-archive-section {
    padding: 40px 0;
  }

  .news-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 35px;
  }

  /* Services Archive 576px */
  .services-archive-section {
    padding: 40px 0;
  }

  .services-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 35px;
  }

  .services-archive-header h2 {
    font-size: 26px;
  }

  .services-bottom-cta-strip {
    padding: 22px 16px;
  }

  .services-help-phone-btn {
    width: 100%;
    justify-content: center;
  }

  /* Departments Archive 576px */
  .departments-archive-section {
    padding: 40px 0;
  }

  .departments-archive-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 35px;
  }

  /* Contact Page 576px */
  .contact-quick-access-section {
    padding: 30px 0 15px;
  }

  .contact-quad-deck {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .quad-deck-card,
  .deck-quad-card {
    padding: 22px 18px;
  }

  .contact-concierge-section {
    padding: 15px 0 35px;
  }

  .concierge-info-card {
    padding: 28px 20px;
  }

  .concierge-main-heading {
    font-size: 22px;
  }

  .department-extensions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .concierge-form-card {
    padding: 28px 18px;
  }

  .form-terminal-title {
    font-size: 20px;
  }

  .form-card-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .form-field-duo {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-transit-section {
    padding: 0 0 50px;
  }

  .transit-info-panel {
    padding: 28px 20px;
  }

  .transit-title {
    font-size: 20px;
  }

  .transit-map-panel {
    min-height: 280px;
  }

  /* Single Service Detail 576px */
  .service-hero-img {
    height: 250px;
  }

  .service-media-overlay-badges {
    position: static;
    padding: 12px;
    background: #f1f5f9;
  }

  .media-badge {
    width: 100%;
    justify-content: center;
  }

  .service-heading {
    font-size: 22px;
  }

  .service-metrics-strip {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .service-conditions-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-infra-highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  .service-specialists-block {
    padding: 24px 18px;
  }

  .specialists-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-doctors-profile-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .service-navigation-deck {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .service-nav-card.next {
    text-align: left;
    align-items: flex-start;
  }

  /* Single Photo Gallery 576px */
  .album-header-deck {
    padding: 24px 18px;
  }

  .album-top-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .album-main-title {
    font-size: 21px;
  }

  .single-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .photo-img-wrap {
    height: 230px;
  }

  .single-gallery-bottom-deck {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 20px 18px;
    text-align: center;
  }

  .album-nav-btn.next {
    text-align: left;
    align-items: flex-start;
  }

  .album-nav-btn.all-albums {
    order: -1;
    justify-content: center;
  }

  /* Single News & Article 576px */
  .single-article-card {
    padding: 22px 18px 28px;
    border-radius: 16px;
  }

  .single-article-title {
    font-size: 21px;
    margin-bottom: 16px;
  }

  .article-author-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 12px;
  }

  .article-hero-img {
    height: 230px;
  }

  .article-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .article-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }

  .article-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .article-author-card {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 20px 18px;
  }

  .author-card-avatar img {
    margin: 0 auto;
  }

  .author-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .author-book-btn {
    width: 100%;
    justify-content: center;
  }

  .article-navigation-deck {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .article-nav-card.next {
    text-align: left;
    align-items: flex-start;
  }

  .related-news-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Single Doctor Profile 576px */
  .doc-portrait-wrap {
    height: 320px;
  }

  .doc-hero-body {
    padding: 22px 18px;
  }

  .doc-hero-name {
    font-size: 21px;
  }

  .doc-stats-strip {
    padding: 12px;
  }

  .stat-num {
    font-size: 15px;
  }

  .doc-section-card {
    padding: 22px 18px 26px;
    border-radius: 16px;
  }

  .doc-sec-title {
    font-size: 18px;
  }

  .doc-expertise-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .doc-timeline-list {
    padding-left: 26px;
  }

  .timeline-marker {
    left: -26px;
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .timeline-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc-booking-cta-strip {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .doc-strip-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Responsive CSS End */
