:root {
  /************************************/
  /* SPM LOGO CORE COLORS              */
  /* (Blue • Green • Orange)           */
  /************************************/

  /* ORANGE (Energy / CTA / Accent) */
  --spm-orange-500: #009846; /* Primary orange */
  --spm-orange-600: #009846; /* Hover / active */
  --spm-orange-700: #009846; /* Strong accent */

  /* BLUE (Trust / Medical / Headings) */
  --spm-blue-500: #1f6fa9;   /* Logo blue */
  --spm-blue-600: #185d8c;   /* Hover / deep */
  --spm-blue-700: #124a70;   /* Dark emphasis */

  /* GREEN (Care / Success / Support) */
  --spm-green-500: #0b9c4f; /* Logo green */
  --spm-green-600: #0b9c4f; /* Hover */
  --spm-green-700: #0b9c4f; /* Deep */

  /* NEUTRALS (from logo text) */
  --spm-gray-700: #58595b; /* Body text */
  --spm-gray-500: #7a7b7d; /* Muted text */
  --spm-white: #ffffff;

  /************************************/
  /* SEMANTIC THEME TOKENS             */
  /************************************/

  --primary-color: var(--spm-blue-500);
  --primary-hover: var(--spm-blue-600);
  --primary-active: var(--spm-blue-700);

  --accent-color: var(--spm-orange-500);
  --accent-hover: var(--spm-orange-600);
  --accent-contrast: var(--spm-white);

  --success-color: var(--spm-green-500);

  /************************************/
  /* BACKGROUNDS                       */
  /************************************/

  --bg-main: var(--spm-white);
  --bg-soft-blue: rgba(31, 111, 169, 0.06);
  --bg-soft-green: rgba(47, 191, 113, 0.08);
  --bg-soft-orange: rgba(244, 129, 32, 0.08);

  --surface-color: var(--spm-white);
  --surface-hover: rgba(244, 129, 32, 0.04);

  /************************************/
  /* TEXT COLORS                       */
  /************************************/

  --text-primary: var(--spm-gray-700);
  --text-secondary: var(--spm-gray-500);
  --text-inverse: var(--spm-white);

  --heading-color: var(--spm-blue-600);

  /************************************/
  /* BORDERS & DIVIDERS                */
  /************************************/

  --border-blue: rgba(31, 111, 169, 0.18);
  --border-green: rgba(47, 191, 113, 0.18);
  --border-orange: rgba(244, 129, 32, 0.18);

  --divider-color: var(--border-blue);

  /************************************/
  /* GRADIENTS (LOGO COLORS ONLY)      */
  /************************************/

  --brand-gradient: linear-gradient(
    135deg,
    #1f6fa9 0%,
    #2fbf71 50%,
    #f48120 100%
  );

  --cta-gradient: linear-gradient(
    135deg,
    #f48120 0%,
    #d85726 100%
  );

  /************************************/
  /* SHADOWS & EFFECTS                 */
  /************************************/

  --shadow-sm: 0 4px 14px rgba(31, 111, 169, 0.12);
  --shadow-md: 0 12px 28px rgba(31, 111, 169, 0.18);

  --focus-ring: 0 0 0 3px rgba(31, 111, 169, 0.25);

  /************************************/
  /* TYPOGRAPHY                        */
  /************************************/


  /* Typography */
  --default-font: "Work Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --heading-font: "Work Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;



  /************************************/
  /* RADIUS & MOTION                   */
  /************************************/

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
}


/************************************/
/***         02. General css       ***/
/************************************/
body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--white-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > * {
  padding-right: 0;
  padding-left: 0;
}

/* Buttons (tinted to logo) */
.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--accent-contrast);
  border: none;
  padding: 17px 54px 17px 30px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  z-index: 0;
}
.btn-default:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: var(--shadow);
}
.btn-default:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-default::before {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: 16px;
  right: 30px;
  font-size: 18px;
  color: var(--accent-contrast);
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.btn-default:hover::before {
  color: var(--accent-color);
  transform: rotate(0deg);
}
.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--brand-gradient); /* uses logo tones */
  transform: skew(30deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-default.btn-highlighted:hover:before {
  color: var(--primary-color);
}
.btn-default.btn-highlighted::after {
  background: var(--white-color);
}

/* Link CTA */
.readmore-btn {
  position: relative;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 25px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover {
  color: var(--primary-color);
}
.readmore-btn:after {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 18px;
  color: var(--accent-color);
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover:after {
  color: var(--primary-color);
  transform: translateY(-50%) rotate(0deg);
}

/* Cursor & preloader */
.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-container,
.loading {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  position: relative;
}
.loading-container {
  margin: 40px auto;
}
.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear infinite;
  transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}
#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Helpful background and chip styles using the tint */
.bg-tint {
  background: var(--secondary-color);
}
.card {
  background: var(--surface-color);
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--divider-color);
  color: var(--text-color);
}


/* HEADER */
.spm-header {
  background: var(--spm-white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-top {
  max-width: 1300px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* NAV */
.main-nav ul {
  display: flex;
  gap: 45px;
  align-items: center;
  list-style: none;
}

.main-nav a {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: var(--spm-gray-700);
}

.main-nav a.active {
  color: var(--spm-orange-500);
}

/* CTA */
.cta-btn {
  background: var(--spm-orange-500);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
}

/* MEGA MENU */
.mega-parent {
  position: relative;
}

/* Parent must be relative */
.mega-parent {
  position: relative;
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);               /* correct spacing */
  left: 144%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: calc(100vw - 40px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(31, 111, 169, 0.15);
  border-top: 3px solid var(--spm-blue-500);
  display: none;
  z-index: 1000;
}

/* SHOW ON HOVER */
.mega-parent:hover .mega-menu,
.mega-menu:hover {
  display: block;
}

/* INVISIBLE HOVER BRIDGE (CRITICAL FIX) */
.mega-parent::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;                         /* matches gap */
  background: transparent;
}

/* INNER SPACING */
.mega-inner {
  padding: 16px 0;
}

/* GRID */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* ROWS */
.mega-grid div {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(31, 111, 169, 0.15);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--spm-gray-700);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

/* HOVER EFFECT (SINGLE, CLEAN) */
.mega-grid div:hover {
  background: rgba(47, 191, 113, 0.08);
  color: var(--spm-green-600);
}

/* REMOVE BORDER FROM LAST ROW */
.mega-grid div:nth-last-child(-n+4) {
  border-bottom: none;
}



/* MOBILE */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: #333;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  /* padding: 30px; */
  transition: 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a,
.mobile-specialities-toggle {
  display: block;
  padding: 14px 0;
  font-weight: 500;
}

.mobile-specialities {
  display: none;
  padding-left: 12px;
}

.mobile-specialities.open {
  display: block;
}

.cta-mobile {
  background: var(--spm-orange-500) !important;
  color: #fff !important;
  padding: 14px !important;
  border-radius: 10px !important;
  text-align: center !important;
  margin-top: 20px !important;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .main-nav,
  .cta-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* FULL SCREEN DRAWER */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--spm-white);
  transform: translateX(-100%);
  transition: transform 0.45s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* HEADER */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  height: 42px;
}

.mobile-close {
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--spm-gray-700);
}

/* NAV */
.mobile-nav {
  padding: 20px;
  overflow-y: auto;
}

.mobile-nav a,
.mobile-specialities-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  color: var(--spm-gray-700);
  background: none;
  border: none;
  text-align: left;
}

