@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* ------------------- */
/* Custom properties   */
/* ------------------- */

:root {
  /* --primary-color: #226b96; */
  --primary-color: #133785;
  --primary-l-color: #2682ae;
  --red-color: #3aaa4c;
  --logo-color: #133785;
  --white-color: #fff;
  --secondary-color: #3aaa4c;
  --secondary-color-dark: #3aaa4c;
  --accent-color: #ffcc01;
  --light-bg: rgba(158, 190, 230, 0.322);
  --light-blue-color: #bbd3ed;
  --lightbg-blue-color: #e0eaf7;
  /* --lightbg-blue-color: #9ebee652; */
  --grey-color: #e9e7e2;
  --darkgrey-color: #3c3c3c;
  --light-grey-color: #8a8c8c;
  --greybg-color: #dddad3a6;
  --dark-blue: #9ec0e6;
}

/* ------------------- */
/* Reset               */
/* ------------------- */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: "Noto Sans", sans-serif;

  /* font-family: "Be Vietnam Pro", sans-serif; */
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
}

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

/* make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pt-100 {
  padding-top: 100px;
}

.ptb-100 {
  padding-block: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.bg-light-thm {
  background-color: var(--lightbg-blue-color);
}

.bg-light-gray {
  background-color: #f2f2f2;
}

.bg-drk-thm {
  background-color: var(--dark-blue);
}

.bg-primary-thm {
  background-color: var(--primary-color);
}

.bg-overlay-primary {
  position: relative;
}

.bg-overlay-primary::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #031b4e;
  opacity: 0.9;
}

.start-25-transform {
  transform: translate(0, 0) !important;
  left: -20% !important;
  margin-top: 12px;
}

.custom-badge {
  background-color: #169b0d;
  padding-inline: 1rem;
  border-radius: 25px;
  padding-block: 4px;
  padding-inline: 20px;
}

.section-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.icon-red {
  background: #fee2e2;
  color: red;
}
.icon-green {
  background: #b2ff5f24;
  color: var(--secondary-color);
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Remove autofill background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

.font-roboto {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.thm-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  outline: none !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: var(--primary-color);
  background-color: #fff;
  padding: 10px 12px 10px 16px !important;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
  border: 1px solid var(--logo-color);
}

.thm-btn.dark {
  color: white;
  background-color: var(--logo-color);
}

.thm-btn:hover {
  color: #ffffff;
}

.thm-btn.dark:hover {
  color: var(--logo-color);
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--logo-color);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before,
.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn::after {
  position: absolute;
  background-color: var(--logo-color);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn.dark::before,
.thm-btn.dark::after {
  background-color: var(--lightbg-blue-color);
}

.thm-btn span {
  position: relative;
  display: inline-block;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-left: 6px; */
  background-color: var(--logo-color);
  height: 26px;
  border-radius: 50%;
  padding: 3px;
  /* top: 2px; */
  transition: all 0.4s ease-in-out;
}

.thm-btn.dark span {
  background-color: white;
}

.thm-btn:hover span {
  background-color: white;
}

.thm-btn.dark:hover span {
  background-color: var(--logo-color);
}

.thm-btn span svg {
  height: auto;
  width: 100%;
  object-fit: contain;
  transform: rotate(-45deg);
}

.thm-btn span svg path {
  transition: all 0.4s ease-in-out;
  fill: white;
}

.thm-btn.dark span svg path {
  fill: var(--logo-color);
}

.thm-btn:hover span svg path {
  fill: var(--logo-color);
}

.thm-btn.dark:hover span svg path {
  fill: #ffffff;
}

.call-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
  padding: 10px 18px;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.2s ease;
  color: red;
  font-weight: 600;
  border: 1px solid red;
}

/* .call-btn::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--secondary-color);
  width: 0%;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
} */

.call-btn:hover {
  color: white;
  background-color: red;
}

/* .call-btn:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
} */

.call-btn svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 4px;
}

.call-btn svg path {
  fill: red;
  transition: all 0.2s ease;
}

.call-btn:hover svg path {
  fill: #fff;
}

.fab-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* The hidden menu containing the action buttons */
.fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 24px;
  pointer-events: none;
}

/* Hospital Style Action Buttons (Clean, White, Pill-shaped) */
.fab-item {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px;
  padding: 10px 28px 10px 12px;
  font-weight: 600;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow:
    0 8px 25px -5px rgba(0, 0, 0, 0.08),
    0 4px 10px -6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.fab-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.12);
}

/* Specific Button Branding */
.emergency-btn {
  color: var(--secondary-color);
  /* Alert Red */
}

.emergency-btn i {
  background: #fef2f2;
  color: var(--secondary-color);
}

.appointment-btn {
  color: var(--logo-color);
  /* Clinical Blue */
}

.appointment-btn i {
  background: #f0f9ff;
  color: var(--logo-color);
}

/* Subtle circular background for the icons inside the pills */
.fab-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: background 0.3s ease;
}

/* Main floating trigger button - Medical Cross */
.fab-trigger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 14px rgb(38 58 127 / 57%);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  color: white;
  background: var(--primary-l-color);
  cursor: pointer;
  animation: pulse-zoom 2s infinite ease-in-out;
  position: relative;
}

.fab-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse-ring 2s infinite ease-out;
}

.fab-trigger:hover {
  transform: scale(1.05);
}

.fab-trigger:hover::before {
  animation: none;
  opacity: 0;
}

@keyframes pulse-zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.fab-trigger i {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* --- ACTIVE STATE ANIMATIONS --- */

.fab-container.active .fab-menu {
  pointer-events: auto;
}

.fab-container.active .fab-item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Smooth upward cascade */
.fab-item:nth-child(1) {
  transition-delay: 0.12s;
}

.fab-item:nth-child(2) {
  transition-delay: 0.06s;
}

.fab-item:nth-child(3) {
  transition-delay: 0s;
}

/* Shift color slightly darker when active */
.fab-container.active .fab-trigger {
  background: var(--accent-color);
  box-shadow: 0 6px 14px rgb(255 204 1 / 26%);
}

/* Rotate the icon slightly for a smooth transition effect when swapping */
.fab-container.active .fab-trigger i {
  transform: rotate(90deg);
}

/* ------------------- */
/* Navbar Styling      */
/* ------------------- */

.top-strip {
  background-color: var(--primary-color);
  /* Solid, deep professional red */
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  z-index: 50;
  position: relative;
  /* padding-block: 8px; */
}

.top-strip-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-weight: 600;
}

