@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #e30000 #f2f2f2;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #0c1b00;
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #112900;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

:root {
  --accent: #f02f5a;
  --accent-dark: #d72853;
  --muted: #f6f6f6;
  --hero-height: 680px;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

.tick-list {
  list-style: none;
  padding: 0;
}
.tick-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
}

/* ================= TOP HEADER ================= */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 55px;
  height: 50px;
  background: #e30000;
  z-index: 90;
}

/* ================= LEFT CONTACTS ================= */
.top-left-contacts {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-left-contacts .contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.18);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
}
.top-left-contacts svg {
  fill: #fff;
}

/* ================= CENTER LOGO ================= */
.brand-main {
  text-align: center;
  display: none;
}
@media (max-width: 756px) {
  .brand-main {
    display: block;
  }
}
.brand-main img {
  height: 42px;
  max-width: 250px;
  transition: all 0.3s ease;
}

/* ================= RIGHT AREA ================= */
.top-right-area {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

/* ================= MINI MENU ================= */
.top-mini-menu {
  display: flex;
  gap: 18px;
}
.top-mini-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.top-mini-menu a:hover {
  opacity: 0.7;
}
.top-mini-menu a sup {
  font-size: 7px;
}

/* ================= SEARCH BUTTON ================= */
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px;
  transition: 0.3s;
}
.search-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
.search-btn:hover img {
  transform: scale(1.1);
}

/* ================= HAMBURGER ================= */
.hamburger {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #e30000;
  width: 30px;
  transition: 0.3s;
}

.hamburger-mob {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-mob span {
  display: block;
  height: 3px;
  background: #e30000;
  width: 30px;
  transition: 0.3s;
}

.mobile-hamburger {
  display: none;
}

@media (max-width: 992px) {
  .top-mini-menu {
    display: none;
  }
}
@media (max-width: 900px) {
  .top-header {
    grid-template-columns: 50px 1fr 50px;
    padding: 0 15px;
    height: 60px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.35s ease-in-out;
    will-change: transform, padding, background;
  }
  /* SHOW HAMBURGER */
  .mobile-hamburger {
    display: flex;
    justify-self: start;
  }
  /* HIDE CONTACTS */
  .top-left-contacts {
    display: none;
  }
  /* CENTER LOGO */
  .brand-main {
    text-align: center;
    display: block;
  }
  .brand-main img {
    height: 38px;
    margin: 0 auto;
  }
  /* RIGHT SEARCH ALIGN */
  .top-right-area {
    justify-self: end;
    gap: 0;
  }
  .search-btn img {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .brand-main img {
    height: 32px;
  }
  .hamburger span {
    width: 24px;
  }
}
.top-right-contacts {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 13px;
}

.top-right-contacts .contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.18);
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.top-right-contacts svg {
  fill: #fff;
  opacity: 0.9;
}

.search-btn {
  background-color: rgba(255, 0, 0, 0);
  border: none;
}
.search-btn img {
  width: 20px;
  height: 20px;
}

.search-modal {
  position: fixed;
  inset: 0;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.829);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 9999;
}
.search-modal.open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(12px);
}
.search-modal .search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 96%;
  max-width: 600px;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: scaleIn 0.4s ease forwards;
}
.search-modal .search-box input {
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}
.search-modal .search-box input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.search-modal .search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.search-modal .search-box input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: #00b4d8;
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.6);
}
.search-modal .search-box .submit-btn {
  background: linear-gradient(135deg, var(--accent), #b70129);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(215, 40, 84, 0.568);
}
.search-modal .search-box .submit-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #0096c7, #005f8f);
  box-shadow: 0 0 14px rgba(0, 180, 216, 0.8);
}
.search-modal .search-box .submit-btn:active {
  transform: scale(0.97);
}
.search-modal .close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search-modal .close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
}
@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 0.5rem;
}
.search-btn img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.search-btn:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.8));
}

/* mega-menu offcanvas */
.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  pointer-events: none;
}

.mega-menu .mega-inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translateX(-110%);
  transition: transform 0.35s ease;
  background: linear-gradient(180deg, rgba(11, 42, 58, 0.9019607843), rgba(15, 59, 77, 0.8117647059));
  color: #fff;
  padding: 36px;
  pointer-events: auto;
}

.mega-menu.open .mega-inner {
  transform: translateX(0);
}

.mega-close {
  position: absolute;
  right: 26px;
  top: 26px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  max-height: 80vh;
  overflow: auto;
  margin-top: 30px;
}

.mega-col h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #ffd3b9;
}

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

.mega-col a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 6px 0;
}

.appointment-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(227, 0, 0, 0.5803921569), #e30000);
  box-shadow: 0 10px 30px rgba(227, 0, 0, 0.56);
  transition: all 0.4s ease;
}
.appointment-btn i {
  font-size: 14px;
  transition: transform 0.4s ease;
}
.appointment-btn span {
  position: relative;
  z-index: 2;
  font-size: 12px;
}
.appointment-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}
.appointment-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(227, 0, 0, 0.5803921569);
}
.appointment-btn:hover i {
  transform: rotate(-15deg) scale(1.2);
}
.appointment-btn:hover::before {
  transform: translateX(100%);
}
.appointment-btn:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  .appointment-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.appointment-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.appointment-modal-content {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  animation: popupAnimation 0.3s ease;
}
.appointment-modal-content h2 {
  margin-bottom: 20px;
  text-align: center;
}
.appointment-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.appointment-modal-content input,
.appointment-modal-content textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}
.appointment-modal-content textarea {
  min-height: 120px;
  resize: vertical;
}

@keyframes popupAnimation {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
  color: #777;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #000;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(227, 0, 0, 0.5803921569), #e30000) !important;
  box-shadow: 0 10px 30px rgba(227, 0, 0, 0.56) !important;
  transition: all 0.4s ease;
}
.submit-btn i {
  font-size: 18px;
  transition: transform 0.4s ease;
}
.submit-btn span {
  position: relative;
  z-index: 2;
  font-size: 14px;
}
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(227, 0, 0, 0.58);
}
.submit-btn:hover i {
  transform: rotate(-15deg) scale(1.2);
}
.submit-btn:hover::before {
  transform: translateX(100%);
}
.submit-btn:active {
  transform: scale(0.96);
}

.hero {
  position: relative;
  height: var(--hero-height);
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-pagetitle {
  position: relative;
  width: 100%;
  height: 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-pagetitle {
    height: 315px !important;
  }
}
.hero-pagetitle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.158);
  backdrop-filter: blur(1px);
}
.hero-pagetitle .fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  transform: translateY(10px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-pagetitle .hero-title-box {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .hero-pagetitle .hero-title-box {
    margin-top: 10px;
  }
}
.hero-pagetitle .hero-title-box .hero-title {
  color: #fff;
  text-shadow: -3px 3px 10px #1f3140;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.5);
  text-align: left;
  padding: 0 5%;
}
.hero-pagetitle .hero-title-box .hero-subtitle {
  color: #fff;
  text-shadow: -3px 3px 10px #1f3140;
  font-size: 18px;
  margin-top: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: 0.9;
  text-align: left;
  padding: 0 5%;
}
@media (max-width: 580px) {
  .hero-pagetitle .hero-title-box .hero-subtitle {
    font-size: 15px;
    font-weight: 500;
  }
}
.hero-pagetitle .breadcrumbs {
  position: relative;
  z-index: 3;
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8470588235);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 5%;
}
.hero-pagetitle .breadcrumbs a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  transition: 0.3s;
}
.hero-pagetitle .breadcrumbs a:hover {
  color: #ffdadf;
  opacity: 1;
  transform: translateX(2px);
}
.hero-pagetitle .breadcrumbs a .arrow {
  width: 12px;
  height: 12px;
  opacity: 0.8;
}
.hero-pagetitle .breadcrumbs .current {
  color: #fff;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .hero-pagetitle {
    height: 380px;
  }
  .hero-pagetitle .hero-title {
    font-size: 22px !important;
  }
  .hero-pagetitle .breadcrumbs {
    font-size: 13px;
    gap: 4px;
  }
  .hero-pagetitle .breadcrumbs .arrow {
    width: 10px;
    height: 10px;
  }
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.8s ease;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  pointer-events: auto;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 30, 40, 0.28), rgba(10, 30, 40, 0.32));
}

.slide-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 245px 50px 140px 50px;
  text-align: right;
  color: #fff;
  max-width: 560px;
  margin-left: auto;
}

.slide-content h1 {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 10px;
  font-weight: 700;
}

.slide-content h1 span {
  font-weight: 800;
}

.slide-content p {
  margin: 6px 0 18px;
  opacity: 0.95;
}
@media (max-width: 580px) {
  .slide-content p {
    text-align: right;
  }
}

.cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(227, 0, 0, 0.5803921569), #e30000);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  z-index: 20;
}

.social-vertical {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  padding: 8px;
  background: transparent;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-vertical a img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.mouse-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 6;
  width: 44px;
  height: 72px;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  background: transparent;
  cursor: pointer;
}

.mouse-scroll .wheel {
  display: block;
  width: 6px;
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  animation: wheel 1.6s infinite;
  margin: 0 auto;
}

@keyframes wheel {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-bottom-row {
  position: fixed;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  top: 3.1rem;
  padding: 22px 48px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s ease-in-out;
  will-change: transform, padding, background;
}
.hero-bottom-row.shrink {
  padding: 10px 32px;
  background: rgba(10, 30, 40, 0.85);
  backdrop-filter: blur(10px);
}
.hero-bottom-row.shrink .brand img {
  height: 42px;
  transform: scale(0.95);
}
.hero-bottom-row.shrink .bottom-nav a {
  font-size: 14px;
}
.hero-bottom-row .brand img {
  height: 60px;
  max-width: 300px;
  transition: all 0.3s ease;
}
.hero-bottom-row .bottom-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .hero-bottom-row .bottom-nav ul {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
}
.hero-bottom-row .bottom-nav ul::-webkit-scrollbar {
  display: none;
}
.hero-bottom-row .bottom-nav a {
  color: rgb(96, 96, 96);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  font-size: 14px;
}
.hero-bottom-row .bottom-nav a:hover {
  color: #ec1f27;
}
.hero-bottom-row .bottom-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ec1f27;
  transition: width 0.3s ease;
}
.hero-bottom-row .bottom-nav a:hover::after {
  width: 100%;
}
@media (max-width: 900px) {
  .hero-bottom-row {
    flex-direction: column;
    padding: 14px 20px;
    gap: 8px;
  }
  .hero-bottom-row .bottom-nav ul {
    justify-content: flex-start;
    gap: 16px;
  }
  .hero-bottom-row .bottom-nav a {
    font-size: 14px;
    white-space: nowrap;
  }
}

.slider-dots {
  position: absolute;
  right: 90px;
  bottom: 130px;
  z-index: 7;
  display: block;
  flex-direction: column;
  gap: 10px !important;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
}

.slider-dots button.active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.split-section_shape {
  position: relative;
  width: 100%;
  height: 140px;
  background-image: url(../images/shapetop.webp);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top center;
  margin-top: -90px;
}

.split-section_shapedown {
  position: relative;
  width: 100%;
  height: 140px;
  background-image: url(../images/shape-dwn.webp);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top center;
  margin-top: -95px;
  z-index: 3;
}
@media (max-width: 1411px) {
  .split-section_shapedown {
    margin-top: -95px;
  }
}
@media (max-width: 1100px) {
  .split-section_shapedown {
    margin-top: -85px;
  }
}
@media (max-width: 899px) {
  .split-section_shapedown {
    margin-top: -92px;
  }
}
@media (max-width: 480px) {
  .split-section_shapedown {
    height: 50px;
    margin-top: -33px !important;
  }
}

.split-section {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  padding: 90px 48px;
  background: #e12355;
  align-items: start;
  gap: 20px;
  margin-top: -20px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .split-section {
    margin-top: -95px !important;
  }
}

