:root {
  --primary: #008b8b;
  --primary-dark: #006f6f;
  --navy: #071f3d;
  --text: #334155;
  --white: #ffffff;
  --soft: #eefafa;
}

main {
  position: relative;
  z-index: 1;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--soft);
  color: var(--navy);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

/* HEADER */

.site-header {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.94);

  position: sticky;
  top: 0;
  left: 0;

  z-index: 9999;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(15, 23, 42, 0.05);

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06);
}

.navbar {
  width: min(100% - 96px, 1800px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand span {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: #006b54;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 54px;
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #0f1f35;
}

.nav-menu > li > a.active::after,
.nav-menu > li > a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 48px;
  height: 3px;
  border-radius: 20px;
  background: var(--primary);
  transform: translateX(-50%);
}

.nav-btn {
  height: 48px;
  min-width: 190px;
  margin-left: 32px;
  padding: 0 20px;

  border-radius: 10px;

  background: linear-gradient(135deg, #007a7a, #009999);
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  font-size: 15px;
  font-weight: 700;

  box-shadow: 0 8px 20px rgba(0, 139, 139, 0.18);
}

.nav-toggle {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  height: calc(100vh - 102px);
  min-height: 410px;
  max-height: 820px;
  overflow: hidden;
  background: #eefafa;
}

/* right-side image */
.hero-image-wrap {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 58%;
  height: 100%;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-width: 920px;
  height: auto;

  object-fit: contain;

  filter:
    brightness(1.02)
    contrast(1.02)
    saturate(1.05);

  mask-image: linear-gradient(
    to left,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.88) 82%,
    rgba(0,0,0,0.45) 92%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.88) 82%,
    rgba(0,0,0,0.45) 92%,
    transparent 100%
  );
}

/* white/teal merge layer */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(245,253,253,0.96) 0%,
      rgba(245,253,253,0.90) 2%,
      rgba(245,253,253,0.52) 14%,
      rgba(245,253,253,0.10) 12%,
      rgba(245,253,253,0) 22%
    );
}


.hero-content {
  position: relative;
  z-index: 10;
  width: 610px;
  margin-left: clamp(60px, 7vw, 130px);
  padding-top: clamp(105px, 13vh, 180px);
}

.hero-label {
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(64px, 5.6vw, 104px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -5px;
  color: var(--navy);
  margin-bottom: 28px;
}

.title-line {
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 20px;
  background: var(--primary);
  margin-bottom: 24px;
}

.hero-text {
  max-width: 540px;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 34px;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 40px;
}

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

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(226, 252, 252, 0.85);
  border: 1px solid rgba(0, 139, 139, 0.18);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
}

.feature strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  color: #102033;
  font-weight: 800;
}

.feature span {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  color: #334155;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.btn {
  height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  transition: 0.25s ease;
}

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

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #007a7a, #009999);
  box-shadow: 0 14px 30px rgba(0, 139, 139, 0.25);
}