.mobile-specialities {
  display: none;
  padding-left: 14px;
}

.mobile-specialities.open {
  display: block;
}

.mobile-specialities a {
  font-size: 15px;
  padding: 10px 0;
}

/* CTA BUTTON */
.cta-mobile {
  margin-top: 24px;
  background: var(--spm-orange-500);
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
}

/* HERO SECTION */
.spm-hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* FULL HEIGHT SLIDER */
.spmHeroSwiper,
.spmHeroSwiper .swiper-wrapper,
.spmHeroSwiper .swiper-slide {
  width: 100%;
  height: 85vh;
  min-height: 520px;
}

/* BACKGROUND IMAGE */
.slide-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* OVERLAY FOR READABILITY */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.9) 45%,
    rgba(255,255,255,0.55) 70%,
    rgba(255,255,255,0.15) 100%
  );
}

/* CONTENT */
.slide-content-wrap {
  position: relative;
  max-width: 740px;
  padding-left: 8%;
  z-index: 2;
}

/* BADGE */
.slide-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(47,191,113,0.15);
  color: white;
  margin-bottom: 20px;
}

/* HEADING */
.slide-content-wrap h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
}

/* TEXT */
.slide-content-wrap p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
  margin-bottom: 32px;
}

/* CTA BUTTON */
.btn-slide {
  display: inline-block;
  background: white;
  color: var(--spm-orange-500);
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(22, 220, 19, 0.35);
  transition: all 0.3s ease;
}

.btn-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(46, 244, 32, 0.45);
}

/* PAGINATION */
.swiper-pagination {
  bottom: 28px !important;
}

.swiper-pagination-bullet {
  background: var(--spm-blue-500);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--spm-green-500);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .spmHeroSwiper .swiper-slide {
    height: auto;
    padding: 90px 0 70px;
  }

  .slide-content-wrap {
    padding: 0 20px;
  }

  .slide-content-wrap h1 {
    font-size: 30px;
  }
  .spmHeroSwiper, .spmHeroSwiper .swiper-wrapper, .spmHeroSwiper .swiper-slide {
    width: 100%;
    height: 49vh;}
}
/* Desktop Default */
.slide-1 {
  background-image: url('../images/Web\ banner-05.jpg');
}

.slide-2 {
  background-image: url('../images/Emergency\ care-banner.jpg');
}

.slide-3 {
  background-image: url('../images/General\ medicine-banner.jpg');
}

/* Mobile Override */
@media (max-width: 768px) {
  .slide-1 {
    background-image: url('../images/banner/mobile-cardio.jpeg');
  }

  .slide-2 {
    background-image: url('../images/banner/mobile-emergency.jpeg');
  }

  .slide-3 {
    background-image: url('../images/banner/mobile-critical.jpeg');
  }
}


/* ABOUT SECTION */
.spm-about {
  padding: 100px 0;
   background: linear-gradient(
    135deg,
    rgba(31,111,169,0.08) 0%,     /* calm medical blue */
    rgba(47,191,113,0.06) 40%,    /* healing green */
    rgba(244,129,32,0.04) 100%    /* subtle warmth */
  );
}



/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* BADGE */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(47,191,113,0.15);
  color: var(--spm-green-600);
  margin-bottom: 22px;
}

/* HEADING */
.about-content h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--spm-blue-600);
  margin-bottom: 18px;
}

/* TEXT */
.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--spm-gray-700);
  margin-bottom: 18px;
}

.about-lead {
  font-weight: 500;
}

/* HIGHLIGHTS WITH ICONS */
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 26px 0 36px;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--spm-gray-700);
  margin-bottom: 14px;
}

.about-highlights i {
  color: var(--spm-green-500);
  font-size: 16px;
  margin-top: 2px;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--spm-orange-500);
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 36px rgba(244,129,32,0.35);
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(244,129,32,0.45);
}

/* IMAGE */
.about-visual img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(31,111,169,0.18);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .spm-about {
    padding: 70px 0 !important;
  }
  .spm-wellness-alt{
    padding: 70px 0  !important;
  }

  .about-content h2 {
    font-size: 24px;
  }
}
.spm-about {
  position: relative;
  padding: 100px 0;
  background: #ffffff; /* keep center clean */
  overflow: hidden;
}

/* LEFT & RIGHT GRADIENT LAYERS */
.spm-about::before,
.spm-about::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* LEFT SIDE – BLUE → GREEN */
.spm-about::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 111, 169, 0.28) 0%,   /* strong medical blue */
    rgba(47, 191, 113, 0.22) 40%,  /* healing green */
    rgba(255, 255, 255, 0.0) 100%
  );
}

/* RIGHT SIDE – ORANGE GLOW */
.spm-about::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(244, 129, 32, 0.22) 0%,   /* warm orange */
    rgba(255, 255, 255, 0.0) 75%
  );
}

/* KEEP CONTENT ABOVE GRADIENT */
.spm-about .container {
  position: relative;
  z-index: 1;
}



.spm-services-modern {
  position: relative;
  padding: 60px 0;
 background-color: #FFF6EF;
  overflow: hidden;
}
.spm-services-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 400px at 15% 30%,
      rgba(31,111,169,0.12),
      transparent 60%
    ),
    radial-gradient(
      600px 350px at 85% 70%,
      rgba(47,191,113,0.10),
      transparent 60%
    );
  pointer-events: none;
}

.spm-services-modern .container {
  position: relative;
  z-index: 1;
}
.service-content h3 a {
  color: var(--spm-blue-600);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-content h3 a:hover {
  color: var(--spm-orange-500);
}

/* HEADER */
.services-header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--spm-blue-600);
  margin-bottom: 16px;
}

.services-header p {
  font-size: 16px;
  color: var(--spm-gray-700);
  line-height: 1.7;
}

/* GRID */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.service-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6eef6;
  transition: all 0.35s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(31,111,169,0.18);
}