.split-left,
.split-right {
  background: transparent;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

.split-left h2 {
  margin: 8px 0 16px;
  font-size: 28px;
}

.split-left h3 {
  color: #ffe600;
}

.split-left p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.know-more-btn .text {
  font-size: 0.8rem;
  white-space: nowrap;
}
.know-more-btn .circle {
  position: relative;
  width: 70px;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle at center, #e73b6d 40%, #f74d7d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.know-more-btn .circle .inside-circle {
  background: #e12355;
  width: 60px;
  border-radius: 50%;
}
.know-more-btn .circle .arrow {
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  transform: translateX(2px);
  transition: transform 0.3s ease;
}
.know-more-btn:hover .inside-circle {
  transform: scale(1.05);
}
.know-more-btn:hover .arrow {
  transform: translateX(8px);
}
@media (max-width: 992px) {
  .know-more-btn {
    font-size: 1.2rem;
    gap: 16px;
  }
  .know-more-btn .circle {
    width: 62px;
  }
  .know-more-btn .circle .arrow {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .know-more-btn {
    font-size: 1rem;
    gap: 12px;
  }
  .know-more-btn .circle {
    width: 55px;
    height: 55px;
  }
  .know-more-btn .circle .arrow {
    font-size: 2rem;
  }
}

.center-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.center-badge .pill-card {
  width: 200px;
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #2f4156;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
  margin: 20px auto;
}
.center-badge .pill-card:hover {
  transform: translateY(-5px);
}
.center-badge .pill-card .top-section {
  background: #3b5064;
  padding: 40px 20px 25px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
.center-badge .pill-card .top-section .circle {
  background: #ffe600;
  color: #000;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}
.center-badge .pill-card .top-section .circle .big-text {
  font-size: 28px;
  font-weight: 700;
}
.center-badge .pill-card .top-section .circle .small-text {
  font-size: 14px;
  font-weight: 600;
}
.center-badge .pill-card .top-section .label {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
}
.center-badge .pill-card .bottom-section {
  background: #2c3e50;
  padding: 30px 20px 60px;
  position: relative;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.center-badge .pill-card .bottom-section .icon {
  margin-bottom: 12px;
}
.center-badge .pill-card .bottom-section .icon img {
  width: 60px;
  height: 60px;
}
.center-badge .pill-card .bottom-section .label {
  font-size: 14px;
  letter-spacing: 1px;
}
.center-badge .pill-card .bottom-section .arrow-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.center-badge .pill-card .bottom-section .arrow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .center-badge .pill-card {
    width: 160px;
  }
  .center-badge .pill-card .top-section .circle {
    width: 70px;
    height: 70px;
  }
  .center-badge .pill-card .top-section .circle .big-text {
    font-size: 22px;
  }
  .center-badge .pill-card .top-section .circle .small-text {
    font-size: 12px;
  }
  .center-badge .pill-card .bottom-section {
    padding: 25px 15px 35px;
  }
  .center-badge .pill-card .bottom-section .arrow-btn {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .center-badge .pill-card {
    width: 130px;
  }
  .center-badge .pill-card .top-section {
    padding: 30px 10px 20px;
  }
  .center-badge .pill-card .bottom-section {
    padding: 20px 10px 50px;
  }
}

@media (min-width: 900px) {
  .mega-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .slide-content h1 {
    font-size: 44px;
  }
  .hero {
    height: 760px;
  }
  .hero-bottom-row {
    padding: 10px 60px;
  }
  .mouse-scroll {
    bottom: 80px;
  }
  .split-section {
    grid-template-columns: 1fr 260px 1fr;
    padding: 95px 95px 155px;
    margin-top: -80px;
  }
}
@media (max-width: 900px) {
  .top-right-contacts .contact {
    display: none;
  }
  .hero {
    min-height: 520px;
  }
  .slide-content {
    text-align: center;
    padding: 160px 24px 120px 24px;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero-bottom-row {
    display: none;
  }
  .bottom-nav {
    display: none;
  }
  .social-vertical {
    left: 8px;
  }
  .slider-dots {
    right: 12px;
    bottom: 125px;
    flex-direction: row;
  }
  .slider-dots button {
    width: 20px;
    height: 20px;
  }
  .mouse-scroll {
    bottom: 80px;
  }
  .split-section {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 12px;
    margin-top: -70px;
  }
  .center-badge {
    order: 3;
  }
}
@media (max-width: 640px) {
  .hamburger {
    width: 40px;
    height: 40px;
  }
  .slide-content h1 {
    font-size: 20px;
  }
  .hero {
    height: 520px;
  }
  .social-vertical {
    display: none;
  }
  .mouse-scroll {
    display: block;
    bottom: 90px;
  }
  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px;
    display: none;
  }
  .hero-bottom-row .brand img {
    height: 46px;
  }
  .mega-inner {
    padding: 18px;
  }
  .split-section_shapedown {
    margin-top: -45px;
  }
}
@media (max-width: 480px) {
  .slider-dots button {
    width: 12px;
    height: 12px;
  }
  .slider-dots button.active {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 3px solid rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
  }
  .slider-dots {
    right: 12px;
    bottom: 60px;
    flex-direction: row;
  }
  .mouse-scroll {
    width: 30px;
    height: 55px;
  }
  .hero-bottom-row {
    top: 3.9rem;
  }
}
.departments-section {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  padding: 15px 30px 0;
}
.departments-section .container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.departments-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .departments-section .section-title {
    font-size: 1.5rem;
  }
}
.departments-section .section-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.departments-section .section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.departments-section .departments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .departments-section .departments-grid {
    grid-template-columns: 1fr;
  }
}
.departments-section .departments-left {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .departments-section .departments-left {
    grid-template-columns: 1fr;
  }
}
.departments-section .departments-left .department-card {
  display: block;
  text-align: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eee;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s ease-in-out;
  will-change: transform, padding, background;
}
@media (max-width: 480px) {
  .departments-section .departments-left .department-card {
    display: block;
  }
}
.departments-section .departments-left .department-card:hover {
  border-color: #e30000;
  box-shadow: 0 10px 25px rgba(214, 51, 108, 0.15);
  transform: translateY(-4px);
}
.departments-section .departments-left .department-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: #e30000;
  transition: height 0.35s ease;
  border-radius: 0 0 4px 0;
}
.departments-section .departments-left .department-card:hover::before {
  height: 100%;
}
.departments-section .departments-left .department-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.departments-section .departments-left .department-card .icon img {
  width: 45px;
  height: 45px;
}
.departments-section .departments-left .department-card .icon.dark {
  background: #132a3b;
  color: #fff;
}
.departments-section .departments-left .department-card .icon.light {
  border: 2px solid #e30000;
  color: #e30000;
  background: #e30000;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .departments-section .departments-left .department-card .icon {
    margin: 0 auto;
  }
}
.departments-section .departments-left .department-card:hover .icon {
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 6px 15px rgba(214, 51, 108, 0.2);
  background: #000000;
  border: 2px solid #e30000;
  color: #ffffff;
}
.departments-section .departments-left .department-card .content h4 {
  color: #e30000;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.departments-section .departments-left .department-card .content p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .departments-section .departments-left .department-card .content {
    text-align: center;
  }
}
.departments-section .departments-left .department-card:hover .content h4 {
  color: #000000;
}
.departments-section .departments-right .helpdesk {
  background: linear-gradient(145deg, #102331, #1c3f58);
  color: #fff;
  padding: 80px 30px;
  border-radius: 80px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(19, 42, 59, 0.3);
  overflow: hidden;
  /* subtle glossy overlay */
}
.departments-section .departments-right .helpdesk::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 180%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(25deg);
}
.departments-section .departments-right .helpdesk .helpdesk-icon {
  width: 80px;
  height: 80px;
  background: #ffd800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #132a3b;
  margin: 0 auto 20px;
  transition: transform 0.35s ease;
}
.departments-section .departments-right .helpdesk {
  /* Icon hover */
}
.departments-section .departments-right .helpdesk:hover .helpdesk-icon {
  transform: scale(1.15) rotate(-6deg);
}
.departments-section .departments-right .helpdesk h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.departments-section .departments-right .helpdesk p {
  font-size: 0.95rem;
  color: #d3d9de;
  margin-bottom: 25px;
  line-height: 1.6;
}
.departments-section .departments-right .helpdesk ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}
.departments-section .departments-right .helpdesk ul li {
  margin: 10px 0;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 14px;
}
.departments-section .departments-right .helpdesk ul li:hover {
  color: #ffd800;
  transform: translateX(4px);
}

.doctor-section {
  position: relative;
  padding: 80px 0 190px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .doctor-section {
    padding: 30px 0 70px;
  }
}
.doctor-section .container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.doctor-section .shape {
  position: absolute;
  background: rgba(190, 200, 210, 0.25);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}
.doctor-section .shape.shape-1 {
  width: 70px;
  height: 70px;
  top: 60px;
  left: 5%;
  animation-delay: 0.3s;
}
.doctor-section .shape.shape-2 {
  width: 130px;
  height: 130px;
  right: 15%;
  top: 120px;
  animation-delay: 1s;
  border: 20px solid rgba(203, 203, 203, 0.29);
}
.doctor-section .shape.shape-3 {
  width: 180px;
  height: 180px;
  bottom: 220px;
  right: 5%;
  animation-delay: 2s;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.doctor-section .consult-box,
.doctor-section .title-box {
  text-align: center;
  margin-bottom: 40px;
}
.doctor-section .consult-box .section-title,
.doctor-section .title-box .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .doctor-section .consult-box .section-title,
  .doctor-section .title-box .section-title {
    font-size: 1.6rem;
  }
}
.doctor-section .consult-box .section-title::after,
.doctor-section .title-box .section-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.doctor-section .consult-box .section-title::before,
.doctor-section .title-box .section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.doctor-section .consult-box h2,
.doctor-section .title-box h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #132a3b;
}
@media (max-width: 480px) {
  .doctor-section .consult-box h2,
  .doctor-section .title-box h2 {
    font-size: 1.7rem;
  }
}
.doctor-section .consult-box p,
.doctor-section .title-box p {
  max-width: 700px;
  margin: 14px auto 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}