/* .top-strip-link:hover {
  opacity: 0.8;
  color: var(--secondary-color);
} */

.top-strip-link svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 4px;
}

.navbar {
  padding: 0 0;
  background-color: #ffffff;
  /* backdrop-filter: blur(4px); */
  transition: all 0.3s ease;
  position: relative;
  z-index: 100 !important;
  /* height: 80px; */
}

/* Logo Styling */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  padding: 0;
  gap: 10px;
  margin-right: 0 !important;
  position: relative;

  width: 208px;
  height: 80px;
}

.navbar-sticky .navbar-brand {
  height: 90px;
}

.navbar-brand .logo-img {
  position: absolute;
  bottom: 0;
  z-index: 51;
  height: 115px;
  object-fit: cover;
  width: 100%;
}

.navbar-sticky .navbar-brand .logo-img {
  height: 100%;
  object-fit: contain;
}

/* .navbar-brand .logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
} */

.nav-thm-btn {
  height: 100%;
  border-radius: inherit;
  border: none;
}

/* .navbar-brand .logo-img {
  position: absolute;
  top: 0;
  z-index: 51;
  height: 110px;
  object-fit: cover;
  width: 100%;
} */

/* .navbar-sticky .navbar-brand .logo-img {
  height: 100%;
  object-fit: contain;
} */

.brand-mark-box {
  background-color: #f0f0f0;
  border-left: 4px solid #d32f2f;
  min-width: 90px;
}

.brand-title {
  font-family: "Georgia", serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #000;
  line-height: 0.8;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-family: "Arial", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: #0082ca;
  letter-spacing: 1.8px;
  line-height: 1;
}

.nav-item {
  position: relative;
}

/* Navigation Links */
.nav-link {
  font-size: 14px;
  color: #000000 !important;
  margin: 0 4px;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

/* Underline Hover Effect for Links */
/* .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
} */

/* Sticky Navbar Animation */
.navbar-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  animation: slideDown 0.5s ease-out forwards;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  background-color: white;
  list-style: none;
  min-width: 16rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(10px); */
  transition: all 0.3s ease;
  z-index: 100;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  /* border-radius: 8px; */
  overflow: hidden;
}

.submenu.border-top-menu {
  border-top: 3px solid var(--primary-color);
}

.submenu-speciality {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px; */
  overflow: hidden;
  margin: 0 auto;
  background-color: white;
  padding: 0;
  border-top: 3px solid var(--primary-color);
}

.nav-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-item:hover > .has-submenu > i {
  transform: rotate(180deg);
}

.has-submenu > i {
  font-size: 10px;
  transition: all 0.3s ease;
}

.submenu li {
  border-bottom: 1px solid #e4e4e4;
  transition: all 0.3s ease-in-out;
}

.submenu li:hover {
  background-color: var(--lightbg-blue-color);
}

.submenu li:last-child {
  border: none;
}

.submenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.2rem;
  color: black;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
}

.submenu li a:hover {
  color: var(--logo-color);
}

.submenu li a::before {
  content: "";
  display: inline-block;
  width: 0rem;
  height: 1.5px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.submenu li a:hover::before {
  width: 1rem;
}

.contact-submenu {
  left: 0% !important;
  margin-top: 12px;
  transform: translate(-5%, 0) !important;
}

.speciality-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* gap: 2rem; */
  padding: 0.5rem;
}

.category-column {
  padding: 1.5rem;
}

/* .category-column.gray {
  background-color: #f5f5f5;
} */

.category-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--darkgrey-color);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lightbg-blue-color, #f1f5f9);
}

.speciality-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.speciality-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.speciality-menu_item {
  /* padding: 10px; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: all 0.3s ease-in-out;
  color: #222;
}

.speciality-menu_item:hover {
  color: var(--secondary-color);
}

.speciality-menu_icon {
  /* background-color: var(--lightbg-blue-color); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
  font-size: 10px;
}

.speciality-menu_item:hover .speciality-menu_icon {
  transform: translateX(-4px);
}

/* .speciality-menu_icon svg {
  height: 100%;
  width: 100%;
  object-fit: contain;
} */

.speciality-menu_name {
  font-size: 15px;
  font-weight: 400;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Pulse Keyframes */
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* Mobile specific adjustments */
@media (max-width: 991.98px) {
  .emergency-btn {
    justify-content: center;
    width: 100%;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link::after {
    display: none;
    /* Hide hover line on mobile */
  }
}

/* ------------------- */
/* Hero Slider Styles  */
/* ------------------- */

.hero-slider {
  position: relative;
}

/* 3. KEYFRAMES FOR ANIMATIONS */
@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }

  /* Delay before it shines again */
}

@keyframes pulse-glow {
  from {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.2);
  }

  to {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.4),
      0 0 30px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.35);
  }
}

.splide__slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  width: 100%;
  height: 100%;
}

.slide-bg img {
  width: 100%;
  object-fit: contain;
}

.slider-query {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-inline: 120px;
}