/* IMAGE */
.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.service-content {
  padding: 22px;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--spm-blue-600);
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--spm-gray-700);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .services-grid-4 {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 26px;
  }
}



/* SECTION BASE */
.spm-trust-section {
  padding: 60px 0;
  /* background: linear-gradient(
    135deg,
    #0f2f4f,
    #123a5e,
    #0f2f4f
  ); */
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
  color: #ffffff;
}

/* HEADER */
.trust-header {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
}

.trust-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}

.trust-header h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.trust-header p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.trust-card {
  background: #ffffff;
  color: #1b2d3b;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.25);
}

/* ICON */
.trust-card i {
  font-size: 34px;
  color: var(--spm-green-600);
  margin-bottom: 20px;
}

/* TITLE */
.trust-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--spm-blue-600);
  margin-bottom: 10px;
}

/* TEXT */
.trust-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5f6f7c;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .spm-trust-section {
    padding: 60px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-header h2 {
    font-size: 26px;
  }
}


/* SECTION */
.spm-wellness {
  padding: 60px 0;
 background-color: #FFF6EF;
}

/* HEADER */
.wellness-header h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--spm-blue-600);
  margin-bottom: 50px;
}

/* LIST */
.wellness-list {
  border-top: 1px solid #e6eef6;
}

/* ITEM */
.wellness-item {
  display: grid;
  grid-template-columns: 80px 260px 1fr 60px;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid #e6eef6;
  transition: background 0.3s ease;
}

.wellness-item:hover {
  background: rgba(31,111,169,0.03);
}

/* NUMBER */
.wellness-number {
  font-size: 34px;
  font-weight: 600;
  color: rgba(31,111,169,0.18);
}

/* TITLE */
.wellness-title h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--spm-blue-600);
}

/* DESC */
.wellness-desc p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--spm-gray-700);
  max-width: 620px;
}

/* ARROW */
.wellness-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d9e6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spm-blue-600);
  transition: all 0.3s ease;
}

.wellness-arrow:hover {
  background: var(--spm-blue-600);
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wellness-item {
    grid-template-columns: 60px 1fr 40px;
    gap: 20px;
  }

  .wellness-desc {
    grid-column: 2 / -1;
  }

  .wellness-title {
    grid-column: 2 / -1;
  }
}

@media (max-width: 576px) {
  .wellness-arrow{
    display: none !important;
  }
  .spm-wellness {
    padding: 60px 0;
  }

  .wellness-header h2 {
    font-size: 28px;
  }

  .wellness-item {
    padding: 28px 0;
  }

  .wellness-number {
    font-size: 26px;
  }
}

/* SECTION BASE */
.spm-why-choose {
  position: relative;
  padding: 60px 0;
  background-color: #FFF6EF;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* BADGE */
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(47,191,113,0.18);
  color: var(--spm-green-600);
  margin-bottom: 22px;
}

/* CONTENT */
.why-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--spm-blue-600);
  margin-bottom: 18px;
}

.why-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--spm-gray-700);
  margin-bottom: 16px;
}

.why-lead {
  font-weight: 500;
}

/* FEATURES GRID */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* CARD */
.why-card {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 22px 50px rgba(31,111,169,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px rgba(31,111,169,0.22);
}

/* ICON */
.why-card i {
  font-size: 30px;
  color: var(--spm-green-600);
  margin-bottom: 16px;
}

/* TEXT */
.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--spm-blue-600);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--spm-gray-700);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .spm-why-choose {
    padding: 60px 0;
  }

  .why-content h2 {
    font-size: 28px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.spm-team {
  padding: 60px 0;
 /* background: linear-gradient(135deg, #0f2f4f, #123a5e, #0f2f4f); */
 background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
    color: #ffffff;
}


/* HEADER */
.team-header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(47,191,113,0.18);
  color:white;
  margin-bottom: 24px;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color:white;
  margin-bottom: 18px;
}

.team-header p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 22px 50px rgba(31,111,169,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(31,111,169,0.22);
}

/* PHOTO */
.team-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(
    135deg,
    var(--spm-blue-500),
    var(--spm-green-500),
    var(--spm-orange-500)
  );
}

.team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

/* TEXT */
.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--spm-blue-600);
  margin-bottom: 6px;
}

.team-card span {
  display: block;
  font-size: 14px;
  color: var(--spm-gray-700);
  margin-bottom: 18px;
}

/* BUTTON */
.team-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--spm-orange-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.team-btn:hover {
  color: var(--spm-blue-600);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .spm-team {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-header h2 {
    font-size: 26px;
  }
}


/* SECTION */
.spm-blog-grid {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(31,111,169,0.04),
    rgba(47,191,113,0.04),
    rgba(244,129,32,0.03)
  );
}

/* HEADER */
.blog-header.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(47,191,113,0.18);
  color: var(--spm-green-600);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.blog-header h2 {
  font-size: 40px;
  color: var(--spm-blue-600);
  margin-bottom: 14px;
}

.blog-header p {
  font-size: 16px;
  color: var(--spm-gray-700);
  line-height: 1.7;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31,111,169,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(31,111,169,0.22);
}

/* IMAGE */
.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 26px;
}

.blog-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--spm-orange-500);
}

.blog-tag.green { color: var(--spm-green-600); }
.blog-tag.orange { color: var(--spm-orange-500); }

.blog-content h3 {
  font-size: 18px;
  margin: 10px 0 12px;
}

.blog-content h3 a {
  color: var(--spm-blue-600);
  text-decoration: none;
}

.blog-content p {
  font-size: 15px;
  color: var(--spm-gray-700);
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--spm-orange-500);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .spm-blog-grid{
    padding: 60px 0px;
  }

  .blog-header h2 {
    font-size: 26px;
  }
}

.spm-appointment {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
  font-family: "Work Sans", sans-serif;
}

/* Header */
.spm-appointment-header {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.spm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(47,191,113,0.2);
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.spm-appointment-header h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 12px;
}

.spm-appointment-header p {
  font-size: 16px;
  color: white;
  line-height: 1.7;
}

/* Layout */
.spm-appointment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  


}

/* Image */
.spm-appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(31,111,169,0.25);
}


/* Form Card */
.spm-appointment-form {
  background: #fff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.spm-appointment-form h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--spm-blue-600);
}

.spm-appointment-form h3 span {
  color: var(--spm-orange-500);
}

.form-subtext {
  font-size: 15px;
  color: var(--spm-gray-700);
  margin-bottom: 24px;
}

/* Inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.spm-appointment-form input,
.spm-appointment-form textarea,
.spm-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  font-size: 15px;
  margin-top: 14px;
}

textarea {
  resize: none;
}

/* Scrollable Select */
.spm-select {
  max-height: 52px;
  overflow-y: auto;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f48120'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
}