.doctor-section .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: 1.8px solid #d8232a;
  border-radius: 50px;
  color: #d8232a;
  margin-top: 20px;
  transition: 0.35s ease;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.doctor-section .btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d8232a, #ff5b61);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s ease;
  z-index: -1;
}
.doctor-section .btn-outline:hover {
  color: #fff;
  border-color: transparent;
}
.doctor-section .btn-outline:hover::before {
  transform: scaleX(1);
}
.doctor-section {
  /* =========================
      Department Tabs
  ========================= */
}
.doctor-section .department-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 45px 0 55px;
  position: relative;
  z-index: 5;
  /* Hide mobile dropdown in desktop */
}
.doctor-section .department-tabs .mobile-department-wrap {
  display: none;
}
.doctor-section .department-tabs .dept-btn {
  border: none;
  background: #fff;
  color: #132a3b;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.35s ease;
  border: 1px solid #ececec;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), 0 2px 5px rgba(0, 0, 0, 0.03);
}
.doctor-section .department-tabs .dept-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #d8232a, #ff5b61);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(216, 35, 42, 0.22);
}
.doctor-section .department-tabs .dept-btn.active {
  background: linear-gradient(135deg, #d8232a, #ff5b61);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(216, 35, 42, 0.22);
}
@media (max-width: 768px) {
  .doctor-section .department-tabs {
    display: block;
  }
  .doctor-section .department-tabs .dept-btn {
    display: none;
  }
  .doctor-section .department-tabs .mobile-department-wrap {
    display: block;
    position: relative;
    width: 100%;
  }
  .doctor-section .department-tabs .mobile-department-wrap::before {
    content: "Departments";
    position: absolute;
    top: -8px;
    left: 18px;
    background: #fff;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    color: #d8232a;
    letter-spacing: 1px;
    z-index: 2;
  }
  .doctor-section .department-tabs .mobile-department-wrap::after {
    content: "⌄";
    position: absolute;
    right: 20px;
    top: 35%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #d8232a;
    pointer-events: none;
  }
  .doctor-section .department-tabs .mobile-department-wrap .mobile-department-select {
    width: 100%;
    height: 62px;
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 0 55px 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: #132a3b;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #d8232a, #ff6a70) border-box;
    border: 2px solid transparent;
    box-shadow: 0 12px 30px rgba(216, 35, 42, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 0.35s ease;
  }
  .doctor-section .department-tabs .mobile-department-wrap .mobile-department-select:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(216, 35, 42, 0.18), 0 5px 12px rgba(0, 0, 0, 0.06);
  }
  .doctor-section .department-tabs .mobile-department-wrap .mobile-department-select option {
    color: #132a3b;
    font-size: 14px;
  }
}
.doctor-section {
  /* =========================
      Doctor Grid
  ========================= */
}
.doctor-section .doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .doctor-section .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .doctor-section .doctor-grid {
    grid-template-columns: 1fr;
  }
}
.doctor-section {
  /* =========================
      Doctor Card
  ========================= */
}
.doctor-section .doctor-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07), 0 2px 10px rgba(0, 0, 0, 0.03);
}
.doctor-section .doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 5px 14px rgba(0, 0, 0, 0.05);
}
.doctor-section .doctor-card:hover img {
  transform: scale(1.05);
}
.doctor-section .doctor-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 18px;
  transition: 0.4s ease;
}
.doctor-section .doctor-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #132a3b;
  margin-bottom: 5px;
}
.doctor-section .doctor-card .specialty {
  color: #d8232a;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}
.doctor-section .doctor-card .card-actions {
  margin-top: 10px;
}
.doctor-section .doctor-card .card-actions .btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #132a3b;
  font-size: 13px;
  font-weight: 600;
  transition: 0.35s ease;
  cursor: pointer;
}
.doctor-section .doctor-card .card-actions .btn-sm:hover {
  background: #132a3b;
  border-color: #132a3b;
  color: #fff;
}
.doctor-section .doctor-card .card-actions .btn-sm.red {
  border-color: #d8232a;
  color: #d8232a;
}
.doctor-section .doctor-card .card-actions .btn-sm.red:hover {
  background: linear-gradient(135deg, #d8232a, #ff5b61);
  color: #fff;
  border-color: transparent;
}
.doctor-section .doctor-card.hide {
  display: none;
}
.doctor-section .doctor-card.show {
  display: block;
  animation: fadeZoom 0.45s ease;
}
@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.doctor-section .view-all-wrap {
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 480px) {
  .doctor-section .view-all-wrap {
    margin-top: 30px;
  }
}
.doctor-section .big-title {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 110px;
  font-weight: 800;
  color: #c7ccd1;
  opacity: 0.5;
  letter-spacing: 4px;
  white-space: nowrap;
  animation: fadeMove 4s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  .doctor-section .big-title {
    font-size: 58px;
  }
}
@media (max-width: 480px) {
  .doctor-section .big-title {
    font-size: 30px;
    bottom: 0;
  }
}
@keyframes fadeMove {
  0% {
    opacity: 0.25;
    transform: translate(-50%, 0px);
  }
  100% {
    opacity: 0.45;
    transform: translate(-50%, -12px);
  }
}

.appointment-horizontal {
  padding: 60px 0;
  background: #ffffff;
}
.appointment-horizontal .appointment-wrap {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}
.appointment-horizontal {
  /* ================= LEFT PANEL ================= */
}
.appointment-horizontal .appointment-left {
  flex: 1;
  background: #f3f3f3;
  padding: 35px;
  border-radius: 20px;
  color: rgb(95, 79, 79);
}
.appointment-horizontal .appointment-left h2 {
  font-size: 30px;
  margin: 0 0 15px 0;
  font-weight: 700;
}
.appointment-horizontal .appointment-left p {
  margin: 0 0 15px 0;
  line-height: 1.6;
}
.appointment-horizontal .appointment-left {
  /* FEATURES */
}
.appointment-horizontal .appointment-left .features {
  margin: 6px 0 0 0;
  padding: 0;
}
.appointment-horizontal .appointment-left .features h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.appointment-horizontal .appointment-left .feature {
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  font-size: 14px;
}
.appointment-horizontal .appointment-left .feature h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.appointment-horizontal .appointment-left .feature h4 i {
  font-size: 13px;
  color: #e30000;
}
.appointment-horizontal .appointment-left .feature:not(:has(h4))::before {
  content: "✓";
  color: #e30000;
  font-weight: bold;
  margin-right: 4px;
}
.appointment-horizontal {
  /* ================= RIGHT PANEL ================= */
}
.appointment-horizontal .appointment-right {
  flex: 1.2;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.appointment-horizontal .appointment-right form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.appointment-horizontal {
  /* ================= FORM ================= */
}
.appointment-horizontal .form-group {
  position: relative;
}
.appointment-horizontal .form-group input,
.appointment-horizontal .form-group textarea,
.appointment-horizontal .form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background: white;
  transition: 0.3s;
}
.appointment-horizontal .form-group textarea {
  height: 120px;
  resize: none;
}
.appointment-horizontal .form-group select {
  cursor: pointer;
}
.appointment-horizontal .form-group {
  /* FLOAT LABEL */
}
.appointment-horizontal .form-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 6px;
  color: #777;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}
.appointment-horizontal .form-group input:not(:-moz-placeholder) + label, .appointment-horizontal .form-group textarea:not(:-moz-placeholder) + label {
  top: 0px;
  font-size: 12px;
  color: #e30000;
}
.appointment-horizontal .form-group input:focus + label,
.appointment-horizontal .form-group textarea:focus + label,
.appointment-horizontal .form-group select:focus + label,
.appointment-horizontal .form-group input:not(:placeholder-shown) + label,
.appointment-horizontal .form-group textarea:not(:placeholder-shown) + label,
.appointment-horizontal .form-group select:valid + label {
  top: 0px;
  font-size: 12px;
  color: #e30000;
}
.appointment-horizontal .form-group input:focus,
.appointment-horizontal .form-group textarea:focus,
.appointment-horizontal .form-group select:focus {
  border-color: #e30000;
  box-shadow: 0 0 0 2px rgba(227, 0, 0, 0.08);
}
.appointment-horizontal {
  /* FULL WIDTH ELEMENTS */
}
.appointment-horizontal .form-group.full {
  grid-column: span 2;
}
.appointment-horizontal {
  /* DATE TIME ROW */
}
.appointment-horizontal .form-row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.appointment-horizontal {
  /* BUTTON */
}
.appointment-horizontal .book-btn {
  grid-column: span 2;
  padding: 16px;
  border: none;
  background: linear-gradient(135deg, rgb(189, 0, 0), #e30000);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.appointment-horizontal .book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 0, 0, 0.4);
}
.appointment-horizontal {
  /* SUCCESS MESSAGE */
}
.appointment-horizontal .success {
  grid-column: span 2;
  display: none;
  background: #e6fff1;
  color: #0d8a4d;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}
.appointment-horizontal {
  /* ================= RESPONSIVE ================= */
}
@media (max-width: 900px) {
  .appointment-horizontal .appointment-wrap {
    flex-direction: column;
  }
  .appointment-horizontal .appointment-right {
    padding: 35px;
  }
  .appointment-horizontal .appointment-right form {
    grid-template-columns: 1fr;
  }
  .appointment-horizontal .form-group.full,
  .appointment-horizontal .form-row,
  .appointment-horizontal .book-btn,
  .appointment-horizontal .success {
    grid-column: span 1;
  }
  .appointment-horizontal .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .appointment-horizontal {
    padding: 40px 0;
  }
  .appointment-horizontal .appointment-left {
    padding: 25px;
  }
  .appointment-horizontal .appointment-right {
    padding: 25px;
  }
  .appointment-horizontal .appointment-left h2 {
    font-size: 24px;
  }
}

.facilities-section {
  background: #2a3e4e;
  padding: 45px 0 0px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.facilities-section .bg-circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.facilities-section .bg-circles:before, .facilities-section .bg-circles:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: clamp(18px, 5vw, 50px) solid rgba(220, 220, 220, 0.1490196078);
  animation: pulseCircle 12s ease-in-out infinite;
  opacity: 0.35;
}
.facilities-section .bg-circles:before {
  width: clamp(250px, 55vw, 358px);
  height: clamp(250px, 55vw, 358px);
  top: -8%;
  left: -6%;
}
.facilities-section .bg-circles:after {
  width: clamp(200px, 45vw, 600px);
  height: clamp(200px, 45vw, 600px);
  bottom: -8%;
  right: -14%;
  animation-delay: 4s;
}
@keyframes pulseCircle {
  0% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.25;
  }
  50% {
    transform: scale(1) rotate(45deg);
    opacity: 0.45;
  }
  100% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.25;
  }
}
@media (max-width: 480px) {
  .facilities-section .bg-circles:before {
    width: 220px;
    height: 220px;
    top: -5%;
    left: -5%;
  }
  .facilities-section .bg-circles:after {
    width: 180px;
    height: 180px;
    bottom: -5%;
    right: -5%;
  }
}
.facilities-section .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .facilities-section .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 18px;
  }
}
.facilities-section .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  color: white !important;
}
.facilities-section .facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 28px;
}
@media (max-width: 768px) {
  .facilities-section .facility-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .facilities-section .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.facilities-section .pink1,
.facilities-section .light1 {
  top: 35px;
}
.facilities-section .f-card {
  height: 150px;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}
.facilities-section .f-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.facilities-section .f-card.light {
  background: #eef1f4;
  color: #24303c;
}
.facilities-section .f-card.pink {
  background: #7e0000;
  color: #fff;
}
.facilities-section .f-card .letter {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 24px;
  font-weight: 700;
  opacity: 0.8;
}
.facilities-section .f-card p {
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}
.facilities-section .values-card {
  background: #364e61;
  padding: 80px 20px;
  width: 270px;
  margin: auto;
  border-radius: 138px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.facilities-section .values-card .mini {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.facilities-section .values-card .title {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.facilities-section .values-card p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.85;
}
.facilities-section .wave {
  position: relative;
  width: 100%;
  height: 114px;
  background-image: url(../images/shape-dwn.webp);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top center;
  margin-top: 70px;
}
@media (max-width: 580px) {
  .facilities-section .wave {
    top: 89px !important;
  }
}
@media (max-width: 980px) {
  .facilities-section .wave {
    top: 82px;
  }
}

.health-carousel {
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
}
@media (max-width: 480px) {
  .health-carousel {
    padding: 10px 0;
  }
}
.health-carousel .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .health-carousel .container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 30px;
  }
}
.health-carousel .left-box {
  background: #2a3e4e;
  border-radius: 14px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 600px) {
  .health-carousel .left-box {
    padding: 20px 18px;
  }
}
.health-carousel .left-box h2 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 600px) {
  .health-carousel .left-box h2 {
    font-size: 2.2rem;
  }
}
.health-carousel .left-box .round-btn {
  background: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
  transition: 0.3s ease;
  margin: 0 auto;
}
.health-carousel .left-box .round-btn:hover {
  background: #e30000;
  transform: translateX(4px);
}
.health-carousel .carousel {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.health-carousel .carousel .carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  height: 100%;
}
.health-carousel .carousel .card {
  min-width: calc(33.33% - 20px);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #fff;
  height: 100%;
  cursor: pointer;
}
.health-carousel .carousel .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.health-carousel .carousel .card:hover img {
  transform: scale(1.12);
}
.health-carousel .carousel .card .hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  padding: 25px;
  pointer-events: none;
  opacity: 1;
}
.health-carousel .carousel .card .hover-content {
  width: 100%;
}
.health-carousel .carousel .card h3 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.health-carousel .carousel .card h3 .arrow {
  background: #e30000;
  color: #fff;
  padding: 5px 7px;
  border-radius: 50%;
  font-size: 14px;
}
.health-carousel .carousel .card p {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  margin-top: 7px;
}
.health-carousel .carousel .card:hover p {
  opacity: 1;
  max-height: 150px;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .health-carousel .carousel .card {
    min-width: calc(50% - 20px);
    height: 300px;
  }
}
@media (max-width: 600px) {
  .health-carousel .carousel .card {
    min-width: 100%;
    height: 260px;
  }
}