.secondary-btn {
  color: #172033;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

/* SERVICE STRIP */

/* DECORATIONS */

.dots {
  position: absolute;
  top: 40px;
  left: 10px;
  z-index: 4;
  width: 130px;
  height: 90px;
  background-image: radial-gradient(rgba(0, 139, 139, 0.15) 4px, transparent 4px);
  background-size: 24px 24px;
}

.plus-shape {
  position: absolute;
  top: 40px;
  left: 30%;
  z-index: 4;
  color: rgba(0, 139, 139, 0.08);
  font-size: 82px;
  font-weight: 900;
}

.bottom-wave {
  position: absolute;
  left: -115px;
  bottom: -170px;
  z-index: 3;
  width: 560px;
  height: 360px;
  background: #008b8b;
  border-radius: 52% 48% 0 0;
  transform: rotate(18deg);
}

.bottom-wave::before {
  content: "";
  position: absolute;
  top: -75px;
  left: 40px;
  width: 430px;
  height: 180px;
  background: #eafafa;
  border-radius: 50%;
}

.bottom-wave::after {
  content: "";
  position: absolute;
  left: 120px;
  bottom: 80px;
  width: 110px;
  height: 70px;
  background-image: radial-gradient(rgba(255,255,255,0.35) 3px, transparent 3px);
  background-size: 22px 22px;
}

/* LAPTOP FIX */
@media (max-width: 1450px) {
  .site-header {
    height: 88px;
  }

  .navbar {
    width: min(100% - 64px, 1400px);
  }

  .logo {
    width: 56px;
    height: 56px;
  }

  .brand span {
    font-size: 30px;
  }

  .nav-menu {
    gap: 34px;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .nav-btn {
    height: 50px;
    min-width: 210px;
    margin-left: 28px;
    font-size: 15px;
  }

  .hero {
    height: calc(100vh - 88px);
    min-height: 640px;
    max-height: 760px;
  }

  .hero-content {
    width: 520px;
    padding-top: clamp(76px, 10vh, 120px);
  }

  .hero h1 {
    font-size: clamp(58px, 5vw, 82px);
  }

  .hero-text {
    font-size: 18px;
    max-width: 480px;
  }

  .hero-features {
    gap: 24px;
    margin-bottom: 30px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .feature strong {
    font-size: 17px;
  }

  .feature span {
    font-size: 14px;
  }

  .btn {
    height: 52px;
    font-size: 15px;
  }
}

/* TABLET */

@media (max-width: 1180px) {
  .nav-menu {
    display: none;
  }

  .nav-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .navbar {
    width: min(100% - 40px, 1100px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-image-wrap {
    width: 62%;
    right: -80px;
  }

  .hero-content {
    width: 500px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

  .navbar {
    width: min(100% - 24px, 1100px);
    justify-content: flex-start;
  }

  .brand {
    max-width: 100%;
    gap: 10px;
  }

  .logo {
    width: 44px;
    height: 44px;
  }

  .brand span {
    font-size: 18px;
    letter-spacing: -0.4px;
    white-space: nowrap;
  }

.nav-toggle {
  display: none !important;
}

.navbar {
  width: 100%;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-header {
  height: auto;
  min-height: 118px;
  position: sticky;
  top: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  width: 100%;
  justify-content: center;
}

.logo {
  width: 34px;
  height: 34px;
}

.brand span {
  font-size: 16px;
}

.nav-menu {
  display: flex !important;
  width: 100%;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: 0;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 700;
}

.nav-menu > li > a.active::after,
.nav-menu > li > a:hover::after {
  bottom: -5px;
  width: 28px;
  height: 2px;
}

.nav-btn {
  display: none !important;
}

.hero {
  height: auto;
  min-height: calc(100vh - 118px);
  padding: 0 0 54px;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 235px;
  right: auto;
  top: auto;
  bottom: auto;
  opacity: 1;
  z-index: 3;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 72%, transparent 100%);
}

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(245,253,253,0.92) 0%,
        rgba(245,253,253,0.78) 46%,
        rgba(245,253,253,0.62) 100%
      );
  }

.hero-content {
  width: auto;
  margin: -18px 22px 0;
  padding-top: 0;
  text-align: center;
}

  .hero-label {
    font-size: 12px;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 0.98;
    letter-spacing: -2px;
    margin-bottom: 22px;
  }

  .title-line {
    margin-inline: auto;
    margin-bottom: 18px;
  }

  .hero-text {
    max-width: 100%;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }

  .feature {
    width: 190px;
    justify-content: flex-start;
    text-align: left;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .feature strong {
    font-size: 15px;
  }

  .feature span {
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .btn {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }

  .dots,
  .plus-shape,
  .bottom-wave {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 16px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-image {
    max-width: 520px;
  }
}

/* 2nd banner  */

.hospital-overview {
  padding: 70px 20px;
  background: #ffffff;
}

.overview-container {
  max-width: 1100px;
  margin: auto;
}

.overview-container h2 {
  font-size: 42px;
  color: #0b4f9c;
  margin-bottom: 18px;
}

.overview-container > p {
  font-size: 15px;
  line-height: 1.8;
  color: #667085;
  margin-bottom: 18px;
}

.overview-card {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  margin-top: 35px;
  background: #0b4f9c;
}

.overview-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.overview-info {
  padding: 35px 30px;
  color: #ffffff;
}

.overview-info h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.overview-info p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.direction-btn {
  display: inline-block;
  background: #ffffff;
  color: #0b4f9c;
  padding: 13px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin: 10px 0 25px;
}

.contact-box {
  background: #ffffff;
  color: #0b4f9c;
  padding: 13px 16px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
}

.emergency {
  color: #e63946;
}

.helpline {
  color: #00a878;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e5e7eb;
  margin-top: 0;
}

.stat-box {
  padding: 25px 30px;
  border-right: 1px solid #e5e7eb;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box h3{
  font-size:38px;
  font-weight:800;
  color:#0b4f9c;
  margin-bottom:8px;
}
.stat-box h4 {
  font-size: 17px;
  color: #00a878;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  color: #667085;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hospital-overview {
    padding: 45px 15px;
  }

  .overview-container h2 {
    font-size: 32px;
  }

  .overview-card {
    grid-template-columns: 1fr;
  }

  .overview-image img {
    min-height: 260px;
  }

  .overview-info {
    padding: 28px 20px;
  }

  .overview-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 22px 10px;
  }

  .stat-box:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .overview-container h2 {
    font-size: 28px;
  }

  .overview-container > p {
    font-size: 14px;
  }

  .overview-info h3 {
    font-size: 21px;
  }

  .direction-btn {
    width: 100%;
    text-align: center;
  }
}


/* 3rd banner */

.doctors-section {
  padding: 70px 20px;
  background: #ffffff;
  overflow: hidden;
}

.doctors-container {
  max-width: 1200px;
  margin: auto;
}

.doctors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  gap: 20px;
}

.doctors-header h2 {
  font-size: 42px;
  color: #0b4f9c;
  margin-bottom: 10px;
}

.doctors-header p {
  max-width: 760px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.view-all {
  color: #0b2f6b;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.doctors-slider {
  overflow: hidden;
  width: 100%;
}

.doctors-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.doctor-card {
  min-width: 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(11, 79, 156, 0.06);
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(11, 79, 156, 0.14);
}

.doctor-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #e5e7eb;
  transition: transform 0.5s ease;
}

.doctor-card:hover img {
  transform: scale(1.04);
}

/* Premium bottom content */
.doctor-info {
  padding: 22px 20px;
  background: #ffffff;
  position: relative;
}

.doctor-info::before {
  content: "";
  width: 55px;
  height: 3px;
  background: linear-gradient(135deg, #0b4f9c, #00b894);
  position: absolute;
  top: 0;
  left: 20px;
  border-radius: 50px;
}

.doctor-info h3 {
  font-size: 20px;
  color: #0b4f9c;
  margin-bottom: 8px;
  margin-top: 8px;
  font-weight: 700;
}

.doctor-info p {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}


.doctor-info {
  padding: 20px;
}

.doctor-info h3 {
  color: #123f7a;
  font-size: 20px;
  margin-bottom: 8px;
}

.doctor-info p {
  color: #244c8f;
  font-size: 14px;
  line-height: 1.5;
}
.doctor-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.doctor-buttons button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid transparent;
  color: #0b4f9c;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #0b4f9c, #00b894);

  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 6px 18px rgba(11, 79, 156, 0.12);
}

.doctor-buttons button:hover {
  color: #00b894;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 184, 148, 0.22);
}

.doctor-buttons button:active {
  transform: scale(0.96);
}
/* Mobile */


/* Mobile Responsive */
@media (max-width: 768px) {
  .doctors-section {
    padding: 45px 15px;
  }

  .doctors-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctors-header h2 {
    font-size: 32px;
  }

  .doctor-card {
    min-width: 82%;
  }

  .doctor-card img {
    height: 290px;
  }

  .doctor-info {
    padding: 18px;
  }

  .doctor-info h3 {
    font-size: 18px;
  }
  .doctor-buttons {
    gap: 10px;
  }

  .doctor-buttons button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }


}


/* 4th banner */
.specialities-section {
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 184, 148, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(11, 79, 156, 0.05), transparent 30%),
    #ffffff;
  overflow: hidden;
}

.specialities-container {
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =========================
   HEADER
========================= */

.specialities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 55px;
}

.specialities-header-left span {
  display: inline-block;
  color: #00b894;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.specialities-header h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #0b4f9c;
  font-weight: 800;
  margin-bottom: 16px;
}

.specialities-header p {
  max-width: 720px;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   SLIDER
========================= */

.specialities-slider {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 16px;
}

.specialities-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}

/* =========================
   CARD
========================= */

.speciality-card {
  min-width: 295px;
  min-height: 285px;

  padding: 34px 30px;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(10px);

  border-radius: 28px;

  border: 1px solid rgba(255,255,255,0.6);

  box-shadow:
    0 12px 35px rgba(11, 79, 156, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);

  position: relative;
  overflow: hidden;

  transition: all 0.4s ease;
}

/* top glow */
.speciality-card::before {
  content: "";

  position: absolute;
  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  background: radial-gradient(
    circle,
    rgba(0, 184, 148, 0.16),
    transparent 70%
  );

  transition: 0.4s ease;
}

/* bottom border line */
.speciality-card::after {
  content: "";

  position: absolute;
  left: 30px;
  bottom: 0;

  width: 70px;
  height: 4px;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    #0b4f9c,
    #00b894
  );
}

.speciality-card:hover {
  transform: translateY(-12px);

  box-shadow:
    0 25px 60px rgba(11, 79, 156, 0.16);

  border-color: rgba(0, 184, 148, 0.18);
}

.speciality-card:hover::before {
  transform: scale(1.2);
}

/* =========================
   ICON
========================= */

.speciality-icon {
  width: 72px;
  height: 72px;

  border-radius: 22px;

  background:
    linear-gradient(135deg, #0b4f9c, #00b894);

  color: #ffffff;

  font-size: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  box-shadow:
    0 12px 24px rgba(11, 79, 156, 0.18);
}

/* =========================
   TEXT
========================= */

.speciality-card h3 {
  color: #0b4f9c;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 14px;
  font-weight: 800;
}

.speciality-card p {
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.speciality-buttons {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.speciality-buttons button {
  width: 54px;
  height: 54px;

  border-radius: 50%;

  border: none;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;

  color: #0b4f9c;

  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #0b4f9c, #00b894) border-box;

  border: 2px solid transparent;

  box-shadow:
    0 10px 24px rgba(11, 79, 156, 0.12);

  transition: all 0.35s ease;
}

.speciality-buttons button:hover {
  transform: translateY(-5px);

  color: #00b894;

  box-shadow:
    0 14px 28px rgba(0, 184, 148, 0.18);
}

.speciality-buttons button:active {
  transform: scale(0.95);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .specialities-section {
    padding: 65px 15px;
  }

  .specialities-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .specialities-header h2 {
    font-size: 36px;
  }

  .specialities-header p {
    font-size: 15px;
  }

  .speciality-card {
    min-width: 86%;
    min-height: auto;

    padding: 28px 24px;

    border-radius: 24px;
  }

  .speciality-icon {
    width: 62px;
    height: 62px;
    font-size: 28px;
    border-radius: 18px;
  }

  .speciality-card h3 {
    font-size: 20px;
  }

  .speciality-card p {
    font-size: 14px;
  }

  .speciality-buttons {
    margin-top: 28px;
    gap: 10px;
  }

  .speciality-buttons button {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}
/* 5th banner */
.care-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b4f9c 0%, #06c18c 100%);
  position: relative;
  overflow: hidden;
}

.care-container {
  max-width: 1180px;
  margin: auto;
}

.care-heading {
  margin-bottom: 42px;
}

.care-heading h2 {
  color: #ffffff;
  font-size: 46px;
  margin-bottom: 14px;
  font-weight: 800;
}

.care-heading p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.care-card {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transition: all 0.4s ease;
}

.care-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}

.care-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.care-card:hover img {
  transform: scale(1.08);
}

.care-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 5%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.care-overlay h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.care-overlay p {
  color: rgba(255,255,255,0.92);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.care-overlay a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.care-overlay a:hover {
  color: #7fffd4;
}

/* Tablet */
@media (max-width: 992px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-card {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .care-section {
    padding: 55px 15px;
  }

  .care-heading h2 {
    font-size: 34px;
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .care-card {
    height: 240px;
    border-radius: 18px;
  }

  .care-overlay {
    padding: 20px;
  }

  .care-overlay h3 {
    font-size: 20px;
  }
}

/* 6th banner */
.site-footer {
  background: #0b4f9c;
  color: #ffffff;
  padding: 40px 20px 16px;
}

.footer-container {
  max-width: 1350px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;

  padding-bottom: 22px;
}

.footer-col {
  flex: 1;
}

.footer-brand {
  flex: 1.6;
}

.footer-col h2 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffffff;
  font-weight: 700;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.footer-address {
  margin-top: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-social a,
.footer-bottom a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-col ul li a:hover,
.footer-social a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer-bottom {
  max-width: 1350px;
  margin: auto;

  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

/* Tablet */
@media (max-width: 992px) {

  .footer-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-col {
    min-width: 220px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .site-footer {
    padding: 35px 15px 18px;
  }

  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* =========================
   service MENU
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  color: #0b4f9c;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #00b894;
}

/* Dropdown parent */
.has-mega-menu {
  position: relative;
}

/* Mega box */
.mega-menu {
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%);

  width: 850px;
  background: #ffffff;

  border-radius: 22px;
  padding: 38px;

  display: flex;
  gap: 45px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.28s ease;

  box-shadow: 0 25px 60px rgba(11, 79, 156, 0.14);

  border: 1px solid rgba(11, 79, 156, 0.08);

  z-index: 999;
}

/* Show on hover */
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: 108%;
}

/* Column */
.mega-col {
  flex: 1;
}

.mega-col h3 {
  color: #0b4f9c;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}

.mega-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 50px;
  height: 3px;

  background: linear-gradient(135deg, #0b4f9c, #00b894);
  border-radius: 50px;
}

/* Links */
.mega-col a {
  display: block;
  padding: 10px 0;

  color: #475467 !important;
  font-size: 14px !important;
  font-weight: 500 !important;

  transition: 0.3s;
}

.mega-col a:hover {
  color: #00b894 !important;
  transform: translateX(5px);
}

/* Small arrow effect */
.mega-menu::before {
  content: "";

  position: absolute;
  top: -6px;
  left: 50%;

  transform: translateX(-50%) rotate(45deg);

  width: 20px;
  height: 20px;

  background: #ffffff;

  border-left: 1px solid rgba(11, 79, 156, 0.08);
  border-top: 1px solid rgba(11, 79, 156, 0.08);
}

@media (max-width: 992px) {

  .has-mega-menu {
    position: relative;
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 300px;
    max-height: 360px;
    overflow-y: auto;

    display: none;
    flex-direction: column;
    gap: 16px;

    margin-top: 8px;
    padding: 18px;

    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8eef6;
    box-shadow: 0 15px 40px rgba(11, 79, 156, 0.18);

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    z-index: 9999;
  }

  .has-mega-menu.active .mega-menu {
    display: flex;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-col {
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f7;
  }

  .mega-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .mega-col h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .mega-col a {
    display: block;
    padding: 6px 0 !important;
    font-size: 13px !important;
  }
}

/* Fix underline inside mega menu */
.mega-menu a::after,
.mega-menu a:hover::after,
.mega-menu a.active::after {
  display: none !important;
  content: none !important;
}

/* Keep mega menu links clean */
.mega-col a {
  position: relative;
}

.mega-col a:hover {
  color: #00b894 !important;
  transform: translateX(5px);
}

/* Fix service anchor opening under/middle of screen */
html {
  scroll-behavior: smooth;
}

.service-section,
section[id] {
  scroll-margin-top: 120px;
} 

.footer-seo-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 35px;

  padding-top: 40px;
  margin-top: 40px;

  border-top: 1px solid #ffffff;
}

.seo-text-col h4 {
  color: #0b4f9c;

  font-size: 16px;
  font-weight: 700;

  margin-bottom: 14px;
}

.seo-text-col span {
  display: block;

  color: #667085;

  font-size: 14px;
  line-height: 1.8;

  margin-bottom: 5px;
}

@media (max-width: 992px) {

  .footer-seo-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {

  .footer-seo-links {
    grid-template-columns: 1fr;
  }
}





/* POPUP */

.appointment-popup {
  position: fixed;
  inset: 0;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.appointment-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, 0.45);

  backdrop-filter: blur(8px);
}

.popup-box {
  position: relative;

  width: 100%;
  max-width: 460px;

  background: #ffffff;

  padding: 42px 36px;

  border-radius: 26px;

  z-index: 2;

  box-shadow: 0 30px 70px rgba(0,0,0,0.18);

  animation: popupShow 0.35s ease;
}

@keyframes popupShow {

  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }

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

.popup-close {
  position: absolute;

  top: 16px;
  right: 18px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  background: #f3f4f6;

  font-size: 24px;

  cursor: pointer;
}

.popup-tag {
  display: inline-block;

  color: #00b894;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.popup-box h2 {
  color: #0b4f9c;

  font-size: 36px;

  margin-bottom: 10px;
}

.popup-box p {
  color: #667085;

  font-size: 15px;

  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 58px;

  border: 1px solid #dbe2ea;
  border-radius: 14px;

  padding: 0 18px;

  font-size: 15px;

  outline: none;

  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #00b894;
}

.submit-btn {
  width: 100%;
  height: 58px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #0b4f9c, #00b894);

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  margin-top: 8px;
}

@media(max-width: 768px){

  .popup-box {
    margin: 20px;
    padding: 34px 24px;
  }

  .popup-box h2 {
    font-size: 30px;
  }
}


/* conform message  */
.success-popup {
  position: fixed;
  inset: 0;

  background: rgba(15,23,42,0.45);

  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999999;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.success-popup.active {
  opacity: 1;
  visibility: visible;
}

.success-box {
  width: 100%;
  max-width: 420px;

  background: #ffffff;

  border-radius: 26px;

  padding: 42px 34px;

  text-align: center;

  box-shadow: 0 30px 70px rgba(0,0,0,0.18);

  animation: popupSuccess 0.35s ease;
}

@keyframes popupSuccess {

  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }

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

.success-icon {
  width: 78px;
  height: 78px;

  margin: auto auto 22px;

  border-radius: 50%;

  background: linear-gradient(135deg, #0b4f9c, #00b894);

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  font-weight: 700;
}

.success-box h3 {
  color: #0b4f9c;

  font-size: 30px;

  margin-bottom: 14px;
}

.success-box p {
  color: #667085;

  font-size: 15px;
  line-height: 1.8;

  margin-bottom: 28px;
}

.success-box button {
  width: 100%;
  height: 54px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #0b4f9c, #00b894);

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
}

.primary-btn {
  border: none;
  cursor: pointer;
}

.submit-btn.loading {
  opacity: 0.75;
  cursor: not-allowed;
}


/* =========================
   HEADER BADGES
========================= */

.brand-content{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-badges{
  display:flex;
  align-items:center;
  gap:12px;
}

.badge-logo{
  height:52px;
  width:auto;
  object-fit:contain;
  background:none;
  padding:0;
  border-radius:0;
  box-shadow:none;
}
.brand-left{
    display:flex;
    align-items:center;
    gap:10px;
}


.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.hospital-name{
  font-size:36px;
  font-weight:800;
  color:#075f5f;
}

.hospital-tagline{
  font-size:13px;
  font-weight:800;
  color:#d63384; /* premium women's pink */
  letter-spacing:0.4px;
  margin-top:4px;
}


/* Large Desktop */
@media (max-width:1450px){

  .badge-logo{
    height:40px;
  }
}

/* Tablet */
@media (max-width:1180px){

  .brand-content{
    gap:10px;
  }

  .badge-logo{
    height:34px;
    padding:3px 6px;
  }
}

/* Mobile */
@media (max-width:768px){

  .brand{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
  }

  .brand-left{
    display:flex;
    align-items:center;
    gap:8px;
  }

  .brand span{
    font-size:16px;
    font-weight:800;
    color:#075f5f;
  }

  .brand-badges{
    gap:6px;
  }

  .badge-logo{
    height:65px;
  }

  .logo{
    width:38px;
    height:38px;
  }
}

@media (max-width:1450px){

  .hospital-name{
    font-size:30px;
  }

  .hospital-tagline{
    font-size:12px;
  }
}

@media (max-width:768px){

  .hospital-name{
    font-size:16px;
  }

  .hospital-tagline{
    font-size:9px;
    letter-spacing:0.3px;
  }
}

.floating-call{
    position:fixed;
    right:18px;
    bottom:18px;

    width:58px;
    height:58px;

    border-radius:50%;

    background:linear-gradient(135deg,#3d8c7c,#008660);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    box-shadow:0 10px 30px rgba(0,168,120,.25);

    z-index:9999;
}

@media(max-width:768px){

    .floating-call{
        width:54px;
        height:54px;
        right:15px;
        bottom:15px;
        font-size:20px;
    }
}
.floating-call{
    animation:callPulse 2s infinite;
}

@keyframes callPulse{
    0%{box-shadow:0 0 0 0 rgba(0,168,120,.45);}
    70%{box-shadow:0 0 0 15px rgba(0,168,120,0);}
    100%{box-shadow:0 0 0 0 rgba(0,168,120,0);}
}

/* pop up  */


.call-popup{
    position:fixed;
    right:20px;
    bottom:90px;

    width:280px;

    background:#fff;
    border-radius:16px;

    padding:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;
}

.call-popup.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.popup-close-btn{
    position:absolute;
    top:8px;
    right:10px;

    border:none;
    background:none;

    font-size:20px;
    cursor:pointer;
}

.call-popup h4{
    color:#0b4f9c;
    margin-bottom:8px;
}

.call-popup p{
    color:#667085;
    font-size:14px;
    line-height:1.5;
    margin-bottom:12px;
}

.call-popup a{
    display:inline-block;

    padding:10px 16px;

    border-radius:8px;

    background:#0b4f9c;
    color:#fff;

    font-size:14px;
    font-weight:700;
}