.slider-query_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background-color: white;
  /* gap: 16px; */
  /* border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
  border-radius: 12px;
  border-bottom: 1px solid #c0c0c0;
  overflow: hidden;
}

.slider-query_item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  gap: 10px;
  border-right: 1px solid #c0c0c0;
  transition: all 0.3s ease;
  background-color: white;
}

.slider-query_item:hover {
  background-color: var(--secondary-color);
}

.slider-query_item:last-child {
  border: none;
}

.query_item_icon {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--secondary-color);
}

.slider-query_item:hover .query_item_icon {
  border-color: white;
}

.query_item_content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.query_item_name {
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.query_item_arrow {
  width: 2rem;
  height: 2rem;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--darkgrey-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.query_item_arrow svg path {
  fill: var(--darkgrey-color);
}

.slider-query_item:hover .query_item_arrow {
  transform: rotate(-45deg);
}

.slider-query_item:hover .query_item_arrow svg path {
  fill: var(--secondary-color);
}

.slider-query_item:hover .query_item_name {
  color: white;
}

/* Custom Splide Pagination Dots */
.splide__pagination__page {
  border-radius: 10px !important;
  height: 0.6rem !important;
  transition: all 0.2s linear !important;
  width: 0.6rem !important;
  margin: 5px !important;
}

.splide__pagination__page.is-active {
  transform: scale(1) !important;
  width: 2rem !important;
  height: 0.6rem !important;
  border-radius: 10px !important;
  background-color: var(--secondary-color);
}

.splide__arrow {
  height: 3rem !important;
  width: 3rem !important;
  backdrop-filter: blur(8px);
  background-color: white;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* Section Styling  */

.top-title {
  display: inline-block;
  font-weight: 500;
  margin: 0 0 10px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  line-height: 1;
  color: var(--secondary-color);
  /* color: #226b96; */
  /* background-color: #5cb3e61d; */
  /* background-color: rgba(178, 255, 95, 0.142); */
  padding: 8px 16px;
  border: 1px solid var(--secondary-color);
  border-radius: 25px;
}

/* .top-title:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color-dark);
  margin-right: 10px;
} */

.section-title {
  font-weight: 700;
  color: var(--logo-color);
  font-size: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 1rem;
}

.section-title-small {
  font-weight: 600;
  color: black;
  font-size: 30px;
  margin-bottom: 1rem;

  position: relative;
  padding-bottom: 0.5rem;

  background-image: linear-gradient(
    to right,
    var(--secondary-color),
    var(--secondary-color)
  );
  background-size: 100px 2px;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.section-para {
  font-size: 1.1rem;
  font-weight: 500;
}

/* .partner-img {
  height: 100%;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.partner-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
} */

.partner-img-wrap {
  position: relative;
  /* padding-top: 40px; */
  height: 100%;
}

.partner-img-wrap .partner-img-one {
  margin: auto 0 0 auto;
  width: 430px;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.partner-img-wrap .partner-img-two {
  width: 230px;
  height: 230px;
  object-fit: cover;
  position: absolute;
  /* top: 0; */
  bottom: 10%;
  left: -1rem;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  border-bottom: 8px solid #fff;
  background-color: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-img-wrap .partner-img-two img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.partner-img-wrap .partner-img-three {
  position: absolute;
  width: 200px;
  text-align: center;
  bottom: -20px;
  right: 30px;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  border-left: 8px solid #fff;
}

.partner-card {
  display: flex;
  flex-direction: column;
}

.mb-40 {
  margin-bottom: 40px;
}

.partner-card_icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 5px;
}

.partner-card_title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 32px;
}

/* .partner-point {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.partner-point_icon {
  width: 2.2rem;
  height: 2.2rem;
  background-color: #f4f7fa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.partner-point_icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-point p {
  color: var(--primary-color);
  font-weight: 500;
} */

.partner-card {
  background: #f4f7fa;
  border: none;
  border-radius: 16px;
  /* Slightly reduced for a smaller card */
  padding: 1rem;
  /* Compact padding */
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-4px);
  /* Slightly softer lift */
  background: var(--logo-color);
  color: var(--lightbg-blue-color);
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.2);
}

.partner-card-icon-wrapper {
  width: 44px;
  /* Reduced from 56px */
  height: 44px;
  /* Reduced from 56px */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  /* Smaller icon */
  margin-bottom: 1rem;
  /* Reduced margin */
  transition: all 0.3s ease;
  background-color: var(--lightbg-blue-color);
  color: var(--logo-color);
}

.partner-card:hover .partner-card-icon-wrapper {
  background-color: var(--lightbg-blue-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.partner-card-title {
  color: inherit;
  font-size: 1rem;
  /* Reduced from 1.125rem */
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.partner-card-text {
  color: inherit;
  font-size: 0.85rem;
  /* Reduced from 0.95rem */
  line-height: 1.5;
  margin-bottom: 0;
}

.highlight-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2rem;
}

/* Circular Icon Background */
.highlight-icon {
  width: 80px;
  height: 80px;
  background-color: #f4f5f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text Styling */
.highlight-text {
  color: black;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

.highlight-text-2 {
  text-align: center;
  background-color: #42b43a;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.highlight-text-2 p {
  font-size: 24px;
  /* max-width: 75ch; */
  font-weight: 500;
  color: white;
}

/* .counter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: -7.1rem;
  padding-inline: 2rem;
}

.counter-wrap {
  background-color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding-block: 0.8rem;
  padding-inline: 16px;
  border-top: 1px solid var(--dark-blue);
  flex: 1;
  justify-content: center;
  margin-inline: 1rem;
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.04);
}

.counter-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.counter-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-weight: 600;
  margin-right: 14px;
  color: var(--logo-color);
}

.counter-text {
  margin-bottom: 0;
  text-align: center;
  font-size: 15px;
} */

.counter-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.counter-wrap {
  background-color: white;
  border-radius: 16px;
  display: flex;
  /* flex-direction: column;
  align-items: start; */
  align-items: center;
  padding-block: 0.8rem;
  padding-inline: 24px;
  /* padding-left: 2rem; */
  border-left: 2px solid var(--secondary-color);
  flex: 1;
  /* justify-content: center; */
  gap: 1.5rem;
  /* margin-inline: 1rem; */
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.04);
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
}

.counter-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid black; */
}

.counter-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.counter-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-right: 14px;
  color: var(--darkgrey-color);
}

.counter-text {
  margin-bottom: 0;
  /* text-align: center; */
  font-size: 15px;
}

.new-partner-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #cbdffe;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: left;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  /* box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.1); */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.new-partner-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.new-partner-card-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.new-partner-card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.new-partner-card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ------------- */
/* About Section */
/* ------------- */

.about-card-wrapper {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 4rem;
}

.about-card {
  background-color: #f4f5f7;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 14px;
  flex: 1;
}

.about-card_icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--light-blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 12px;
  margin-top: -58px;
  position: relative;
  z-index: 1;
}