.blogs-section {
  padding: 1rem 1rem 3rem;
  background: #fff;
}
@media (max-width: 576px) {
  .blogs-section {
    padding: 2rem 1rem;
  }
}
.blogs-section .sub-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .blogs-section .sub-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.blogs-section .sub-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.blogs-section .sub-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.blogs-section .main-title {
  font-size: 34px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
  color: #132a3b;
}
@media (max-width: 480px) {
  .blogs-section .main-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.blogs-section .carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.blogs-section .carousel-wrapper .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  z-index: 10;
}
.blogs-section .carousel-wrapper .nav-btn:hover {
  background: #f93a7c;
  color: #fff;
}
@media (max-width: 480px) {
  .blogs-section .carousel-wrapper .nav-btn {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}
.blogs-section .carousel-wrapper .prev {
  left: 10px;
}
.blogs-section .carousel-wrapper .next {
  right: 25px;
}
.blogs-section .carousel {
  display: flex;
  gap: 20px;
  transition: 0.4s ease;
}
.blogs-section .blog-card {
  min-width: calc(33.33% - 20px);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.blogs-section .blog-card .img-box {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.blogs-section .blog-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.blogs-section .blog-card .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #e30000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  color: #fff;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.45s ease;
}
.blogs-section .blog-card .overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.blogs-section .blog-card .overlay p {
  font-size: 14px;
  line-height: 1.38;
}
.blogs-section .blog-card:hover img {
  transform: scale(1.08);
  filter: brightness(60%);
}
.blogs-section .blog-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .blogs-section .blog-card {
    min-width: calc(50% - 15px);
  }
  .blogs-section .blog-card .overlay {
    height: 55%;
  }
}
@media (max-width: 576px) {
  .blogs-section .blog-card {
    min-width: 100%;
  }
  .blogs-section .blog-card .overlay {
    height: 60%;
  }
  .blogs-section .carousel-wrapper .prev {
    left: 5px;
  }
  .blogs-section .carousel-wrapper .next {
    right: 5px;
  }
}

.testimonials-section {
  padding: 45px 0 140px;
  background: #243d55;
  text-align: center;
  position: relative;
}
@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0 140px;
  }
}
.testimonials-section .bg-circles_testi {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.testimonials-section .bg-circles_testi:before, .testimonials-section .bg-circles_testi:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.062745098);
  animation: pulseCircle 12s ease-in-out infinite;
}
.testimonials-section .bg-circles_testi:before {
  width: 358px;
  height: 358px;
  top: -22%;
  left: 5%;
}
.testimonials-section .bg-circles_testi:after {
  width: 550px;
  height: 550px;
  bottom: -20%;
  right: -20%;
  animation-delay: 4s;
}
@media (max-width: 1024px) {
  .testimonials-section .bg-circles_testi:before {
    width: 600px;
    height: 600px;
    top: -25%;
    left: -25%;
  }
  .testimonials-section .bg-circles_testi:after {
    width: 450px;
    height: 450px;
    bottom: -25%;
    right: -25%;
  }
}
@media (max-width: 768px) {
  .testimonials-section .bg-circles_testi:before {
    width: 450px;
    height: 450px;
    top: -28%;
    left: -30%;
  }
  .testimonials-section .bg-circles_testi:after {
    width: 350px;
    height: 350px;
    bottom: -25%;
    right: -25%;
  }
}
@media (max-width: 480px) {
  .testimonials-section .bg-circles_testi:before {
    width: 320px;
    height: 320px;
    top: -30%;
    left: -35%;
  }
  .testimonials-section .bg-circles_testi:after {
    width: 220px;
    height: 220px;
    bottom: -20%;
    right: -30%;
  }
}
@keyframes pulseCircle {
  0% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.25;
  }
  50% {
    transform: scale(1) rotate(45deg);
    opacity: 0.45;
  }
  100% {
    transform: scale(0.85) rotate(0deg);
    opacity: 0.25;
  }
}
.testimonials-section .sub-title {
  color: #fff;
  font-size: 2.3rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 480px) {
  .testimonials-section .sub-title {
    font-size: 1.5rem;
  }
}
.testimonials-section .sub-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.testimonials-section .sub-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.testimonials-section .main-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
}
.testimonials-section .testimonial-slider {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  min-height: 170px;
}
.testimonials-section .slide {
  display: none;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.45s ease;
  padding: 20px 20px 35px;
}
.testimonials-section .slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.testimonials-section .slide .quote {
  color: #fff;
  line-height: 1.7;
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .testimonials-section .slide .quote {
    font-size: 14px;
  }
}
.testimonials-section .slide .name {
  margin-top: 20px;
  font-size: 20px;
  color: #d23f42;
}
.testimonials-section .slide .profession {
  font-size: 14px;
  color: #e2e2e2;
  margin-top: 4px;
}
.testimonials-section .avatar-wrapper {
  margin-top: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.testimonials-section .avatar-list {
  display: flex;
  gap: 30px;
  transition: transform 0.35s ease;
}
.testimonials-section .avatar-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3333333333);
  transition: 0.3s ease;
  cursor: pointer;
}
.testimonials-section .avatar-box.active {
  transform: scale(1.35);
  border-color: #d23f42;
}
.testimonials-section .avatar-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .testimonials-section .main-title {
    font-size: 18px;
  }
  .testimonials-section .avatar-box {
    width: 55px;
    height: 55px;
  }
}
.testimonials-section {
  /* Bottom Wave */
}
.testimonials-section .wave_bottom {
  width: 100%;
  height: 115px;
  background-image: url(../images/texti-shape.webp);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top center;
  position: absolute;
  bottom: 0;
}
@media (max-width: 580px) {
  .testimonials-section .wave_bottom {
    height: 30px !important;
  }
}
@media (max-width: 768px) {
  .testimonials-section .wave_bottom {
    height: 110px;
  }
}
@media (max-width: 1024px) {
  .testimonials-section .wave_bottom {
    height: 58px;
  }
}

/* ================== FOOTER scss starts here================== */
.site-footer {
  background: #1f3140;
  color: #fff;
  padding: 3rem 2rem;
}
.site-footer a {
  color: #c8d5df;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .footer-top .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media (max-width: 992px) {
  .site-footer .footer-top .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-grid {
    grid-template-columns: 1 1fr;
  }
}
.site-footer .footer-top .footer-stay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.site-footer .footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}
.site-footer .footer-col ul {
  padding: 0;
  list-style: none;
}
.site-footer .footer-col ul li {
  margin: 6px 0;
}
.site-footer .footer-col ul li a {
  font-size: 14px;
  opacity: 0.8;
  transition: 0.3s;
}
.site-footer .footer-col ul li a:hover {
  opacity: 1;
}
.site-footer .stay-connected {
  margin-top: 25px;
}
.site-footer .stay-connected p {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
}
.site-footer .stay-connected .social-icons {
  margin-top: 10px;
}
.site-footer .stay-connected .social-icons i {
  font-size: 16px;
  margin-right: 12px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
.site-footer .stay-connected .social-icons i:hover {
  opacity: 1;
  color: #e12355;
}
.site-footer {
  /* Newsletter */
}
.site-footer .newsletter-box {
  margin-top: 60px;
  text-align: center;
}
.site-footer .newsletter-box h5 {
  font-size: 20px;
  margin-bottom: 15px;
}
.site-footer .newsletter-box .newsletter-input {
  display: flex;
  justify-content: center;
  max-width: 550px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .site-footer .newsletter-box .newsletter-input {
    flex-direction: column;
    gap: 10px;
  }
}
.site-footer .newsletter-box .newsletter-input input {
  padding: 14px 18px;
  width: 70%;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}
@media (max-width: 576px) {
  .site-footer .newsletter-box .newsletter-input input {
    width: 100%;
    border-radius: 6px;
  }
}
.site-footer .newsletter-box .newsletter-input button {
  background: #ea466d;
  color: #fff;
  padding: 14px 25px;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .site-footer .newsletter-box .newsletter-input button {
    width: 100%;
    border-radius: 6px;
  }
}
.site-footer .newsletter-box .newsletter-input button:hover {
  background: #ff5f85;
}
.site-footer {
  /* Footer bottom */
}
.site-footer .footer-bottom {
  margin-top: 40px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom p {
  margin-bottom: 10px;
  line-height: 1.8;
  opacity: 0.85;
}
.site-footer .footer-bottom span {
  font-size: 12px;
  opacity: 0.7;
}
.site-footer .newsletter-row {
  margin-top: 60px;
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 75px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .site-footer .newsletter-row {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}
.site-footer .newsletter-left h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
}
.site-footer .newsletter-center .newsletter-input {
  display: flex;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 576px) {
  .site-footer .newsletter-center .newsletter-input {
    flex-direction: column;
    gap: 10px;
  }
}
.site-footer .newsletter-center input {
  padding: 14px 18px;
  width: 90%;
  border: none;
  border-radius: 6px 0 0 6px;
}
@media (max-width: 576px) {
  .site-footer .newsletter-center input {
    width: 100%;
    border-radius: 6px;
  }
}
.site-footer .newsletter-center button {
  background: #e30000;
  color: #fff;
  padding: 14px 22px;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 576px) {
  .site-footer .newsletter-center button {
    width: 100%;
    border-radius: 6px;
  }
}
.site-footer .newsletter-center button:hover {
  background: #b40000;
  transition: ease-in-out 0.5s;
}
.site-footer .newsletter-right {
  text-align: right;
}
@media (max-width: 992px) {
  .site-footer .newsletter-right {
    text-align: center;
  }
}
.site-footer .newsletter-right p {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.site-footer .newsletter-right .social-icons i {
  font-size: 18px;
  margin-left: 12px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
.site-footer .newsletter-right .social-icons i:hover {
  opacity: 1;
  color: #e30000;
}
@media (max-width: 992px) {
  .site-footer .newsletter-right .social-icons i {
    margin: 0 8px;
  }
}

/* ================== FOOTER scss starts here================== */
.back-to-top {
  --btn-size: 64px;
  --inner-size: 56px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: var(--btn-size);
  height: var(--btn-size);
  border-radius: 999px;
  padding: 4px;
  border: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(252, 10, 74, 0.178);
  cursor: pointer;
  z-index: 9999;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(225, 35, 86, 0.2392156863), 0 6px 18px rgba(225, 35, 85, 0.2784313725);
}
@media (max-width: 600px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    --btn-size: 72px;
    --inner-size: 64px;
  }
}
.back-to-top .progress-ring {
  width: var(--inner-size);
  height: var(--inner-size);
  transform: rotate(-90deg);
  display: block;
  pointer-events: none;
}
.back-to-top .progress-ring .progress-ring__bg {
  stroke: rgba(255, 255, 255, 0.08);
}
.back-to-top .progress-ring .progress-ring__fg {
  stroke: #e30000;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 120ms linear;
  filter: drop-shadow(0 4px 6px rgba(11, 116, 255, 0.18));
}
.back-to-top .btt-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: calc(var(--inner-size) - 12px);
  height: calc(var(--inner-size) - 12px);
  border-radius: 999px;
  background: linear-gradient(180deg, #e30000, rgb(201.5, 0, 0));
  color: white;
  transform: translateZ(0);
  transition: transform 180ms ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}
.back-to-top .btt-icon svg {
  display: block;
}
.back-to-top:hover .btt-icon, .back-to-top:focus .btt-icon {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
  .back-to-top .progress-ring__fg {
    transition: none;
  }
  .back-to-top .btt-icon {
    transition: none;
  }
}
.back-to-top .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.about-medical-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  /* --- FLOATING SHAPES (OPTIONAL DECORATION) --- */
}
.about-medical-section::before, .about-medical-section::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(220, 30, 70, 0.07);
  filter: blur(2px);
  z-index: 0;
  animation: floatBubble 6s infinite ease-in-out;
}
.about-medical-section::before {
  top: 10%;
  left: -40px;
}
.about-medical-section::after {
  bottom: 8%;
  right: -40px;
  animation-delay: 2s;
}
@keyframes floatBubble {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-18px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
}
.about-medical-section .container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .about-medical-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.about-medical-section .image-area {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.about-medical-section .image-area img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  animation: softFloat 5s ease-in-out infinite;
  height: 450px;
}
@media (max-width: 480px) {
  .about-medical-section .image-area img {
    height: 300px;
  }
}
@keyframes softFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.about-medical-section .content-area {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.25s;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-medical-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .about-medical-section .section-title {
    font-size: 1.5rem;
  }
}
.about-medical-section .section-title::after {
  content: "";
  width: 135px;
  height: 2px;
  background: #e30000;
  margin: 10px 75px;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.about-medical-section .section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 25%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.about-medical-section .title {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}
@media (max-width: 480px) {
  .about-medical-section .title {
    font-size: 18px;
  }
}
.about-medical-section .desc {
  color: #666;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}
@media (max-width: 480px) {
  .about-medical-section .desc {
    font-size: 14px;
  }
}
.about-medical-section .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .about-medical-section .features-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}
.about-medical-section .features-grid .feature-item {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
@media (max-width: 480px) {
  .about-medical-section .features-grid .feature-item {
    font-size: 14px;
  }
}
.about-medical-section .features-grid .feature-item {
  /* Stagger items */
}
.about-medical-section .features-grid .feature-item:nth-child(1) {
  animation-delay: 0.55s;
}
.about-medical-section .features-grid .feature-item:nth-child(2) {
  animation-delay: 0.65s;
}
.about-medical-section .features-grid .feature-item:nth-child(3) {
  animation-delay: 0.75s;
}
.about-medical-section .features-grid .feature-item:nth-child(4) {
  animation-delay: 0.85s;
}
.about-medical-section .features-grid .feature-item .icon {
  color: #e30000;
  font-weight: bold;
  transition: 0.3s ease;
}
.about-medical-section .features-grid .feature-item:hover .icon {
  transform: scale(1.4) rotate(10deg);
}
.about-medical-section .contact {
  margin-bottom: 30px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
}
.about-medical-section .contact .phone {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}
@media (max-width: 480px) {
  .about-medical-section .contact .phone {
    font-size: 18px;
  }
}
.about-medical-section .contact .question-link {
  color: #de2253;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  font-weight: 600;
}
@media (max-width: 480px) {
  .about-medical-section .contact .question-link {
    font-size: 14px;
  }
}
.about-medical-section .contact .question-link:hover {
  text-decoration: underline;
}
.about-medical-section .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #e30000;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1s;
}
@media (max-width: 480px) {
  .about-medical-section .read-more-btn {
    font-size: 12px;
    padding: 8px 15px;
  }
}
.about-medical-section .read-more-btn span {
  font-size: 18px;
  font-weight: bold;
}
.about-medical-section .read-more-btn:hover {
  background: #8d0026;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-section {
  padding: 25px 25px 60px 25px;
  background: #f7f9fc;
}
.services-section .container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}
.services-section .services-section-p {
  text-align: center;
}
.services-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px !important;
  color: #172b4d;
  position: relative;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 580px) {
  .services-section .section-title {
    font-size: 1.5rem !important;
    width: 100%;
  }
}
.services-section .section-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.services-section .section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media (max-width: 991px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
}
.services-section .zoom-in-up {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: 0.8s ease;
}
.services-section .zoom-in-up.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.services-section .service-card {
  background: #ffffff;
  padding: 35px;
  border: 1px solid #e6e9ef;
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.services-section .service-card:hover {
  box-shadow: 0 5px 10px #e30000;
  transform: translateY(-5px);
  border-color: #f66161;
}
.services-section .service-card .icon {
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .services-section .service-card .icon {
    margin: 0 auto;
  }
}
.services-section .service-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services-section .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #172b4d;
}
.services-section .service-card p {
  color: #6b7a8a;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .services-section .service-card h3,
  .services-section .service-card p,
  .services-section .service-card .read-more {
    text-align: center;
  }
  .services-section .service-card h3 {
    font-size: 18px;
  }
}
.services-section .service-card .read-more {
  font-size: 15px;
  color: #de2253;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.services-section .service-card .read-more:hover {
  letter-spacing: 0.5px;
}