/* Focus */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--spm-orange-500);
  box-shadow: 0 0 0 3px rgba(244,129,32,0.18);
}

/* Button */
.spm-btn {
  margin-top: 26px;
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  background: var(--spm-orange-500);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.spm-btn:hover {
  background: var(--spm-orange-600);
}

/* Help */
.help-text {
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
  color: var(--spm-gray-700);
}

/* Responsive */
@media (max-width: 900px) {
  .spm-appointment-grid {
    grid-template-columns: 1fr;
  }

  .spm-appointment-header h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* WRAPPER */
.spm-select-wrapper {
  position: relative;
  width: 100%;
  margin-top: 16px;
  font-family: var(--default-font);
}

/* TRIGGER */
.spm-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.spm-select-trigger i {
  color: var(--spm-orange-500);
  transition: transform 0.3s ease;
}

.spm-select-wrapper.active .spm-select-trigger {
  border-color: var(--spm-orange-500);
  box-shadow: 0 0 0 3px rgba(244,129,32,0.18);
}

.spm-select-wrapper.active i {
  transform: rotate(180deg);
}

/* DROPDOWN */
.spm-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(31,111,169,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
}

/* ACTIVE */
.spm-select-wrapper.active .spm-select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* LIST */
.spm-select-dropdown ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  max-height: 220px; /* ≈ 5 items */
  overflow-y: auto;
}

/* ITEMS */
.spm-select-dropdown li {
  padding: 12px 18px;
  font-size: 15px;
  color: var(--spm-gray-700);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.spm-select-dropdown li:hover {
  background: rgba(47,191,113,0.08);
  color: var(--spm-blue-600);
}

/* SCROLLBAR */
.spm-select-dropdown ul::-webkit-scrollbar {
  width: 6px;
}

.spm-select-dropdown ul::-webkit-scrollbar-thumb {
  background: var(--spm-orange-500);
  border-radius: 6px;
}

.spm-select-dropdown ul::-webkit-scrollbar-track {
  background: #f3f3f3;
}



/* FOOTER SECTION */
.spm-footer-premium {
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
  color: #fff;
  padding: 100px 0 30px;
}

/* MAIN GRID */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* BRAND */
.footer-brand img {
  max-width: 190px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.footer-col h4{
  color: white;
}
.footer-contact h4{
  color: white;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--spm-orange-500);
  transform: translateY(-3px);
}

/* COLUMNS */
.footer-col h4,
.footer-contact h4 {
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after,
.footer-contact h4::after {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--spm-green-600);
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--spm-orange-500);
}

/* CONTACT */
.footer-contact p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.9);
}

.footer-contact i {
  color: var(--spm-orange-500);
  margin-right: 10px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .spm-footer-premium {
    padding: 80px 0 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand img {
    max-width: 160px;
  }
}


/* SECTION */
.spm-appointment {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
  font-family: "Work Sans", sans-serif;
}

/* HEADER */
.spm-appointment-header {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.spm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(47,191,113,0.25);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.spm-appointment-header h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 12px;
}

.spm-appointment-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* GRID LAYOUT */
.spm-appointment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: stretch; /* KEY FIX */
}

/* IMAGE WRAPPER */
.spm-appointment-image {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(31,111,169,0.25);
}

/* IMAGE */
.spm-appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* PERFECT FIT */
  display: block;
}

/* FORM CARD */
.spm-appointment-form {
  background: #fff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  height: 100%; /* MATCH IMAGE HEIGHT */
}

.spm-appointment-form h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--spm-blue-600);
}

.spm-appointment-form h3 span {
  color: var(--spm-orange-500);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spm-appointment-grid {
    grid-template-columns: 1fr;
  }

  .spm-appointment-image {
    height: 300px;
  }

  .spm-appointment-header h2 {
    font-size: 30px;
  }
  .spm-appointment-form h3 {
    font-size: 23px;
    margin-bottom: 8px;
    color: var(--spm-blue-600);}
    .spm-appointment-form{
      padding: 30px !important;
    }
}

/* SECTION */
.spm-wellness-alt {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(31,111,169,0.05),
    rgba(47,191,113,0.06),
    rgba(244,129,32,0.04)
  );
}

/* HEADER */
.wellness-alt-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.wellness-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(47,191,113,0.18);
  color: var(--spm-green-600);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.wellness-alt-header h2 {
  font-size: 42px;
  color: var(--spm-blue-600);
  margin-bottom: 14px;
}

.wellness-alt-header p {
  font-size: 16px;
  color: var(--spm-gray-700);
  line-height: 1.7;
}

/* TIMELINE */
.wellness-timeline {
  display: grid;
  gap: 30px;
}

/* CARD */
.wellness-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 32px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(31,111,169,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wellness-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(31,111,169,0.22);
}

/* NUMBER */
.wellness-index {
  font-size: 40px;
  font-weight: 700;
  color: rgba(31,111,169,0.25);
  line-height: 1;
}

/* CONTENT */
.wellness-card-content h3 {
  font-size: 22px;
  color: var(--spm-blue-600);
  margin-bottom: 10px;
}

.wellness-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--spm-gray-700);
  margin-bottom: 14px;
}

/* LINK */
.wellness-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--spm-orange-500);
  transition: gap 0.3s ease;
}

.wellness-link:hover {
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wellness-alt-header h2 {
    font-size: 30px;
  }

  .wellness-card {
    grid-template-columns: 1fr;
  }

  .wellness-index {
    font-size: 32px;
  }
}

.wellness-alt-header {
  
  margin: 0 auto 70px;   /* centers horizontally */
  text-align: center;   /* centers text */
}


/* SECTION */
.spm-about-premium {
  padding: 120px 0;
  background: linear-gradient(
    120deg,
    rgba(31,111,169,0.05),
    rgba(47,191,113,0.04),
    rgba(244,129,32,0.03)
  );
}

/* GRID */
.about-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-premium-visual {
  position: relative;
}

.image-wrap {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(31,111,169,0.25);
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING STATS */
.about-stats {
  position: absolute;
  bottom: -30px;
  left: 30px;
  display: flex;
  gap: 16px;
}

.stat {
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  text-align: center;
}

.stat strong {
  font-size: 24px;
  color: var(--spm-blue-600);
}

.stat span {
  display: block;
  font-size: 13px;
  color: var(--spm-gray-700);
}

/* CONTENT */
.about-premium-content h2 {
  font-size: 44px;
  line-height: 1.15;
  color: var(--spm-blue-600);
  margin-bottom: 18px;
}

.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--spm-gray-700);
  margin-bottom: 16px;
}