.about-card_icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-card_name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about-card_text {
  font-size: 15px;
  margin-bottom: 0;
}

.about-img {
  padding-left: 3rem;
  position: relative;
  height: 100%;
}

.about-img-left {
  padding-right: 3rem;
  position: relative;
  height: 100%;
}

.about-img_img-1 {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 12px 20px rgb(0 0 0 / 0.3);
}

/* .about-img_img-2 {
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 15rem;
  border: 4px solid white;
  border-radius: 12px;
}

.about-img_img-2 img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
} */

/* --------------------- */
/* Footer Main Container */
/* --------------------- */

.footer-section {
  background-color: #f2f2f2;
  /* Light grey-blue background from image */
  /* padding: 60px 0; */
  padding-top: 40px;
  /* border-top: 2px solid var(--secondary-color); */
  /* Optional subtle border */
}

/* Column 1: Info Widget */
.footer-logo-img img {
  height: 6rem;
  width: auto;
  object-fit: contain;
}

.contact-book-btn {
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
  background-color: var(--red-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: max-content;
}

.contact-book-btn-wt {
  font-weight: 500;
  padding: 4px 20px;
  border-radius: 6px;
  margin-top: 1.5rem;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: max-content;
}

.contact-book-btn-wt svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.info-widget p.description {
  font-size: 16px;
  line-height: 1.8;
  color: black;
  margin-bottom: 25px;
  padding-right: 15px;
  /* Slight padding to prevent text stretching too far */
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-info .address-text {
  /* font-weight: 500; */
  color: black;
  font-size: 16px;
  margin-bottom: 15px;
  /* display: block; */
}

.contact-info .label {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 5px;
}

.contact-info a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--secondary-color);
}

/* Columns 2 & 3: Links Widgets */
.widget-title {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: black;
  letter-spacing: -0.5px;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

/* Custom Arrow for list items */
.footer-links li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
  color: var(--primary-l-color);
  line-height: 1;
  transition: color 0.3s ease;
}

.footer-links a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover interactions for links */
.footer-links li:hover::before,
.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-links a:hover {
  transform: translateX(5px);
  /* Slide text right slightly */
}

.footer-footer {
  font-size: 15px;
  color: rgb(82, 82, 82);
}

.footer-footer a {
  transition: all 0.3s ease;
}

.footer-footer a:hover {
  color: var(--secondary-color);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease;
}

/* Specific brand colors from image */
.social-icons .fb {
  background-color: #4867aa;
}

.social-icons .tw {
  background-color: #1da1f2;
}

.social-icons .li {
  background-color: #0077b5;
}

.social-icons .ig {
  background-color: #d9317a;
}

/* Solid pink approximation */

/* Hover interactions for social icons */
.social-icons a:hover {
  transform: translateY(-4px);
  opacity: 0.9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-widget {
    margin-bottom: 40px;
  }
}

/* ------------------- */
/* Specialites Styling */
/* ------------------- */

.speciality-nav .nav-link {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  border-radius: 100px;
  font-family: 14px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.speciality-nav .nav-link:hover {
  background-color: var(--primary-color);
  color: white !important;
}

.speciality-nav .nav-link.active {
  background-color: var(--primary-color);
  color: white !important;
  border: 1px solid var(--primary-color);
}

.speciality-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  row-gap: 2rem;
}

.service-card {
  background-color: white;
  /* Light grey/blue background matching the image */
  padding: 1.2rem;
  /* text-align: center; */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: transform 0.3s ease;
  border-radius: 16px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  background-color: var(--light-blue-color);
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px;
  /* Subtle shadow to make it pop slightly, though image looks mostly flat */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); */
  /* border: 1px solid var(--logo-color); */
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  /* font-weight: 600; */
  /* transition: all 0.2s ease-in-out; */
}

.service-card:hover .service-title {
  color: var(--secondary-color);
}

.service-desc {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  /* margin-bottom: 0; */
  flex-grow: 1;
  /* Pushes content up to keep cards equal height */
}

.service-card .thm-btn {
  position: absolute;
  /* override relative for slide up */
  bottom: -50px;
  left: 50%;
  opacity: 0;
  white-space: nowrap;
  /* Combines centering with user's perspective transform */
  transform: translateX(-50%) perspective(1px) translateZ(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .thm-btn {
  bottom: -18px;
  opacity: 1;
}

#services-slider .splide__slide {
  padding-bottom: 2rem;
  padding-top: 6px;
}

/* Hide arrows to match image */
#services-slider .splide__arrow--prev {
  left: -4rem;
  top: 45%;
}

#services-slider .splide__arrow--next {
  right: -4rem;
  top: 45%;
}

/* .about-card {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 10px;
}

.about-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  background-color: var(--greybg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
  padding: 14px;
}

.about-card .icon-circle svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-card:hover .icon-circle {
  border-color: var(--primary-color);
}

.about-card .content-wrapper {
  margin-left: 25px;
}

.about-card h3 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about-card p {
  color: #000;
  font-size: 1rem;
  margin: 0;
} */

/* Doctor Icon SVG Styling */
.doctor-icon {
  width: 60px;
  height: 60px;
  fill: #000;
}

/* Responsive adjustments */
/* @media (max-width: 576px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }
  .about-card .content-wrapper {
    margin-left: 0;
    margin-top: 20px;
  }
  .about-card h3 {
    font-size: 1.5rem;
  }
  .about-card p {
    font-size: 1rem;
  }
} */

/* --------------- */
/* Doctor Section  */
/* --------------- */