.highlight-section {
  width: 100%;
  padding: 50px 6%;
  background: #f8fafc;
}
.highlight-section .highlight-wrapper {
  max-width: 1450px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 45px 50px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.highlight-section .highlight-wrapper::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(222, 34, 83, 0.0705882353);
  top: -120px;
  right: -80px;
  filter: blur(10px);
}
.highlight-section .highlight-left,
.highlight-section .highlight-right {
  position: relative;
  z-index: 2;
}
.highlight-section .highlight-left {
  flex: 1;
}
.highlight-section .highlight-left .top-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgb(103, 106, 113);
  background: rgb(206, 206, 209);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.highlight-section .highlight-left h2 {
  font-size: clamp(30px, 4vw, 30px);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  max-width: 850px;
}
.highlight-section .highlight-left p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}
.highlight-section .highlight-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-section .highlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border-radius: 60px;
  background: #e30000;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
}
.highlight-section .highlight-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  transition: transform 0.3s ease;
}
.highlight-section .highlight-btn:hover {
  transform: translateY(-4px);
  background: #b91843;
}
.highlight-section .highlight-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1100px) {
  .highlight-section .highlight-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }
  .highlight-section .highlight-right {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .highlight-section {
    padding: 40px 4%;
  }
  .highlight-section .highlight-wrapper {
    padding: 35px 28px;
    gap: 30px;
    border-radius: 24px;
  }
  .highlight-section .highlight-left h2 {
    font-size: 34px;
  }
  .highlight-section .highlight-left p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .highlight-section {
    padding: 25px 4%;
  }
  .highlight-section .highlight-wrapper {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .highlight-section .highlight-left h2 {
    font-size: 28px;
  }
  .highlight-section .highlight-left p {
    font-size: 14px;
    line-height: 1.7;
  }
  .highlight-section .highlight-btn {
    width: 100%;
    justify-content: center;
  }
}
.abt-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
.abt-section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  display: block;
  margin: 10px auto 0;
  border-radius: 20px;
}

.container {
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
  }
}
.section-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}

/* ---------------------------------
   HERO SECTION –
--------------------------------- */
.dept-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("assets/images/hospital-bg.jpg") center/cover;
  padding: 140px 0;
  text-align: center;
  color: #fff;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.dept-hero .title {
  font-size: 55px;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.dept-hero .subtitle {
  font-size: 20px;
  opacity: 0.85;
  margin-top: 10px;
}

/* =============================
   DEPARTMENTS GRID 
============================== */
.dept-grid-section {
  padding: 45px 0;
  background: linear-gradient(180deg, #ffffff, #ffffff);
}
.dept-grid-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 45px;
  color: #083c60;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.dept-grid-section .dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding: 0 10px;
}
.dept-grid-section .dept-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 35px rgba(0, 50, 120, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  display: none;
}
.dept-grid-section .dept-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 50, 120, 0.15);
}
.dept-grid-section .dept-card.visible {
  display: flex !important;
}
.dept-grid-section .icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8232a, #ff2e63);
  color: #fff;
  box-shadow: 0 10px 24px #d8232a;
  position: relative;
  z-index: 2;
}
.dept-grid-section .icon-wrap img {
  width: 45px;
  height: 45px;
}
@media (max-width: 480px) {
  .dept-grid-section .icon-wrap {
    width: 55px;
    height: 55px;
  }
  .dept-grid-section .icon-wrap i {
    font-size: 20px !important;
  }
}
.dept-grid-section .icon-wrap i {
  font-size: 38px;
}
.dept-grid-section .icon-wrap:after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 3px solid #d8232a;
  top: -10%;
  left: -10%;
  transition: 0.4s ease;
}
.dept-grid-section .dept-card:hover .icon-wrap:after {
  transform: scale(1.15);
  border-color: #ff2e63;
}
.dept-grid-section {
  /* TITLE */
}
.dept-grid-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #083c60;
  margin-bottom: 12px;
}
.dept-grid-section p {
  font-size: 15.5px;
  color: #677e9b;
  line-height: 1.6;
  margin-bottom: 20px;
}
.dept-grid-section .card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8232a, #ff2e63);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(216, 35, 42, 0.18);
  cursor: pointer;
  transition: 0.22s ease;
  margin-top: auto;
  align-self: center;
}
.dept-grid-section .card-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(216, 35, 42, 0.26);
}
.dept-grid-section .card-btn:active {
  transform: translateY(-1px);
}
.dept-grid-section {
  /* =============================
       SHOW MORE / SHOW LESS
  ============================= */
}
.dept-grid-section .dept-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.dept-grid-section .dept-buttons .view-more-btn {
  padding: 12px 26px;
  background: linear-gradient(135deg, #d8232a, #ff2e63);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(216, 35, 42, 0.25);
  transition: all 0.25s ease;
}
.dept-grid-section .dept-buttons .view-more-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(216, 35, 42, 0.35);
}
.dept-grid-section .dept-buttons .view-more-btn.hide {
  display: none;
}
.dept-grid-section {
  /* MEDIA QUERIES */
}
@media (max-width: 1200px) {
  .dept-grid-section .dept-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .dept-grid-section .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .dept-grid-section .dept-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------
   WHY CHOOSE US 
--------------------------------- */
.why-choose-modern {
  padding: 60px 0;
  position: relative;
}
.why-choose-modern .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 45px;
  color: #022442;
  text-transform: uppercase;
}
.why-choose-modern .why-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}
.why-choose-modern .why-modern-box {
  padding: 35px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}
.why-choose-modern .why-modern-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 100, 255, 0.18);
}
.why-choose-modern .why-modern-box:hover .icon-wrap {
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(0, 136, 255, 0.5);
}
.why-choose-modern .why-modern-box .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d8232a, #ff2e63);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  transition: 0.35s ease;
  box-shadow: 0 6px 15px rgba(233, 30, 99, 0.3);
}
.why-choose-modern .why-modern-box .icon-wrap img {
  width: 3rem;
  height: 3rem;
}
.why-choose-modern .why-modern-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0a2f52;
  font-weight: 600;
}
@media (max-width: 480px) {
  .why-choose-modern .why-modern-box h3 {
    font-size: 16px;
  }
}
.why-choose-modern .why-modern-box p {
  font-size: 15px;
  color: #4f6379;
  line-height: 1.6;
}

/* ---------------------------------
   COUNTERS – NEON COUNT-UP STYLE
--------------------------------- */
.counter-section {
  padding: 45px 0;
  text-align: center;
}
.counter-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .counter-section .section-title {
    font-size: 1.5rem;
  }
}
.counter-section .section-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.counter-section .section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}

.counter-box {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  padding: 40px 25px;
  border-radius: 20px;
  border: rgb(206, 206, 209);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}