/* HIGHLIGHTS */
.about-highlights {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--spm-gray-700);
}

.about-highlights i {
  color: var(--spm-green-600);
  font-size: 16px;
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--spm-orange-500);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: var(--spm-orange-600);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    position: static;
    margin-top: 20px;
  }

  .about-premium-content h2 {
    font-size: 30px;
  }
}


/* SECTION */
.spm-facilities {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(31,111,169,0.05),
    rgba(47,191,113,0.05),
    rgba(244,129,32,0.04)
  );
  font-family: "Work Sans", sans-serif;
}

/* HEADER */
.spm-section-header.center {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.spm-section-header h2 {
  font-size: 42px;
  color: var(--spm-blue-600);
  margin-bottom: 16px;
}

.spm-section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--spm-gray-700);
}

/* GRID */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.facility-card {
  background: #fff;
  border-radius: 26px;
  padding: 40px 30px;
  box-shadow: 0 30px 80px rgba(31,111,169,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 110px rgba(31,111,169,0.25);
}

/* ICON */
.facility-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--spm-green-600),
    var(--spm-blue-600)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.facility-icon i {
  font-size: 26px;
  color: #fff;
}

/* TEXT */
.facility-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--spm-blue-600);
}

.facility-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--spm-gray-700);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spm-section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .spm-facilities {
    padding: 90px 0;
  }
}


/* BREADCRUMB SECTION */
.spm-breadcrumb {
  position: relative;
  padding: 120px 0 100px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  font-family: "Work Sans", sans-serif;
  overflow: hidden;
}

/* Overlay for readability */
.spm-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244,129,32,0.95),
    rgba(31,111,169,0.92)
  );
}

/* CONTENT */
.breadcrumb-content {
  position: relative;
  max-width: 720px;
  color: #fff;
}

/* TAG */
.breadcrumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* TITLE */
.breadcrumb-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* BREADCRUMB LINKS */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb-nav span {
  opacity: 0.7;
}

.breadcrumb-nav .current {
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spm-breadcrumb {
    padding: 90px 0 80px;
    background-position: center;
  }

  .breadcrumb-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-content h1 {
    font-size: 30px;
  }

  .breadcrumb-nav {
    flex-wrap: wrap;
    font-size: 14px;
  }
}



.spm-info-section {
  padding: 30px 0;
      background-color: #FFF6EF;
  font-family: "Work Sans", sans-serif;
}

/* Titles */
.spm-info-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--spm-orange-500);
  margin-bottom: 20px;
}
@media(max-width:600px){
  .spm-info-subtitle{
    font-size: 23px !important;
  }
}

.spm-info-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: var(--spm-blue-600);
  margin: 30px 0 14px;
}

.spm-info-points-title {
  font-size: 18px;
  font-weight: 600;
  margin: 35px 0 18px;
  color: var(--spm-gray-700);
}

/* Text */
.spm-info-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--spm-gray-700);
  
  margin-bottom: 14px;
}

.spm{
  color: var(--spm-gray-700) !important;
}
/* Points Grid */
.spm-info-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  margin-top: 20px;
}

.spm-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.spm-point i {
  color: var(--spm-orange-500);
  font-size: 16px;
  margin-top: 4px;
}

.spm-point span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--spm-gray-700);
}

/* Responsive */
@media (max-width: 768px) {
  .spm-info-title {
    font-size: 23px;
  }

  .spm-info-points {
    grid-template-columns: 1fr;
  }
}


.spm-journey {
 
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%
  );
  font-family: "Work Sans", sans-serif;
}

/* Header */
.spm-journey-header {
  max-width: 820px;
  margin-bottom: 50px;
}

.spm-journey-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--spm-orange-500);
  margin-bottom: 10px;
}

.spm-journey-header h2 span {
  color: var(--spm-blue-600);
}

.spm-journey-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--spm-gray-700);
}

/* Steps */
.spm-journey-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}

.spm-step {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.spm-step-number {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--spm-orange-500);
  color: var(--spm-orange-500);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spm-step-content {
  font-size: 15.5px;
  color: var(--spm-gray-700);
  line-height: 1.6;
}

.spm-step-content strong {
  color: var(--spm-blue-600);
}

/* Info Blocks */
.spm-journey-info {
  max-width: 900px;
  margin-bottom: 40px;
}

.spm-journey-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--spm-orange-500);
  margin-bottom: 10px;
}

.spm-journey-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--spm-gray-700);
}

/* Responsive */
@media (max-width: 768px) {
  .spm-journey-header h2 {
    font-size: 28px;
  }

  .spm-step {
    align-items: flex-start;
  }

  .spm-step-number {
    min-width: 38px;
    height: 38px;
    font-size: 14px;
  }
}


.spm-faqs {
  padding: 30px 0;
  background-color: #FFF6EF;
  font-family: "Work Sans", sans-serif;
}

/* Header */
.spm-faq-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.spm-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(47, 191, 113, 0.15);
  color: var(--spm-green-600);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.spm-faq-header h2 {
  font-size: 38px;
  color: var(--spm-blue-600);
  margin-bottom: 12px;
}

.spm-faq-header p {
  font-size: 15.5px;
  color: var(--spm-gray-700);
  line-height: 1.7;
}

/* FAQ List */
.spm-faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FAQ Item */
.spm-faq-item {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.spm-faq-item:hover {
  transform: translateY(-2px);
}

/* Question */
.spm-faq-question {
  width: 100%;
  padding: 22px 26px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--spm-blue-600);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.spm-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.spm-faq-icon::before,
.spm-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--spm-orange-500);
  transition: all 0.3s ease;
}

.spm-faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.spm-faq-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Answer */
.spm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.spm-faq-answer p {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--spm-gray-700);
}

/* Active State */
.spm-faq-item.active .spm-faq-answer {
  max-height: 300px;
}

.spm-faq-item.active .spm-faq-icon::after {
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .spm-faq-header h2 {
    font-size: 30px;
  }

  .spm-faq-question {
    font-size: 16px;
  }
}



.spm-team-premium {
  padding: 60px 0;
background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
    color: #ffffff;
}

.spm-team-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.spm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(145, 159, 169, 0.1);
  color: var(--spm-blue-600);
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 18px;
}

.spm-team-header h2 {
  font-size: 40px;
  color:#ffffff;
  margin-bottom: 14px;
}

.spm-team-header p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
}

/* Grid */
.spm-doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.spm-doctor-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spm-doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(31,111,169,0.18);
}

.spm-doctor-card h3 {
  font-size: 20px;
  color: var(--spm-blue-700);
  margin-bottom: 6px;
}