.doctor-card {
  background-color: #f4f4f4;
  padding: 8px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

/* .doctor-card:hover {
  background-color: var(--lightbg-blue-color);
} */

.doctor-card_img {
  border: 1px solid var(--lightbg-blue-color);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 20rem;
  background-color: white;
}

.doctor-card_img img {
  transition: all 0.4s ease-in-out;
}

.doctor-card:hover .doctor-card_img img {
  transform: scale(1.1);
}

.doctor-card_name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  color: var(--darkgrey-color);
  margin-bottom: 8px;
  font-weight: 500;
}

.doctor-card_spec {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.profile-links {
  position: absolute;
  bottom: 0.8rem;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.appoinment-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  padding: 1rem 1rem;
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.appoinment-link:hover {
  background-color: var(--logo-color);
  color: white;
}

.doctor-card_link {
  /* right: 0.8rem; */
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background-color: var(--logo-color);
}

.doctor-card:hover .profile-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.doctor-card_link:hover {
  background-color: var(--secondary-color);
}

.doctor-card_link svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.doctor-card_link svg path {
  fill: white;
}

.doctor-card_link:hover svg {
  transform: rotate(0);
}

#doctor-slider .splide__arrow--prev {
  left: -4rem;
}

#doctor-slider .splide__arrow--next {
  right: -4rem;
}

/* -------------------- */
/* Service Page Section */
/* -------------------- */

.service-section-img {
  height: 100%;
}

.service-section-img img {
  /* clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%); */
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ------------- */
/* Blog section  */
/* ------------- */

.blog-card_single {
  position: relative;
  display: block;
  /* background-color: white; */
  /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05); */
  border-radius: 16px;
  margin-bottom: 30px;
  /* padding: 8px; */
  /* border: 1px solid #f4f4f4; */
}

.blog-card_img-box {
  position: relative;
  display: block;
  height: 190px;
}

.blog-card_img {
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  /* border-top-left-radius: 16px;
  border-top-right-radius: 16px; */
  z-index: 1;
}

.blog-card_img:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 50%;
  height: 100%;
  background-color: #5c7ea073;
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(100%);
  transform-origin: left;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-card_single:hover .blog-card_img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-card_img:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-color: #5c7ea073;
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(-100%);
  transform-origin: top;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-card_single:hover .blog-card_img:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-card_single:hover .blog-card_img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-card_single:hover .blog-card_img:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-card_plus {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) scale(0);
  transition: all 300ms ease;
  z-index: 3;
}

.blog-card_single:hover .blog-card_plus {
  transform: rotate(0deg) scale(1);
  transition-delay: 300ms;
}

.blog-card_plus a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primary-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-card_plus a:hover {
  color: #fff;
  background-color: var(--logo-color);
}

.blog-card_single:hover .blog-card_plus {
  transform: rotate(0deg) scale(1);
  transition-delay: 700ms;
}

.blog-card_content {
  position: relative;
  display: block;
  margin-top: 16px;
  /* padding-inline: 4px; */
  padding-bottom: 1rem;
}

.date {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 10;
  background-color: white;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  font-size: 12px;
  align-items: center;
  gap: 5px;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-card_title a {
  color: var(--careon-black);
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 12px;
  display: block;
}

.blog-card_title a:hover {
  color: var(--primary-color);
}

.blog-card_text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-card_read-more {
  position: relative;
  display: block;
  margin-top: 18px;
}

.blog-card_read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}

.blog-card_read-more a:hover {
  color: var(--primary-l-color);
}

.blog-card_read-more a span {
  transition: all 500ms ease;
  width: 20px;
}

.blog-card_read-more a span svg {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.blog-card_read-more a:hover span {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.project-card_single {
  position: relative;
  display: flex;
  width: 100%;
  background-color: white;
  /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05); */
  /* border-radius: 16px; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
  /* padding: 8px; */
  /* border: 1px solid var(--light-blue-color); */
  gap: 1.5rem;
}

.project-card_img-box {
  position: relative;
  display: block;
  height: 156px;
}

.project-card_img {
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.project-card_img:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 50%;
  height: 100%;
  background-color: #5c7ea073;
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(100%);
  transform-origin: left;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.project-card_single:hover .project-card_img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.project-card_img:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-color: #5c7ea073;
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(-100%);
  transform-origin: top;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.project-card_single:hover .project-card_img:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.project-card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.project-card_single:hover .project-card_img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.project-card_single:hover .project-card_img:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.project-card_plus {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) scale(0);
  transition: all 300ms ease;
  z-index: 3;
}

.project-card_single:hover .project-card_plus {
  transform: rotate(0deg) scale(1);
  transition-delay: 300ms;
}

.project-card_plus a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primary-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-card_plus a:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.project-card_single:hover .project-card_plus {
  transform: rotate(0deg) scale(1);
  transition-delay: 700ms;
}

.project-card_content {
  position: relative;
  display: block;
  margin-top: 16px;
  padding-inline: 4px;
  padding-bottom: 1rem;
}

.project-card_date {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  background-color: rgba(255, 95, 95, 0.142);
  color: var(--red-color);
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-flex;
  font-size: 12px;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.project-card_title a {
  color: var(--careon-black);
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 12px;
  display: block;
}

.project-card_title a:hover {
  color: var(--primary-color);
}

.project-card_text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.project-card_read-more {
  position: relative;
  display: block;
}

.project-card_read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}

.project-card_read-more a:hover {
  color: var(--secondary-color);
}

.project-card_read-more a span {
  transition: all 500ms ease;
  width: 20px;
}

.project-card_read-more a span svg {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-card_read-more a:hover span {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* ------------------- */
/* Testimonial Section */
/* ------------------- */

.testimonial-card {
  /* background-color: #f4f7f9; */
  background-color: var(--lightbg-blue-color);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
}

.testimonial-video {
  height: 280px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-video a {
  height: 100%;
  display: block;
  position: relative;
}

.testimonial-video a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  width: 3rem;
  height: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  /* animation: pulse-ring 2s infinite ease-out; */
}

.testimonial-video:hover .play-btn {
  background-color: var(--primary-color);
  width: 3.5rem;
  height: 3.5rem;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  animation: pulse-border 2s infinite ease-out;
  animation: pulse-ring 2s infinite ease-out;
}

.quote-bg {
  position: absolute;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  bottom: 20px;
  right: 25px;
  width: 40px;
  height: 40px;
  z-index: -1;
  pointer-events: none;
}

.quote-bg path {
  fill: var(--primary-color);
}

/* Text Content */
.testimonial-text {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 60px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0;
}

.author-role {
  color: #000;
  font-size: 0.85rem;
  margin: 0;
}

#testimonial-carousel .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  position: relative;
}

#testimonial-carousel .splide__arrow {
  position: relative;
  transform: none;
  left: auto;
  right: auto;
  background-color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

#testimonial-carousel .splide__arrow:hover {
  background-color: var(--secondary-color);
  opacity: 0.9;
}

#testimonial-carousel .splide__arrow i {
  color: #ffffff;
  font-size: 1rem;
}