.counter-box::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -60%;
  left: -25%;
  background: radial-gradient(circle, rgb(206, 206, 209), transparent 60%);
  transform: rotate(45deg);
  transition: 0.4s;
}
.counter-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgb(206, 206, 209);
}
.counter-box:hover::before {
  opacity: 0.6;
  transform: rotate(0deg);
}
.counter-box p {
  margin-top: 8px;
  font-size: 17px;
  color: #333;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.counter-num {
  font-size: 52px;
  font-weight: 900;
  background: #e30000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 5px 12px rgba(255, 0, 80, 0.2);
  letter-spacing: 1px;
  animation: numberPulse 1.6s infinite alternate;
}

@keyframes numberPulse {
  from {
    transform: scale(1);
    opacity: 0.9;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}
.emg-apnt-wrap {
  padding: 45px 0;
}
.emg-apnt-wrap .emg-apnt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.emg-apnt-wrap2 {
  padding: 45px 0;
}
.emg-apnt-wrap2 .emg-apnt-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 576px) {
  .emg-apnt-wrap2 .emg-apnt-row2 {
    grid-template-columns: 1fr;
    margin: 0 15px;
  }
}

.emg-box,
.apnt-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  min-height: 220px;
  padding: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  align-items: center;
}

.emg-box2,
.apnt-box2 {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  color: #000;
  min-height: 220px;
  padding: 34px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
}

.emg-box:hover,
.apnt-box:hover {
  transform: translateY(-6px);
}

.wave-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.wave-wrap svg.wave {
  position: absolute;
  left: 0;
  width: 140%;
  height: 140px;
  bottom: -52px;
  opacity: 0.15;
  transform: translateX(0);
  transition: transform 0.6s linear;
}
.wave-wrap svg.wave.wave-2 {
  opacity: 0.08;
  bottom: -34px;
  height: 120px;
}

/* EMERGENCY card */
.emg-box {
  background: linear-gradient(135deg, #ff3b3b 0%, #ff6a6a 100%);
  z-index: 1;
}
.emg-box svg.wave path {
  fill: #ffffff;
}
.emg-box .emg-main {
  z-index: 2;
  max-width: 560px;
}
.emg-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.emg-box p {
  margin: 0 0 16px;
  font-size: 15.5px;
  opacity: 0.95;
}
.emg-box .emg-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.emg-box .emg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #ff2b2b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.18);
  z-index: 3;
  border: none;
  cursor: pointer;
}
.emg-box .emg-more {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.18s ease;
}
.emg-box .emg-more:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.emg-box2 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.emg-box2 svg.wave path {
  fill: #ffffff;
}
.emg-box2 .emg-main {
  z-index: 2;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.emg-box2 h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.emg-box2 p {
  margin: 0 0 16px;
  font-size: 15.5px;
  opacity: 0.95;
}
.emg-box2 .emg-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  margin-left: 400px;
}
.emg-box2 .emg-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #ff2b2b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.18);
  z-index: 3;
  border: none;
  cursor: pointer;
}
.emg-box2 .emg-more {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.18s ease;
}
.emg-box2 .emg-more:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* APPOINTMENT card */
.apnt-box {
  background: linear-gradient(135deg, #00bcd4 0%, #006eff 100%);
  z-index: 1;
}
.apnt-box svg.wave path {
  fill: #ffffff;
}
.apnt-box .apnt-main {
  z-index: 2;
  max-width: 560px;
}
.apnt-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.apnt-box p {
  margin: 0 0 16px;
  font-size: 15.5px;
  opacity: 0.95;
}
.apnt-box .apnt-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.apnt-box .apnt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #006eff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.18);
  z-index: 3;
  border: none;
  cursor: pointer;
}
.apnt-box .apnt-call {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(52, 58, 64, 0.6588235294);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  padding: 26px;
}

.modal[aria-hidden=false] {
  display: flex;
}

.modal.small .modal-content {
  max-width: 520px;
}

.modal .modal-content {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 22px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.25);
}

.modal .modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

#appt-form label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

#appt-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  margin-top: 6px;
  box-sizing: border-box;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.submit-btn,
.cancel-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.submit-btn {
  background: #e12355;
  color: #fff;
  font-weight: 700;
}

.cancel-btn {
  background: #f2f2f2;
  color: #444;
}

@media (max-width: 580px) {
  .emg-apnt-row {
    display: block !important;
  }
  .emg-box,
  .apnt-box {
    text-align: center;
    padding: 30px;
    min-height: 200px;
  }
  .apnt-box {
    margin-top: 25px;
  }
}
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-14%);
  }
  100% {
    transform: translateX(0);
  }
}
.wave-left {
  animation: waveMove 9s linear infinite;
  transform-origin: center;
}

.wave-left.wave-2 {
  animation-duration: 14s;
  opacity: 0.06;
  transform-origin: center;
}

.wave-right {
  animation: waveMove 10s linear infinite reverse;
  transform-origin: center;
}

.wave-right.wave-2 {
  animation-duration: 16s;
  opacity: 0.07;
  transform-origin: center;
}

.emg-box svg.wave path,
.apnt-box svg.wave path {
  mix-blend-mode: overlay;
}

/* ---------------------------------
   PRICE CARDS 
--------------------------------- */
.icon-img {
  width: 2.5rem;
  height: 2.5rem;
}

.price-section {
  padding: 45px 0;
  background: #ffffff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.price-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 45px 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 45px rgba(0, 100, 255, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(0, 100, 255, 0.15);
}
.price-card .icon-wrap {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8232a, #ff2e63);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(218, 32, 81, 0.35);
  color: #fff;
  font-size: 28px;
  transition: 0.3s ease;
}
.price-card:hover .icon-wrap {
  transform: scale(1.1) rotate(8deg);
}
.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #102a43;
}
.price-card .price {
  font-size: 38px;
  color: #e30000;
  font-weight: 800;
  margin-bottom: 18px;
}
.price-card ul li {
  list-style: none;
  margin: 10px 0;
  color: #4a4a4a;
  font-size: 15px;
}
.price-card .price-btn {
  padding: 14px 40px;
  background: linear-gradient(135deg, rgba(227, 0, 0, 0.5803921569), #e30000);
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}
.price-card .price-btn:hover {
  box-shadow: 0 10px 25px rgba(218, 32, 81, 0.35);
  transform: translateY(-3px);
}
.price-card.popular {
  border: 2px solid #e30000;
}
.price-card.popular .tag {
  position: absolute;
  top: 18px;
  right: -40px;
  background: #e30000;
  color: #fff;
  padding: 6px 60px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(218, 32, 81, 0.4);
}

/* ------------------------------
   WHY CHOOSE PACKAGES
-------------------------------- */
.why-packages-section {
  padding: 50px 0;
}
.why-packages-section .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  margin-top: 35px;
}
.why-packages-section .why-box {
  text-align: center;
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.why-packages-section .why-box i {
  font-size: 36px;
  color: #da2051;
  margin-bottom: 18px;
}
.why-packages-section .why-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #102a43;
}
@media (max-width: 480px) {
  .why-packages-section .why-box h4 {
    font-size: 18px;
  }
}
.why-packages-section .why-box p {
  font-size: 15px;
  color: #4a4a4a;
}
.why-packages-section .why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
}
.why-packages-section .why-box img {
  width: 3rem;
  height: 3rem;
}

/* ------------------------------
   COMPARE PACKAGES TABLE
-------------------------------- */
.compare-section {
  padding: 50px 0;
}
.compare-section .compare-table {
  margin-top: 35px;
  overflow-x: auto;
}
.compare-section table {
  width: 100%;
  border-collapse: collapse;
  background: rgb(206, 206, 209);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}
.compare-section table thead {
  background: linear-gradient(135deg, rgba(227, 0, 0, 0.5803921569), #e30000);
  color: #fff;
}
.compare-section table thead th {
  padding: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.compare-section table td {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  color: #333;
}
.compare-section table td i.fa-check {
  color: #28a745;
}
.compare-section table td i.fa-xmark {
  color: #d62828;
}
.compare-section table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.55);
}

/* ============================
   PATIENT STORIES 
=============================== */
.patient-stories {
  padding: 80px 35px;
  text-align: center;
  background-color: rgba(255, 201, 219, 0.2);
}
.patient-stories .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d233e;
  margin-bottom: 40px;
}
.patient-stories .story-carousel {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 10px 0;
}
.patient-stories .story-carousel .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  gap: 0;
}
.patient-stories .story-card {
  flex: 0 0 calc(50% - 20px);
  margin: 0 10px;
  padding: 25px;
  background: rgb(206, 206, 209);
  border-radius: 18px;
}
.patient-stories .story-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 16px 80px rgb(206, 206, 209);
}
.patient-stories .story-card .avatar img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}
.patient-stories .story-card h3 {
  font-size: 20px;
  color: #0d233e;
  font-weight: 700;
  margin-bottom: 4px;
}
.patient-stories .story-card .stars {
  color: #ffc200;
  font-size: 16px;
  margin-bottom: 12px;
}
.patient-stories .story-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .patient-stories .story-card {
    flex: 0 0 100%;
    margin: 0 5px;
  }
}
.patient-stories .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e30000;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}
.patient-stories .nav.prev {
  left: 15px;
}
.patient-stories .nav.next {
  right: 15px;
}
.patient-stories .carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}
.patient-stories .carousel-dots .dot {
  width: 12px;
  height: 12px;
  background: rgb(206, 206, 209);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}
.patient-stories .carousel-dots .dot.active {
  background: #e30000;
  transform: scale(1.2);
}

.dept-details-section {
  padding: 60px 0;
  background: #ffffff;
}

.department-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .department-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================
   LEFT SIDEBAR
=============================== */
.dept-sidebar {
  position: sticky;
  top: 90px;
}
@media (max-width: 580px) {
  .dept-sidebar {
    position: static;
  }
}
.dept-sidebar .sidebar-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9efff;
}
.dept-sidebar .sidebar-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #083c60;
  font-weight: 700;
}
.dept-sidebar .sidebar-card ul {
  list-style: none;
  padding: 0;
}
.dept-sidebar .sidebar-card ul li {
  padding: 10px 0;
  font-size: 16px;
  color: #555;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dept-sidebar .sidebar-card ul li i {
  color: #d8232a;
  font-size: 18px;
}
.dept-sidebar .sidebar-card a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: #d8232a;
  text-decoration: none;
  font-weight: 600;
}
.dept-sidebar .sidebar-card a:hover {
  text-decoration: underline;
}

.dept-content .content-block {
  background: #fff;
  padding: 35px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edff;
}
.dept-content .content-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #083c60;
}
.dept-content .content-block p {
  line-height: 1.8;
  color: #444;
  font-size: 17px;
}

.treatments-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}
.treatments-list .treatment-item {
  background: #eef6ff;
  padding: 18px 20px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #083c60;
  border: 1px solid #dae6ff;
}
.treatments-list .treatment-item i {
  font-size: 24px;
  color: #d8232a;
}

/* ============================
   DOCTORS SECTION 
=============================== */
.doctors-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, 240px);
  gap: 25px;
  margin-top: 25px;
  justify-content: start;
}

@media (max-width: 600px) {
  .doctors-wrapper {
    grid-template-columns: 1fr;
  }
}
.doctor-card {
  background: linear-gradient(180deg, #ffffff, #f0f4ff);
  padding: 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition: 0.3s ease;
  border: 1px solid #e5edff;
  cursor: pointer;
  display: block;
}
.doctor-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(216, 35, 42, 0.2509803922);
}
.doctor-card:hover h4 {
  color: #d8232a;
}
.doctor-card .doctor-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}
.doctor-card .doctor-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.35s ease;
}
.doctor-card .doctor-img img:hover {
  transform: scale(1.06);
}
.doctor-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #083c60;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.doctor-card p {
  font-size: 15px;
  color: #666;
}