.spm-doctor-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--spm-orange-500);
  margin-bottom: 10px;
}

.spm-doctor-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .spm-doctors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .spm-doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spm-team-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .spm-doctors-grid {
    grid-template-columns: 1fr;
  }
}

/* Doctor Photo */
.spm-doctor-photo {
  width: 110px;
  height: 110px;
  margin: -70px auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(
    135deg,
    var(--spm-blue-500),
    var(--spm-green-500),
    var(--spm-orange-500)
  );
}

.spm-doctor-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.spm-doctor-card {
  padding-top: 80px !important; 
}

.spm-doctor-card:hover .spm-doctor-photo {
  box-shadow: 0 0 0 6px rgba(47,191,113,0.15);
  transition: box-shadow 0.3s ease;
}



.spm-doctor-profile {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    #0f3554
  );
  color: #ffffff;
}

/* HERO */
.spm-doctor-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.spm-doctor-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* INTRO */
.spm-doctor-chip {
  display: inline-flex;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(47,191,113,0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.spm-doctor-intro h1 {
  font-size: 42px;
  margin-bottom: 8px;
}

.spm-doctor-intro h4 {
  font-size: 18px;
  color: var(--spm-orange-500);
  margin-bottom: 16px;
}

.spm-doctor-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #dce9f5;
  max-width: 720px;
}

/* CTA */
.spm-doctor-cta {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.spm-btn-primary {
  padding: 14px 28px;
  background: var(--spm-orange-500);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.spm-btn-outline {
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* DETAILS */
.spm-doctor-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.spm-doctor-card {
  background: #ffffff;
  color: #333;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.spm-doctor-card h3 {
  color: var(--spm-blue-700);
  margin-bottom: 16px;
}

.spm-doctor-card ul {
  padding-left: 18px;
}

.spm-doctor-card li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* FULL WIDTH */
.spm-full {
  grid-column: span 2;
}

/* TAGS */
.spm-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.spm-expertise-tags span {
  padding: 10px 16px;
  background: rgba(31,111,169,0.1);
  color: var(--spm-blue-700);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spm-doctor-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spm-doctor-cta {
    justify-content: center;
  }

  .spm-doctor-details {
    grid-template-columns: 1fr;
  }

  .spm-full {
    grid-column: span 1;
  }
}

/* GRID */
.spm-doctor-details-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* CARD */
.spm-detail-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(31,111,169,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Gradient Accent Line */
.spm-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--spm-blue-600),
    var(--spm-green-500),
    var(--spm-orange-500)
  );
}

.spm-detail-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 80px rgba(0,0,0,0.2);
}

/* HEADER */
.spm-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.spm-detail-header h3 {
  font-size: 22px;
  color: var(--spm-blue-700);
  margin: 0;
}

/* ICON */
.spm-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    var(--spm-green-500)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(31,111,169,0.35);
}

/* LIST */
.spm-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spm-detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Check Icon */
.spm-detail-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--spm-green-500);
  font-size: 14px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spm-doctor-details-premium {
    grid-template-columns: 1fr;
  }
  .spm-doctor-intro h1 {
    font-size: 33px;
    margin-bottom: 8px;
}
.spm-doctor-intro h4{
  font-size: 16px;
}
}

/* Layout */
.spm-doctor-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* Card */
.spm-doctor-card {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f9fbfd
  );
  border-radius: 26px;
  padding: 36px 34px;
  box-shadow: 0 20px 60px rgba(31, 111, 169, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Top accent line */
.spm-doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--spm-blue-600),
    var(--spm-green-500),
    var(--spm-orange-500)
  );
}

.spm-doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(31, 111, 169, 0.22);
}

/* Headings */
.spm-doctor-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--spm-blue-700);
  margin-bottom: 18px;
  position: relative;
 
}

/* List */
.spm-doctor-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spm-doctor-card ul li {
  font-size: 15px;
  color: #555;
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

/* Bullet icon */
.spm-doctor-card ul li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: var(--spm-orange-500);
  font-weight: 600;
}

/* Full width card */
.spm-doctor-card.spm-full {
  grid-column: 1 / -1;
}

/* Expertise tags */
.spm-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.spm-expertise-tags span {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(31,111,169,0.12),
    rgba(47,191,113,0.12)
  );
  color: var(--spm-blue-700);
  transition: all 0.3s ease;
}

.spm-expertise-tags span:hover {
  background: linear-gradient(
    135deg,
    var(--spm-blue-600),
    var(--spm-green-500)
  );
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .spm-doctor-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .spm-doctor-card {
    padding: 28px 24px;
    text-align: center;
  }
      
      
       .spm-doctor-card  ul{
          text-align:left !important;
      }
      
      
      
      
      
      
      
      
      
      
      
      
      

  .spm-doctor-card h3 {
    font-size: 20px;
  }
}



/* Section */
.spm-diagnostics {
  padding: 30px 0;
 background-color: #FFF6EF;
}

/* Layout */
.spm-diagnostics-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Title */
.spm-info-title {
  font-size: 26px;
    font-weight: 700;
    color: var(--spm-blue-600);
    margin: 0px 0 14px;
}

/* Description */
.spm-diagnostics-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 26px;
}

/* Premium pill list */
.spm-diag-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spm-diag-item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(20,81,140,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #2d2d2d;
}

.spm-diag-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4d7a, #1fbf73);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Note */
.spm-diagnostics-note {
  margin-top: 16px;
  color: #555;
  font-weight: 500;
}

/* Right Image */
.spm-diagnostics-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px){
  .spm-diagnostics-grid {
    grid-template-columns: 1fr;
  }

  .spm-info-title {
    font-size: 23px;
  }
}

.spm-why-choose {
  padding: 20px 0;
     background-color: #FFF6EF;
  font-family: "Work Sans", sans-serif;
}

.spm-title {
  font-size: 26px;
    font-weight: 700;
    color: var(--spm-blue-600);
    margin: 20px 0 14px;
}

.spm-sub {
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 24px;
  color: #555;
}

/* List wrapper */
.spm-why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Item card */
.spm-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(20, 81, 140, 0.08);
}

/* Check icon */
.spm-why-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4d7a, #1fbf73);
  color: #fff;
  font-size: 14px;
}

.spm-why-item p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px){
  .spm-title { font-size: 23px; }
  .spm-why-item { padding: 14px; }
}


.spm-health-focused {
  padding: 20px 0;
background-color: #FFF6EF;
}

.spm-section-head {
  color: var(--spm-blue-600);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.spm-section-text {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 28px;
 
}

@media (max-width: 768px) {
  .spm-section-head {
    font-size: 22px;
  }

  .spm-section-text {
    font-size: 15px;
  }
}



.spm-cta {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--spm-blue-600), #0f3554);
}