#testimonial-carousel .splide__arrow svg {
  display: none;
}

#testimonial-carousel .splide__pagination {
  bottom: -48px;
}
/* -------------- */
/* Call to Action */
/* -------------- */

/* .call-to-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  padding: 3rem 2rem;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.waves {
  pointer-events: none;
  top: 0px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  animation: waves 5s ease-in-out infinite;
}

@keyframes waves {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }

  100% {
    transform: scale(1);
  }
}

.call-to-action .border-wt {
  border: 1px solid white;
} */

.border-wt {
  border: 1px solid white;
}

.cta-area {
  background: url("/frontend/images/cta-bg6.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 3rem;
  border-radius: 2rem;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; */
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 25, 47, 0.85) 0%,
    rgba(10, 25, 47, 0.7) 35%,
    rgba(10, 25, 47, 0.4) 55%,
    rgba(10, 25, 47, 0.1) 70%,
    transparent 85%
  );
  z-index: 1;
}

.cta-bg-area {
  position: relative;
  height: 100%;
}

.cta-bg-1 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}

.cta-bg-2 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  height: 100%;
  left: 7vw;
}

/* Modern Segmented Control (iOS Style Tabs) */
.infra-section-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.infra-section-nav-pills {
  background-color: var(--secondary-color);
  padding: 6px 3px;
  border-radius: 8px;
  display: inline-flex;
  gap: 4px;
}

.infra-section-nav-pills .nav-link {
  color: white !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.infra-section-nav-pills .nav-link::before,
.infra-section-nav-pills .nav-link::after {
  display: none;
}

.infra-section-nav-pills .nav-link:hover:not(.active) {
  color: #0f172a;
}

.infra-section-nav-pills .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.174);
}

.infra-section-nav-pills .nav-link.active {
  background-color: #ffffff;
  color: black !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Main Content Card */
.infra-section-main-card {
  /* background: var(--primary-color); */
  /* border-radius: 16px; */
  /* border: 1px solid #e2e8f0; */
  /* box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02); */
  /* padding: 30px; */
}

/* 2-Column Grid to save vertical space */
.infra-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Image-Style List Items */
.infra-section-list-item {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  gap: 16px;
  background: #ffffff;
  transition: border-color 0.3s ease;
}

.infra-section-list-item:hover {
  border-color: var(--logo-color);
}

.infra-section-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #efefef;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.infra-section-list-item:hover .infra-section-icon-box {
  background: var(--primary-color);
  color: white;
}

.infra-section-item-name {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Pill styled exactly like your image */
.infra-section-bed-count {
  margin-left: auto;
  background: #efefef;
  color: black;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  white-space: nowrap;
}

/* OT Specific color matching */
.infra-section-list-item.infra-section-ot-item .infra-section-icon-box,
.infra-section-list-item.infra-section-ot-item .infra-section-bed-count {
  background: #efefef;
  color: black;
}

/* Smooth Tab Animations */
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
  animation: infraFadeInUp 0.3s ease-out forwards;
}

@keyframes infraFadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .infra-section-grid {
    grid-template-columns: 1fr;
    /* Stacks to single column on mobile only */
  }

  .infra-section-main-card {
    padding: 20px;
  }
}

.speciality_service-card {
  /* background-color: white; */
  /* padding: 8px; */
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
  padding-bottom: 1.1rem;
}

.speciality_service-icon {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
  /* max-height: 8rem; */
  flex-shrink: 0;
  position: relative;
}

.speciality_service-icon img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speciality_service-card:hover .speciality_service-icon img {
  transform: scale(1.2) rotate(3deg);
}

.speciality_service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.speciality_service-card:hover .speciality_service-icon:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.speciality_service-card:hover .speciality_service-icon:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.speciality_service_plus {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg) scale(0);
  transition: all 300ms ease;
  z-index: 3;
}

.speciality_service_plus span {
  height: 60px;
  width: 60px;
  line-height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-color);
  -webkit-transition: all 500ms ease;
  transition: all 300ms ease;
}


.speciality_service_plus span:hover {
  color: #fff;
  background-color: var(--logo-color);
}

.speciality_service-card:hover .speciality_service_plus {
  transform: rotate(-45deg) scale(1);
  transition-delay: 300ms;
}

.speciality_service-content {
  background-color: white;
  width: 86%;
  padding: 16px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  text-align: center;
  margin-top: -3rem;
  border-radius: 10px;
  gap: 10px;
  min-height: 85px;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 4px solid #abdab3;
}

.speciality_service-card:hover .speciality_service-content {
  transform: translateY(-6px);
  border-bottom: 4px solid var(--secondary-color);
}