/* ============================  
   FAQ
=============================== */
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dce6f5;
  transition: 0.3s ease;
}
.faq-item .faq-title {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: rgb(212, 214, 215);
  border: none;
  outline: none;
  font-size: 17px;
  color: #083c60;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item .faq-title .faq-icon i {
  font-size: 15px;
  color: #083c60;
  transition: transform 0.3s ease;
}
.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #dce6f5;
  padding: 0 20px;
  transition: max-height 0.35s ease;
}
.faq-item .faq-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}
.faq-item.active {
  border-color: #d8232a;
}
.faq-item.active .faq-title .faq-icon i {
  transform: rotate(180deg);
}
.faq-item.active .faq-content {
  max-height: 300px;
}

.doctor-pre-section {
  padding: 15px 55px;
}
@media (max-width: 580px) {
  .doctor-pre-section {
    padding: 45px 20px;
  }
}
.doctor-pre-section .doctor-hero {
  display: flex;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.doctor-pre-section .doctor-hero .doctor-img img {
  width: 370px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.doctor-pre-section .doctor-hero .doctor-info {
  flex: 1;
}
.doctor-pre-section .doctor-hero .doctor-info h1 {
  font-size: 34px;
  font-weight: 800;
}
.doctor-pre-section .doctor-hero .doctor-info .designation {
  color: #444;
  margin: 6px 0 15px;
}
.doctor-pre-section .doctor-hero .doctor-info .stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 15px;
}
.doctor-pre-section .doctor-hero .doctor-info .stats-row .stat h3 {
  font-size: 26px;
  color: #58151c;
  font-weight: 700;
}
.doctor-pre-section .doctor-hero .doctor-info .stats-row .stat p {
  margin-top: -5px;
  font-size: 14px;
  color: #555;
}
.doctor-pre-section .doctor-hero .doctor-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.doctor-pre-section .doctor-hero .doctor-info .tags span {
  background: rgba(221, 34, 83, 0.1019607843);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  color: #58151c;
  font-weight: 600;
}
.doctor-pre-section .doctor-hero .doctor-info .action-buttons {
  display: flex;
  gap: 12px;
}
.doctor-pre-section .btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}
.doctor-pre-section .btn.primary {
  background: linear-gradient(135deg, rgba(227, 0, 0, 0.5803921569), #e30000);
  color: #fff;
  box-shadow: 0 5px 15px rgba(216, 32, 81, 0.53);
}
.doctor-pre-section .btn.primary:hover {
  transform: translateY(-2px);
}
.doctor-pre-section .btn.outline {
  background: transparent;
  border: 2px solid #d11f4e;
  color: #58151c;
  font-weight: 600;
}
.doctor-pre-section .btn.outline:hover {
  background: rgba(221, 34, 83, 0.1019607843);
}
.doctor-pre-section .btn.w-100 {
  width: 100%;
}
.doctor-pre-section .content-area {
  display: flex;
  gap: 30px;
}
.doctor-pre-section .content-area .left-section {
  flex: 1;
}
.doctor-pre-section .content-area .right-section {
  flex: 0 0 30%;
  position: sticky;
  top: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
.doctor-pre-section .card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.doctor-pre-section .card h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.doctor-pre-section .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-left: -35px;
}
.doctor-pre-section .pill-list li {
  padding: 8px 16px;
  background: rgba(221, 34, 83, 0.1019607843);
  font-weight: 600;
  color: #58151c;
  border-radius: 20px;
}
.doctor-pre-section .timing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.doctor-pre-section .timing-grid div {
  background: rgba(221, 34, 83, 0.1019607843);
  padding: 15px;
  text-align: center;
  border-radius: 14px;
}
.doctor-pre-section .timing-grid div strong {
  color: #58151c;
}
.doctor-pre-section .faq-card .faq-item {
  padding: 18px 0;
}
.doctor-pre-section .faq-card .faq-item .faq-q {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #58151c;
  padding: 0 15px;
}
.doctor-pre-section .faq-card .faq-item .faq-q .faq-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
  color: #c62f37;
}
.doctor-pre-section .faq-card .faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  color: #444;
  line-height: 1.6;
  font-size: 15px;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  padding-right: 35px;
}
.doctor-pre-section .faq-card .faq-item.active .faq-a {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
  padding: 0 15px;
}
.doctor-pre-section .faq-card .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.doctor-pre-section .reviews-card .review-slider {
  position: relative;
  height: 90px;
}
.doctor-pre-section .reviews-card .review-slider .review {
  opacity: 0;
  position: absolute;
  transition: 0.5s ease;
  font-size: 16px;
  color: #333;
}
.doctor-pre-section .reviews-card .review-slider .review.active {
  opacity: 1;
}
.doctor-pre-section .achievement-box .ach-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.doctor-pre-section .achievement-box .ach-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-weight: 600;
  color: #58151c;
}
.doctor-pre-section .achievement-box .ach-list li i {
  color: #e30000;
  font-size: 18px;
}
.doctor-pre-section .floating-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  padding: 14px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e12355, #be1a46);
  color: #fff;
  z-index: 10;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 25px rgb(222, 34, 84);
  animation: pulse 1.7s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .doctor-pre-section .content-area {
    flex-direction: column;
  }
  .doctor-pre-section .doctor-hero {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .doctor-pre-section .stats-row {
    gap: 20px;
  }
  .doctor-pre-section .timing-grid {
    grid-template-columns: 1fr;
  }
}

.section-title-section {
  padding: 5px 0 40px;
  text-align: center;
}
.section-title-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #122b39;
  position: relative;
}
@media (max-width: 480px) {
  .section-title-section .section-title {
    font-size: 1.5rem;
  }
}
.section-title-section .section-title::after {
  content: "";
  width: 110px;
  height: 2px;
  background: #e30000;
  margin: 14px auto 0;
  display: block;
  border-radius: 50px;
  box-shadow: 0 0 10px #e30000;
}
.section-title-section .section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e30000;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px #e30000;
}
.section-title-section .section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section-title-section {
    padding: 40px 20px 25px;
  }
  .section-title-section .section-title {
    font-size: 28px;
  }
  .section-title-section .section-subtitle {
    font-size: 15px;
  }
}

.facilities-layout {
  display: flex;
  gap: 40px;
  padding: 40px 60px;
}
@media (max-width: 992px) {
  .facilities-layout {
    flex-direction: column;
  }
}
.facilities-layout .sidebar {
  position: sticky;
  top: 110px;
  height: -moz-max-content;
  height: max-content;
}
@media (max-width: 992px) {
  .facilities-layout .sidebar {
    position: static;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
}
.facilities-layout .sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 992px) {
  .facilities-layout .sidebar .sidebar-menu {
    flex-direction: row;
    gap: 15px;
  }
}
.facilities-layout .sidebar .sidebar-menu li a {
  display: block;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgb(243, 0, 0), #e30000) !important;
  border-radius: 8px;
  color: #dee2e6;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.facilities-layout .sidebar .sidebar-menu li a:hover {
  background: #0066ff;
  color: #fff;
}
.facilities-layout .sidebar .sidebar-menu li a.active {
  background: linear-gradient(135deg, rgb(243, 0, 0), #e30000) !important;
  color: #fff;
}
.facilities-layout .content {
  flex: 1;
}

.facility-section {
  padding: 45px 0;
}
.facility-section.alt {
  background: rgba(220, 53, 69, 0.0509803922);
  border-radius: 20px;
}
.facility-section .facility-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .facility-section .facility-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.facility-section .facility-img {
  width: 100%;
  max-width: 480px;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .facility-section .facility-img {
    max-width: 100%;
    height: 250px;
  }
}
.facility-section .facility-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.facility-section .facility-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0d233e;
  margin-bottom: 18px;
}
.facility-section .facility-content h2 i {
  color: #cf1d4c;
  margin-right: 12px;
}
@media (max-width: 480px) {
  .facility-section .facility-content h2 {
    font-size: 20px;
  }
}
.facility-section .facility-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 550px;
}
@media (max-width: 992px) {
  .facility-section .facility-content p {
    max-width: 100%;
  }
}

.contact-section {
  padding: 0px 30px 30px 6%;
  background: #fff;
  font-family: "Poppins", sans-serif;
}
.contact-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0d233e;
}
@media (max-width: 480px) {
  .contact-section .section-title {
    font-size: 1.5rem;
  }
}
.contact-section .contact-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .contact-section .contact-container {
    flex-direction: column;
    gap: 30px;
  }
}
.contact-section .contact-left {
  flex: 1;
}
.contact-section .contact-left .sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #777;
  font-weight: 600;
}
.contact-section .contact-left .main-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.4;
  color: #0d233e;
}
@media (max-width: 480px) {
  .contact-section .contact-left .main-title {
    font-size: 1.2rem;
  }
}
.contact-section .contact-left .desc {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}
.contact-section .contact-left .contact-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.contact-section .contact-left .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.contact-section .contact-left .contact-info li .icon {
  font-size: 20px;
  font-style: normal;
}
.contact-section {
  /* RIGHT PANEL */
}
.contact-section .contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-section .contact-right form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-section .contact-right form .input-group {
  width: calc(50% - 10px);
}
.contact-section .contact-right form .input-group.full {
  width: 100%;
}
.contact-section .contact-right form .input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-section .contact-right form .input-group label span {
  color: red;
}
.contact-section .contact-right form .input-group input,
.contact-section .contact-right form .input-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}
.contact-section .contact-right form .input-group input:focus,
.contact-section .contact-right form .input-group textarea:focus {
  border-color: #0d233e;
  outline: none;
}
.contact-section .contact-right form .input-group textarea {
  height: 120px;
  resize: vertical;
}
.contact-section .contact-right form .input-group .error {
  font-size: 12px;
  color: red;
  display: none;
}
.contact-section .contact-right form .agree-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 14px;
  color: #555;
}
.contact-section .contact-right form .agree-row input {
  zoom: 1.2;
}
.contact-section .contact-right form .submit-btn {
  background: linear-gradient(135deg, #e12355, #be1a46);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}
.contact-section .contact-right form .submit-btn:hover {
  background: linear-gradient(135deg, #e12355, #7e0627);
}

.form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.form-group select:focus + label,
.form-group select:valid + label {
  top: 2px;
  font-size: 12px;
  color: #e30000;
  background: white;
  padding: 5px;
}

.stats2 {
  background: #fff;
  padding: 60px 20px;
}
.stats2 .stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stats2 .stat-box {
  background: rgb(187, 189, 188);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
}
.stats2 .stat-box h2 {
  font-size: 52px;
  font-weight: 700;
  color: #c40000;
  margin-bottom: 5px;
}
.stats2 .stat-box p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

@media (max-width: 992px) {
  .stats2 .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .stats2 .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .stats2 .stat-box h2 {
    font-size: 38px;
  }
}
.modern-map-section {
  padding: 60px 6%;
  font-family: "Poppins", sans-serif;
}
.modern-map-section .map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 900px;
  transition: transform 0.5s ease;
  border: 4px solid rgba(13, 35, 62, 0.1254901961);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
.modern-map-section .map-wrapper:hover {
  transform: rotateX(10deg) rotateY(-10deg) scale(1.02);
}
.modern-map-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(90%) contrast(1.1) saturate(1.2);
  transform: scale(1.3);
  transform-origin: center;
  transition: transform 2s ease-out, filter 1s ease;
  animation: mapZoomOut 2s ease forwards;
}
.modern-map-section .map-wrapper .pin-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -100%);
}
.modern-map-section .map-wrapper .pulse-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: -40px;
  background: rgba(255, 60, 80, 0.4);
  animation: pulse 2.4s ease-out infinite;
  opacity: 0.6;
  filter: blur(12px);
}
.modern-map-section .map-wrapper .map-pin {
  width: 26px;
  height: 26px;
  background: #e30000;
  border-radius: 50%;
  position: relative;
  z-index: 20;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(232, 50, 50, 0.77);
  /* Pin bounce */
  animation: pinBounce 1.4s ease infinite;
}
@keyframes mapZoomOut {
  0% {
    transform: scale(1.45) translateY(20px);
    filter: brightness(80%) contrast(1.4);
  }
  100% {
    transform: scale(1) translateY(0px);
    filter: brightness(100%) contrast(1.1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.4);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes pinBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 480px) {
  .modern-map-section .map-wrapper {
    height: 340px;
  }
  .modern-map-section .map-wrapper:hover {
    transform: none; /* Disable 3D on mobile */
  }
  .modern-map-section .pulse-ring {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
  }
}

.stats-section {
  width: 100%;
  padding: 20px 0px;
  background: #ffffff;
}
.stats-section .stats-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f8f3f3;
  border-top: 1px solid #e6caca;
  border-bottom: 1px solid #e6caca;
}
.stats-section .stat-box {
  text-align: center;
  padding: 22px 15px;
  border-right: 1px solid #ead9d9;
}
.stats-section .stat-box:last-child {
  border-right: none;
}
.stats-section .stat-box h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  color: #e30000;
  line-height: 1;
}
.stats-section .stat-box p {
  margin-top: 8px;
  font-size: 22px;
  color: #555;
  font-weight: 400;
}