.spm-cta-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 45px;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.18);
}

.spm-cta-content h2 {
  font-size: 34px;
  color: var(--spm-blue-600);
  margin-bottom: 10px;
}

.spm-cta-content p {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Actions Row */
.spm-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Call Button */
.spm-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--spm-blue-600);
  background: rgba(31,111,169,0.12);
  border-radius: 14px;
  text-decoration: none;
}

.spm-cta-call i {
  background: var(--spm-blue-600);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Appointment Button */
.spm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  background: var(--spm-orange-500);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 12px 35px rgba(31, 132, 255, 0.35);
}

.spm-cta-btn:hover {
  background: var(--spm-blue-600);
  box-shadow: 0 18px 45px rgba(31,111,169,0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .spm-cta-box {
    padding: 28px;
  }

  .spm-cta-content h2 {
    font-size: 23px;
  }

  .spm-cta-call {
    font-size: 16px;
  }
}



.spm-blogs {
  padding: 70px 0;
  background: #f4f9ff;
}

.spm-blog-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}

.spm-badge {
  display: inline-block;
  background: rgba(31,111,169,0.12);
  color: var(--spm-blue-600);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
}

.spm-blog-header h2 {
  color: var(--spm-blue-700);
}

.spm-blog-header p {
  color: var(--spm-gray-700);
}

/* GRID */
.spm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

/* CARD */
.spm-blog-card {
  background: var(--spm-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all .35s ease;
  border: 1px solid rgba(24,93,140,0.1);
}

.spm-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.12);
}

/* IMAGE */
.spm-blog-image {
  position: relative;
}

.spm-blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.spm-blog-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--spm-blue-600);
  color: var(--spm-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}

/* CONTENT */
.spm-blog-content {
  padding: 25px;
}

.spm-blog-content h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.spm-blog-content p {
  color: var(--spm-gray-700);
}

/* META */
.spm-blog-meta {
  margin: 12px 0 18px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--spm-gray-500);
}

/* BUTTON */
.spm-blog-btn {
  display: inline-block;
  color: var(--spm-white);
  background: var(--spm-orange-500);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
}

.spm-blog-btn:hover {
  background: var(--spm-orange-700);
}

/* RESPONSIVE */
@media(max-width: 991px){
  .spm-blog-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 768px){
  .spm-blog-grid{
    grid-template-columns: 1fr;
  }
}

/* new codeeeeee */
.spm-about{
  padding: 90px 0;
  background: linear-gradient(180deg,#f4f9ff,#ffffff);
}

/* GRID */
.spm-about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items:center;
}

/* BADGE */
.spm-about-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 18px;
  background: rgba(31,111,169,0.12);
  color: var(--spm-blue-600);
  border-radius:999px;
  font-weight:600;
  margin-bottom:15px;
}

.spm-about-title{
  color: var(--spm-blue-700);
  font-size:38px;
  margin-bottom:14px;
}

.spm-about-title span{
  color: var(--spm-green-500);
}

.spm-about-text{
  color: var(--spm-gray-700);
  line-height:1.7;
  font-size:16px;
  margin-bottom:22px;
}

/* HIGHLIGHTS */
.spm-about-highlights{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:14px;
  margin-bottom:25px;
}

.highlight{
  background:#fff;
  border-radius:14px;
  padding:12px 14px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border:1px solid rgba(24,93,140,0.12);
  font-weight:600;
  color: var(--spm-blue-700);
  display:flex;
  align-items:center;
  gap:10px;
}

/* CTA */
.spm-about-cta{
  display:flex;
  align-items:center;
  gap:18px;
}

.about-btn{
  background: var(--spm-green-500);
  color:#fff;
  padding:12px 22px;
  border-radius:50px;
  font-weight:600;
  transition:.3s;
}

.about-btn:hover{
  background: var(--spm-green-700);
}

.about-call{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--spm-blue-700);
}

.about-call strong{
  color: var(--spm-green-500);
}

/* IMAGE */
.about-img-wrap{
  position:relative;
}

.about-img-wrap img{
  width:100%;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

/* FLOATING CARD */
.about-floating-card{
  position:absolute;
  bottom:-20px;
  left:20px;
  background:#fff;
  padding:18px 20px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.14);
  border-left:6px solid var(--spm-green-500);
}

.about-floating-card h4{
  margin-bottom:4px;
  color: var(--spm-blue-700);
}

/* RESPONSIVE */
@media(max-width:991px){
  .spm-about-grid{
    grid-template-columns:1fr;
  }

  .spm-about-title{
    font-size:32px;
  }
}


.spm-mvv{
  padding: 70px 0;
  background: linear-gradient(180deg,#ffffff,#f6fbff);
}

/* Header */
.spm-mvv-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.spm-chip{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 18px;
  border-radius:999px;
  background: rgba(31,111,169,0.12);
  color: var(--spm-blue-700);
  font-weight:600;
}

.spm-mvv-header h2{
  font-size:38px;
  color: var(--spm-blue-700);
  margin:14px 0;
}

.spm-mvv-header h2 span{
  color: var(--spm-green-500);
}

.spm-mvv-header p{
  color: var(--spm-gray-700);
  font-size:16px;
  line-height:1.7;
}

/* GRID */
.spm-mvv-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:28px;
}

/* Cards */
.spm-mvv-card{
  background:#fff;
  border-radius:22px;
  padding:26px 24px;
  box-shadow:0 24px 60px rgba(0,0,0,0.10);
  border:1px solid rgba(24,93,140,0.15);
  transition:.35s;
}

.spm-mvv-card:hover{
  transform: translateY(-6px);
  box-shadow:0 36px 80px rgba(0,0,0,0.16);
}

.mvv-icon{
  width:60px;
  height:60px;
  border-radius:12px;
  background: rgba(31,111,169,0.12);
  color: var(--spm-blue-700);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:12px;
}

.mvv-icon.green{
  background: rgba(11,156,79,0.12);
  color: var(--spm-green-500);
}

.mvv-icon.blue{
  background: rgba(0,152,70,0.12);
  color: var(--spm-orange-500);
}

.spm-mvv-card h3{
  color: var(--spm-blue-700);
  font-size:20px;
  margin-bottom:8px;
}

.spm-mvv-card p{
  color: var(--spm-gray-700);
  line-height:1.7;
  font-size:15px;
}

/* Values List */
.mvv-values{
  margin-top:6px;
  list-style:none;
  padding:0;
}

.mvv-values li{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--spm-gray-700);
  font-size:15px;
  margin-bottom:6px;
}

.mvv-values i{
  color: var(--spm-green-500);
}

/* Responsive */
@media(max-width:992px){
  .spm-mvv-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .spm-mvv-grid{
    grid-template-columns:1fr;
  }

  .spm-mvv-header h2{
    font-size:30px;
  }
}

.spm-highlights{
  padding: 70px 0;
  background: linear-gradient(180deg,#ffffff,#f6fbff);
}

/* Header */
.spm-highlights-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.spm-highlights-header h2{
  font-size:38px;
  color: var(--spm-blue-700);
  margin:14px 0;
}

.spm-highlights-header h2 span{
  color: var(--spm-green-500);
}

.spm-highlights-header p{
  color: var(--spm-gray-700);
  font-size:16px;
  line-height:1.7;
}

/* Grid */
.spm-highlights-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:28px;
}

/* Cards */
.spm-high-card{
  background:#fff;
  border-radius:22px;
  padding:26px 24px;
  border:1px solid rgba(24,93,140,0.12);
  box-shadow:0 22px 60px rgba(0,0,0,0.10);
  transition:.35s;
}

.spm-high-card:hover{
  transform: translateY(-6px);
  box-shadow:0 38px 90px rgba(0,0,0,0.18);
}

/* Icons */
.highlight-icon{
  width:60px;
  height:60px;
  border-radius:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  background: rgba(31,111,169,0.12);
  color: var(--spm-blue-700);
  font-size:24px;
  margin-bottom:12px;
}

.highlight-icon.green{
  background: rgba(11,156,79,0.12);
  color: var(--spm-green-500);
}

.highlight-icon.blue{
  background: rgba(24,93,140,0.12);
  color: var(--spm-blue-600);
}

.highlight-icon.orange{
  background: rgba(0,152,70,0.12);
  color: var(--spm-orange-500);
}

/* Text */
.spm-high-card h3{
  color: var(--spm-blue-700);
  font-size:20px;
  margin-bottom:6px;
}

.spm-high-card p{
  color: var(--spm-gray-700);
  line-height:1.7;
  font-size:15px;
}

/* Responsive */
@media(max-width:992px){
  .spm-highlights-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .spm-highlights-grid{
    grid-template-columns:1fr;
  }
  .spm-highlights-header h2{
    font-size:30px;
  }
}

.spm-contact{
  padding: 60px 0;
  background: linear-gradient(180deg,#ffffff,#f6fbff);
}

.spm-contact-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 50px;
}

.spm-contact-header h2{
  font-size:38px;
  color: var(--spm-blue-700);
  margin:14px 0;
}

.spm-contact-header p{
  color: var(--spm-gray-700);
  line-height:1.7;
}

/* Grid */
.spm-contact-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:28px;
  margin-bottom:40px;
}

/* Cards */
.spm-contact-card{
  background:#fff;
  border-radius:22px;
  padding:26px;
  text-align:center;
  border:1px solid rgba(24,93,140,0.12);
  box-shadow:0 22px 60px rgba(0,0,0,0.10);
  transition:.35s;
}

.spm-contact-card:hover{
  transform:translateY(-6px);
  box-shadow:0 38px 90px rgba(0,0,0,0.18);
}

.spm-icon{
  width:65px;
  height:65px;
  border-radius:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:26px;
  margin:0 auto 12px;
}

.spm-icon.green{
  background: rgba(11,156,79,0.15);
  color: var(--spm-green-500);
}

.spm-icon.blue{
  background: rgba(24,93,140,0.15);
  color: var(--spm-blue-600);
}

.spm-icon.orange{
  background: rgba(0,152,70,0.15);
  color: var(--spm-orange-500);
}

.spm-contact-card h3{
  color: var(--spm-blue-700);
  margin-bottom:6px;
}

.spm-contact-card p{
  color: var(--spm-gray-700);
}

.spm-contact-link{
  display:block;
  margin-top:8px;
  font-weight:600;
  color: var(--spm-blue-700);
}


/* Responsive */
@media(max-width:992px){
  .spm-contact-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .spm-contact-grid{
    grid-template-columns:1fr;
  }

  .spm-contact-header h2{
    font-size:30px;
  }
}

.spm-doc-btn{
  display: inline-block;
 
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1f6fa9, #0b9c4f);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: .3s ease-in-out;
}

.spm-doc-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #0b9c4f, #1f6fa9);
}


/* UNIQUE BLOG BACKGROUND - NO CONFLICT */
.spm-blog-unique-bg {
  background: linear-gradient(135deg, rgba(31,111,169,0.12), rgba(0,152,70,0.10)),
              #f8fafc;
  padding: 80px 0;
  position: relative;
}

/* Soft abstract shapes */
.spm-blog-unique-bg::before,
.spm-blog-unique-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.spm-blog-unique-bg::before {
  width: 240px;
  height: 240px;
  background: rgba(31,111,169,0.18);
  top: 40px;
  left: 5%;
  filter: blur(18px);
}

.spm-blog-unique-bg::after {
  width: 300px;
  height: 300px;
  background: rgba(0,152,70,0.20);
  bottom: 40px;
  right: 5%;
  filter: blur(20px);
}

/* Elevate content card */
.spm-blog-unique-bg .spm-blog-content {
  position: relative;
  z-index: 1;
  background: var(--spm-white);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-left: 8px solid var(--spm-green-500);
}

/* Responsive */
@media(max-width: 768px){
  .spm-blog-unique-bg{
    padding: 55px 0;
  }
  .spm-blog-unique-bg .spm-blog-content{
    padding: 22px;
  }
}


@media (max-width:600px) {
  .spm-blog-content h2{
  font-size: 20px;
  margin-bottom:10px;
}
}



.spm-floating-contact{
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Base Button Style */
.spm-floating-contact a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  letter-spacing: .3px;
  transition: .35s ease-in-out;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* ICON Design */
.spm-floating-contact i{
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

/* WHATSAPP BUTTON */
.spm-whatsapp{
  background:#0b9c4f;
}
.spm-whatsapp i{
  color:#0b9c4f;
}
.spm-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow:0 12px 28px rgba(11,156,79,.45);
}

/* CALL BUTTON */
.spm-call{
  background:#1f6fa9;
}
.spm-call i{
  color:#1f6fa9;
}
.spm-call:hover{
  transform: translateY(-2px);
  box-shadow:0 12px 28px rgba(31,111,169,.45);
}

/* Mobile Optimisation */
@media(max-width:600px){
  .spm-floating-contact{
    right: 15px;
    bottom: 15px;
  }

  .spm-floating-contact a{
    padding: 9px 16px 9px 10px;
  }

  .spm-floating-contact span{
    font-size: 14px;
  }

  .spm-floating-contact i{
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