.speciality_service-title {
  font-size: 1.125rem;
  color: var(--primary-color);
  /* margin-bottom: 10px; */
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.speciality_service-card:hover .speciality_service-title {
  color: var(--secondary-color);
}

.speciality_service-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.speciality_service-btn {
  position: absolute;
  color: var(--primary-color);
  background-color: white;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 4px 8px;
  bottom: -50px;
  left: 50%;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(-50%) perspective(1px) translateZ(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speciality_service-btn span svg path {
  transition: all 0.3s ease;
  fill: var(--primary-color);
}

.speciality_service-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.speciality_service-btn:hover span svg path {
  fill: white;
}

.speciality_service-card:hover .speciality_service-btn {
  bottom: -18px;
  opacity: 1;
}

/* .speciality_service-link {
  color: var(--secondary-color);
}

.speciality_service-link span {
} */

/* .speciality_service-card .thm-btn {
  bottom: -50px;
  left: 50%;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(-50%) perspective(1px) translateZ(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speciality_service-card:hover .thm-btn {
  bottom: -26px;
  opacity: 1;
} */

.facility-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 14px;
  column-gap: 10px;
  margin-top: 1.5rem;
  width: 100%;
}

.facility-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid var(--light-grey-color); */
  padding: 16px 7px;
  border-radius: 10px;
  gap: 12px;
  min-height: 70px;
  font-weight: 500;
  background-color: #ffffff11;
  backdrop-filter: blur(30px);
  text-align: center;
  color: white;
  font-weight: 400;
  font-size: 15px;
}

.facility-list li span {
  background-color: #3aaa4c6b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

/* .facility-img1 img {
    -webkit-mask-image: url(../assets/images/shape1.svg);
    mask-image: url(../assets/images/shape1.svg);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 99%;
    mask-size: 99%;
} */

.offers-card {
  border-radius: 10px;
  overflow: hidden;
  max-height: 22rem;
}

.offers-card img {
  width: 100%;
  height: 100%;
}



/* ------------------------- */
/* Inside Page Styling Start */
/* ------------------------- */

.breadcrumb-banner {
  padding: 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.breadcrumb-banner.breadcrumb-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to right,
  #f6f9fe 0%,
  #f6f9fe 18%,
  rgba(246, 249, 254, 0.95) 22%,
  rgba(246, 249, 254, 0.6) 28%,
  rgba(246, 249, 254, 0.2) 35%,
  transparent 43%
);
  z-index: 1;
}

.breadcrumb-banner > * {
  position: relative;
  z-index: 2;
}

.breadcrumb-banner nav {
  position: relative;
}

.breadcrumb-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
}

.spec-service-card {
  background-color: white; /* Light grey/blue background matching the image */
  padding: 1.5rem;
  /* text-align: center; */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: transform 0.3s ease;
  border-radius: 16px;
  border: 1px solid #e4e4e4;
}

.spec-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
}

.spec-icon-wrapper {
  background-color: var(--lightbg-blue-color);
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px;
}

.spec-icon-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spec-service-title {
  font-size: 1.3rem;
  color: var(--darkgrey-color);
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.spec-service-card:hover .spec-service-title {
  color: var(--secondary-color);
}

.spec-service-card:hover .service-title {
  color: var(--secondary-color);
}

.spec-service-desc {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  /* margin-bottom: 0; */
  flex-grow: 1; /* Pushes content up to keep cards equal height */
}

.spec-service-card .thm-btn {
  position: absolute; /* override relative for slide up */
  bottom: -50px;
  left: 50%;
  opacity: 0;
  white-space: nowrap;
  /* Combines centering with user's perspective transform */
  transform: translateX(-50%) perspective(1px) translateZ(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spec-service-card:hover .thm-btn {
  bottom: -18px;
  opacity: 1;
}



/* Mission & Vision Cards */
.mv-card-new {
  position: relative;
  border-radius: 16px;
  padding: 30px 30px;
  height: 100%;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  overflow: hidden;
  z-index: 1;
}
.mv-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.mv-card-dark {
  background-color: var(--primary-color);
  color: #e2e8f0;
}
.mv-card-dark h3 {
  color: white;
}
.mv-card-light {
  background-color: var(--lightbg-blue-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.mv-icon-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mv-card-dark .mv-icon-box {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
}
.mv-card-light .mv-icon-box {
  background-color: var(--light-bg);
  color: var(--primary-color);
}
.mv-watermark {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 180px;
  z-index: -1;
  line-height: 1;
}
.mv-card-dark .mv-watermark {
  color: white;
  opacity: 0.03;
}
.mv-card-light .mv-watermark {
  color: var(--primary-color);
  opacity: 0.03;
}


/* value boxes styling */

.value-box {
  position: relative;
  text-align: left;
  padding: 30px 30px;
  border-radius: 16px;
  background: white;
  border: 1px solid #efefef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}
.value-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background-color: #f4f9fb;
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.4s ease;
}
.value-box:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.value-box:hover::before {
  transform: scale(1.1);
}
.value-icon-wrapper {
  width: 64px;
  height: 64px;
  /* background-color: #eaf3f8; */
  background-color: #b2ff5f24;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
  padding: 12px;
}
.value-box:hover .value-icon-wrapper {
  transform: scale(1.05);
}
.value-icon-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.value-box h4 {
  color: var(--darkgrey-color);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}
.value-box p {
  font-size: 1rem;
  line-height: 1.6;
}


/* Doctor page style  */

/* Mobile Toggle Button */
    .mobile-filter-btn {
      display: none;
      background: var(--white-color);
      color: var(--primary-color);
      border: 1px solid var(--border-light);
      padding: 8px 16px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      align-items: center;
      gap: 8px;
    }

    .sidebar {
      background: #f4f7fa;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.8);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .sidebar-header {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 700;
      color: var(--primary-color);
      padding-bottom: 12px;
      border-bottom: 1px solid #f0f4f8;
    }

    .sidebar-header i {
      color: var(--primary-color);
    }

    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .filter-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--darkgrey-color);
    }

    /* Search Box */
    .search-input-wrapper {
      position: relative;
    }

    .search-input-wrapper i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 14px;
    }

    .search-input {
      width: 100%;
      padding: 10px 14px 10px 38px;
      font-size: 13px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      background-color: white;
      color: var(--darkgrey-color);
      outline: none;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .search-input:focus {
      background-color: var(--white-color);
      border-color: var(--accent-cyan);
      box-shadow: 0 0 0 3px rgba(32, 140, 178, 0.15);
    }

    /* Department Navigation Pills */
    .dept-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .dept-btn {
      width: 100%;
      text-align: left;
      padding: 10px 16px;
      border: none;
      background: transparent;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 500;
      color: var(--darkgrey-color);
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .dept-btn:hover {
      background-color: var(--light-bg);
      color: var(--accent-cyan);
    }

    .dept-btn.active {
      border: 1px solid var(--secondary-color);
      color: var(--secondary-color);
      font-weight: 500;
    }


/* Custom Checkbox Specialties List */
.specialties-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Custom Scrollbar */
.specialties-list::-webkit-scrollbar {
  width: 6px;
}
.specialties-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 8px;
}
.specialties-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}
.specialties-list::-webkit-scrollbar-thumb:hover {
  background: var(--light-grey-color);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--darkgrey-color);
  cursor: pointer;
  user-select: none;
}

.checkbox-item input[type="checkbox"] {
  /* appearance: none; */
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked {
  background-color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

/* .checkbox-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* Reset Button */
.reset-btn {
  width: 100%;
  padding: 8px;
  background: transparent;
  border: 1px dashed var(--light-grey-color);
  border-radius: 12px;
  color: var(--light-grey-color);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-btn:hover {
  color: var(--darkgrey-color);
  border-color: var(--darkgrey-color);
  background-color: #f8fafc;
}

/* Doctor page style  */


/* Patient Visitor Page Style Start   */

.patient-visitor-icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background-color: var(--light-bg);
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* Visiting Section */
.patient-visitor-table {
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
}
.patient-visitor-table th {
  background-color: var(--logo-color);
  color: var(--white-color);
  padding: 1rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}
.patient-visitor-table td {
  padding: 1.25rem 1.5rem;
}
.patient-visitor-table tr:nth-child(even) {
  background-color: rgba(224, 234, 247, 0.2);
}

/* Rights Section */
.patient-visitor-rights-section {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: var(--white-color);
}
.patient-visitor-rights-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2rem;
}

/* Accordion */

.faq-accordion .accordion-item {
  border: 1px solid #ace69e;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button {
  background: #fff;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--darkgrey-color);
  box-shadow: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 28px 24px;
  color: black;
  line-height: 1.8;
  font-size: 15px;
}

/* Custom Plus/Minus */

.faq-accordion .accordion-button::after {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eeffe9;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  font-size: 22px;
  color: var(--secondary-color);
  transform: none;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background: var(--secondary-color);
  color: #fff;
}

@media (max-width: 991px) {
  .faq-title {
    font-size: 36px;
  }
}

.right-responsibility {
  background: #fff;
  border: 1px solid #e9edf3;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.right-responsibility .rr-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.right-responsibility .rr-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1b2b4b;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.right-responsibility .rr-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background-color: #eeffe9;
  color: var(--secondary-color);
}

.right-responsibility ul {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}

.right-responsibility ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

.right-responsibility ul li::marker {
  color: var(--secondary-color);
  font-size: 18px;
}

@media (max-width: 991px) {
  .right-responsibility {
    padding: 30px;
  }

  .right-responsibility .rr-header h3 {
    font-size: 26px;
  }

  .right-responsibility .rr-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .right-responsibility ul li {
    font-size: 16px;
  }
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
}

/* Application Form */

.application-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  /* box-shadow: ; */
  max-width: 800px;
  margin: 0 auto;
}

.application-card.primary {
  background-color: #9ec0e61f;
  border: 1px solid #9ec0e6;
}

.form-control,
.form-select {
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  background-color: #fcfcfc;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.form-label {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.upload-zone {
  border: 2px dashed #e2e8f0;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  background: var(--lightbg-blue-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--primary-color);
  background: rgba(20, 184, 166, 0.02);
}

.upload-icon {
  font-size: 40px;
  color: black;
}

/* Patient Visitor Page Style Ends   */


/* contact page  */

.info-panel {
  background-color: var(--lightbg-blue-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(34, 107, 150, 0.05);
  border: 1px solid rgba(187, 211, 237, 0.3);
}

.info-panel h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.compact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.compact-icon {
  width: 42px;
  height: 42px;
  background: var(--white-color);
  color: var(--logo-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(34, 107, 150, 0.08);
  transition: transform 0.3s ease;
}

.compact-info-item:hover .compact-icon {
  transform: scale(1.05);
  color: var(--primary-color);
}

.compact-text h5 {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.compact-text p {
  color: var(--darkgrey-color);
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.mini-map {
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 3px solid var(--white-color);
}

.mini-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Right Panel - Form */
.form-panel {
  padding: 40px 50px;
  background: var(--white-color);
  height: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(34, 107, 150, 0.05);
  border: 1px solid rgba(187, 211, 237, 0.3);
}

.form-title {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 2rem;
  color: var(--primary-color);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.form-label {
  font-weight: 500;
  color: var(--darkgrey-color);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.form-control {
  border: 1px solid var(--logo-color);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--darkgrey-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #adb5bd;
}

.form-control:focus {
  background-color: var(--white-color);
  border-color: var(--light-blue-color);
  box-shadow: 0 0 0 4px var(--light-bg);
  outline: none;
}

/* Improved Animated Success Alert */
.alert-success-custom {
  display: none;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideDown 0.4s ease-out;
}

.contact-list {
  padding-left: 1.25rem;
  list-style: disc;
}

.contact-list-h5 {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-list li {
  margin-bottom: 0.75rem;
  font-size: 14px;
}

.contact-list li::marker {
  color: var(--secondary-color); /* Bootstrap green */
}

.contact-list a {
  color: red;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* ------------------------- */
/* Inside Page Styling End   */
/* ------------------------- */