@media (max-width: 991px) {
  .stats-section .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-section .stat-box {
    border-bottom: 1px solid #ead9d9;
  }
  .stats-section .stat-box:nth-child(2) {
    border-right: none;
  }
  .stats-section .stat-box:nth-child(3), .stats-section .stat-box:nth-child(4) {
    border-bottom: none;
  }
  .stats-section .stat-box:nth-child(4) {
    border-right: none;
  }
  .stats-section .stat-box h2 {
    font-size: 42px;
  }
  .stats-section .stat-box p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .stats-section {
    padding: 10px;
  }
  .stats-section .stats-container {
    grid-template-columns: 1fr;
  }
  .stats-section .stat-box {
    border-right: none !important;
    border-bottom: 1px solid #ead9d9 !important;
  }
  .stats-section .stat-box:last-child {
    border-bottom: none !important;
  }
  .stats-section .stat-box h2 {
    font-size: 36px;
  }
  .stats-section .stat-box p {
    font-size: 16px;
  }
}
.story-modern {
  position: relative;
  padding: 100px 60px;
  background: #f7fafd;
  overflow: hidden;
}
.story-modern .container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.story-modern .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.story-modern .shape1 {
  width: 350px;
  height: 350px;
  background: rgba(240, 47, 90, 0.4);
  top: -100px;
  left: -100px;
}
.story-modern .shape2 {
  width: 400px;
  height: 400px;
  background: rgba(240, 47, 90, 0.4);
  bottom: -120px;
  right: -100px;
}
.story-modern .tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(186, 35, 46, 0.08);
  color: #ba232e;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.story-modern h2 {
  font-size: 58px;
  font-weight: 700;
  color: #0d1b3d;
  margin-bottom: 20px;
  line-height: 1.1;
}
.story-modern .line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ba232e, #ff6b6b);
  border-radius: 30px;
  margin-bottom: 25px;
}
.story-modern p {
  font-size: 17px;
  color: #55637d;
  line-height: 2;
  margin-bottom: 18px;
}
.story-modern .founder-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(16, 37, 66, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-2deg);
  transition: 0.4s ease;
}
.story-modern .founder-card:hover {
  transform: rotate(0deg) translateY(-8px);
}
.story-modern .founder-card .top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 25px;
}
.story-modern .founder-card .avatar {
  width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ba232e, #ff5c5c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(186, 35, 46, 0.25);
}
.story-modern .founder-card h3 {
  font-size: 24px;
  color: #102542;
  margin-bottom: 5px;
}
.story-modern .founder-card span {
  font-size: 13px;
  color: #ba232e;
  line-height: 1.6;
}
.story-modern .founder-card .quote {
  font-size: 18px;
  line-height: 2;
  font-style: italic;
  color: #39465e;
  position: relative;
  padding-left: 18px;
  border-left: 4px solid #ba232e;
}
.story-modern .founder-card .signature {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #102542;
  text-align: right;
}
.story-modern {
  /* Tablet */
}
@media (max-width: 992px) {
  .story-modern .container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .story-modern h2 {
    font-size: 42px;
  }
  .story-modern .founder-card {
    transform: none;
  }
}
@media (max-width: 576px) {
  .story-modern {
    padding: 70px 20px;
  }
  .story-modern h2 {
    font-size: 34px;
  }
  .story-modern p,
  .story-modern .quote {
    font-size: 15px;
    line-height: 1.9;
  }
  .story-modern .founder-card {
    padding: 25px;
  }
  .story-modern .avatar {
    width: 60px !important;
    height: 60px !important;
    font-size: 22px !important;
  }
  .story-modern .top {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

.story-left,
.founder-card {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.story-left.active,
.founder-card.active {
  opacity: 1;
  transform: translateY(0);
}

.who-we-are {
  position: relative;
  padding: 100px 7%;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, #eef4ff 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.who-we-are.show {
  opacity: 1;
  transform: translateY(0);
}
.who-we-are .container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.who-we-are .content-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(31, 61, 136, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.who-we-are .content-box h2 {
  font-size: 35px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 25px;
  line-height: 1.1;
}
.who-we-are .content-box p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
}
.who-we-are .content-box p:last-child {
  margin-bottom: 0;
}
.who-we-are .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.who-we-are .main-img {
  width: 100%;
  max-width: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
.who-we-are .main-img img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.who-we-are .bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.who-we-are .shape-1 {
  width: 250px;
  height: 250px;
  background: #0d6efd;
  top: -80px;
  left: -60px;
}
.who-we-are .shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(240, 47, 90, 0.4);
  bottom: -120px;
  right: -100px;
}

@media (max-width: 991px) {
  .who-we-are {
    padding: 80px 5%;
  }
  .who-we-are .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .who-we-are .content-box {
    padding: 40px;
  }
  .who-we-are .content-box h2 {
    font-size: 40px;
  }
  .who-we-are .image-box {
    order: -1;
  }
}
@media (max-width: 576px) {
  .who-we-are {
    padding: 70px 20px;
  }
  .who-we-are .content-box {
    padding: 28px;
  }
  .who-we-are .content-box h2 {
    font-size: 32px;
  }
  .who-we-are .content-box p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.our-mission {
  position: relative;
  padding: 110px 7%;
  overflow: hidden;
  background: linear-gradient(135deg, #081a36 0%, #102b56 100%);
}
.our-mission .mission-wrapper {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.our-mission .mission-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
.our-mission .mission-content h2 {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.1;
}
.our-mission .mission-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #d9e7ff;
  margin-bottom: 18px;
}
.our-mission .mission-content p:last-child {
  margin-bottom: 0;
}
.our-mission .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.our-mission .glow-1 {
  width: 260px;
  height: 260px;
  background: #2563eb;
  top: -80px;
  left: -80px;
}
.our-mission .glow-2 {
  width: 320px;
  height: 320px;
  background: #7c3aed;
  bottom: -100px;
  right: -90px;
}

/* Tablet */
@media (max-width: 991px) {
  .our-mission {
    padding: 90px 5%;
  }
  .our-mission .mission-content {
    padding: 45px;
  }
  .our-mission .mission-content h2 {
    font-size: 42px;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .our-mission {
    padding: 70px 20px;
  }
  .our-mission .mission-content {
    padding: 28px;
    border-radius: 22px;
  }
  .our-mission .mission-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .our-mission .mission-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.our-mission {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.our-mission.show {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-section {
  position: relative;
  padding: 75px 7%;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  overflow: hidden;
  text-align: center;
}
.why-choose-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 132, 255, 0.08);
  top: -220px;
  left: -120px;
  filter: blur(80px);
}
.why-choose-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.08);
  bottom: -180px;
  right: -100px;
  filter: blur(80px);
}
.why-choose-section .section-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}
.why-choose-section .section-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 60px;
  border: 1px solid rgb(103, 106, 113);
  background: rgb(206, 206, 209);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.why-choose-section .section-header h2 {
  font-size: 35px;
  width: 500px;
  margin: 0 auto;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.why-choose-section .section-header p {
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #64748b;
}

@media (max-width: 992px) {
  .why-choose-section .section-header h2 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .why-choose-section {
    padding: 90px 5%;
  }
  .why-choose-section .section-header span {
    font-size: 12px;
    padding: 10px 18px;
  }
  .why-choose-section .section-header h2 {
    font-size: 40px;
    line-height: 1.15;
  }
  .why-choose-section .section-header p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .why-choose-section .section-header h2 {
    font-size: 28px;
    width: 100%;
  }
  .why-choose-section .section-header p {
    font-size: 14px;
  }
}
/* mridula */
.process-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #1b2b38 0%, #0f1b24 100%);
  z-index: 1;
}

@media (max-width: 480px) {
  .process-section {
    padding: 35px 0;
  }
}
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/assets/images/processbg.png) center/cover no-repeat;
  opacity: 0.09;
  z-index: 1;
  pointer-events: none;
}

.process-section .container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

.process-section .process-label {
  font-size: 14px;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.process-section .process-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .process-section .process-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}
.process-section .process-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 991px) {
  .process-section .process-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 580px) {
  .process-section .process-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.process-section .process-box {
  width: 30%;
  padding: 20px 20px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  position: relative;
}

.process-section .process-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(227, 0, 0, 0.5803921569);
}

@media (max-width: 991px) {
  .process-section .process-box {
    width: 100%;
    max-width: 340px;
  }
}
.process-section .process-box .icon-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: linear-gradient(145deg, #ffffff, #ececec);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  overflow: visible;
}

@media (max-width: 480px) {
  .process-section .process-box .icon-circle {
    width: 65px;
    height: 65px;
  }
}
.process-section .process-box .icon-circle img {
  width: 55px;
}

@media (max-width: 480px) {
  .process-section .process-box .icon-circle img {
    width: 30px !important;
  }
}
@media (max-width: 767px) {
  .process-section .process-box .icon-circle img {
    width: 45px;
  }
}
.process-section .process-box .icon-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(255, 0, 70, 0.4);
  opacity: 0;
  transition: 0.3s;
}

.process-box:hover .process-section .process-box .icon-circle::after {
  opacity: 1;
}

.process-section .process-box .step-count {
  position: absolute;
  top: 90px;
  right: 45px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ff0044, #c0002f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

@media (max-width: 991px) {
  .process-section .process-box .step-count {
    top: 112px;
    right: calc(50% - 15px);
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  .process-section .process-box .step-count {
    top: 74px;
  }
}
.process-section .process-box .step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .process-section .process-box .step-title {
    font-size: 14px;
  }
}
.process-section .process-box p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.7;
  padding: 0 10px;
}

.process-section .dash-line {
  height: 3px;
  flex: 1;
  min-width: 50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0) 70%) 0 0/14px 3px repeat-x;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  animation: dashGlow 2s linear infinite;
}

@media (max-width: 991px) {
  .process-section .dash-line {
    height: 45px !important;
  }
}
@media (max-width: 991px) {
  .process-section .dash-line {
    width: 3px;
    height: 70px;
    display: block;
    margin-left: 10%;
    flex: none !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0) 70%) 0 0/3px 14px repeat-y;
    animation: dashGlowVertical 2s linear infinite;
  }
}
@keyframes dashGlow {
  0% {
    background-position: 0 0;
    opacity: 0.8;
  }
  50% {
    background-position: 20px 0;
    opacity: 1;
  }
  100% {
    background-position: 40px 0;
    opacity: 0.8;
  }
}
.insurance {
  width: 100%;
  padding: 60px 20px;
}
.insurance .insurance-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.insurance .insurance-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.insurance .insurance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media (max-width: 768px) {
  .insurance {
    padding: 50px 16px;
  }
  .insurance .insurance-container {
    gap: 20px;
  }
  .insurance .insurance-card {
    min-height: 180px;
    padding: 20px;
    font-size: 18px;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .insurance {
    padding: 40px 15px;
  }
  .insurance .insurance-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .insurance .insurance-card {
    min-height: 160px;
    padding: 18px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */