@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #104790;
  --navy-deep: #071e40;
  --navy-mid: #104790;
  --amber: #fa8422;
  --amber-light: #ffb370;
  --amber-pale: #fff5ec;
  --cream: #f2f4fa;
  --cream-dark: #ffffff;
  --text: #000;
  --heading: #013243;
  --text-light: #000;
  --white: #ffffff;
  --border: rgba(14, 72, 146, 0.1);
  --shadow: 0 20px 60px rgba(11, 45, 94, 0.12);
  --shadow-amber: 0 10px 40px rgba(250, 132, 34, 0.25);
  --gradient: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  /* Fonts */
  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  /* Spacing */
  --section-py: 100px;
  --radius: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  display: block;
}

section {
  overflow: hidden;
}

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #414141;
  margin-bottom: 18px;
}

.section-eyebrow.light {
  color: var(--amber-light);
}

.section-eyebrow.centered {
  justify-content: center;
}

.line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--amber);
  flex-shrink: 0;
}

.line.dark {
  background: var(--navy);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(31px, 5vw, 41px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-title.light {
  color: var(--white);
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-eyebrow {
  justify-content: center;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%) 0% 0% no-repeat padding-box;
  color: white;
  box-shadow: 3px 4px 15px rgba(63, 176, 206, 0.6509803922);
  padding: 14px 30px 14px 30px;
  border-radius: 26px;
  font-weight: 500;
  font-family: var(--font-body);
  background-size: 100%;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-size: 160%;
}

.btn-primary.large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: var(--navy);
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgb(28, 26, 161);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--navy);
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid navy;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%) 0% 0% no-repeat padding-box;
  color: white;
  box-shadow: 3px 4px 15px rgba(63, 176, 206, 0.6509803922);
  padding: 14px 30px 14px 30px;
  border-radius: 26px;
  font-weight: 500;
  font-family: var(--font-body);
  background-size: 100%;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-amber:hover {
  background-size: 150%;
  color: #fff;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 14px;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--navy-deep);
  padding: 10px 0;
}

.topbar-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contacts {
  display: flex;
  gap: 28px;
  align-items: center;
}

.topbar-contacts a,
.topbar-contacts span {
  font-size: 13px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s;
}

.topbar-contacts a:hover {
  color: var(--amber);
}

.topbar-contacts i {
  color: var(--amber);
  font-size: 12px;
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: all 0.3s;
}

.topbar-social a:hover {
  background: var(--amber);
  color: white;
}

.topbar-contacts a:nth-child(2) {
  display: none;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
  padding-top: 5px;
  padding-bottom: 5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  border-radius: 20px;
  right: 0;
  top: 25px;
  box-shadow: 0 14px 22px -10px rgba(0, 0, 0, 0.1098039216);
}
.site-header .book-appointment {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 16px;
}
.site-header .call-now {
  font-weight: 700;
  gap: 10px;
  display: block;
}
.site-header .call-now .fa-whatsapp {
  background-color: #25D366;
  padding: 5px;
  color: #fff;
  border-radius: 34px;
  margin-right: 2px;
  width: 45px;
  margin-right: 10px;
  text-align: center;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  font-size: 20px;
  align-items: center;
}
.site-header .right-header {
  gap: 40px;
  display: flex;
  align-items: center;
}
.site-header .right-header .menu-toggle {
  background-color: transparent;
  border: unset;
  width: 34px;
  font-size: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-header .right-header .menu-toggle span {
  font-size: 13px;
}

.site-header.is-sticky {
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.08);
}

.header-inner {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text img {
  max-height: 70px;
}

.mega-menu-custom {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  height: 100vh;
  width: 100vw;
  background-color: var(--navy);
  padding-top: 139px;
  color: #fff;
  transition: all 0.6s;
  overflow-y: scroll;
  transform: scaleY(0);
  transform-origin: top;
}
.mega-menu-custom.active {
  transform: scaleY(1);
}
.mega-menu-custom .mega-menu-inner-wrapper {
  max-width: 98%;
  margin-left: auto;
  margin-right: auto;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 {
  position: relative;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 > a {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 21px;
  font-weight: 600;
  display: block;
  padding-bottom: 10px;
  position: relative;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 > a:before {
  width: 60px;
  height: 2px;
  background-color: var(--amber);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4.treatment > .sub-menu {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-54%);
  min-width: 97vw;
  left: 212px;
  gap: 10px;
}
@media only screen and (max-width: 1366px) {
  .mega-menu-custom .mega-menu-inner-wrapper .hd4.treatment > .sub-menu {
    transform: translateX(-44%);
    min-width: 100vw;
    left: 10px;
    gap: 10px;
  }
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4.treatment > .sub-menu > li > a {
  color: var(--amber);
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 > .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  min-width: 350px;
  padding-left: 0;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 > .sub-menu .sub-menu {
  display: block;
  padding-left: 5px;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 > .sub-menu li {
  margin-bottom: 9px;
  font-size: 14px;
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4 > .sub-menu li a:hover {
  color: var(--amber);
}
.mega-menu-custom .mega-menu-inner-wrapper .hd4:hover .sub-menu {
  display: grid;
}
.mega-menu-custom .mega-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1.3fr;
}
.mega-menu-custom #menu-header-menu {
  display: flex;
  gap: 33px;
  justify-content: center;
}
.mega-menu-custom #mega-menu-max_mega_menu_1 .mega-sub-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.mega-menu-custom .mega-close {
  display: none;
}
.mega-menu-custom .mega-toggle-blocks-right {
  display: none;
}
.mega-menu-custom .address-details-row {
  padding-top: 19px;
  display: grid;
  border-top: solid 1px #113f7d;
  grid-template-columns: 40% 30% 30%;
  margin-top: 19px;
  display: none;
}
.mega-menu-custom .address-details-row .add-box {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mega-menu-custom .address-details-row .add-box i {
  padding: 15px;
  background-color: var(--amber);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- HERO ---------- */
.hero-section {
  min-height: 100vh;
  background: url(img/header-bg.png);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
.hero-section .hero-left {
  position: relative;
  z-index: 99;
  width: 109%;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 300;
  color: rgba(11, 45, 94, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: 0.1em;
}

.hero-content {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding-top: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #575554;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 60px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--navy);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  box-shadow: unset;
  position: relative;
  padding-right: 58px;
}
.hero-actions .btn-primary i {
  background: #fff;
  width: 37px;
  height: 37px;
  line-height: 37px;
  background: rgba(255, 255, 255, 0.2784313725) 0% 0% no-repeat padding-box;
  position: absolute;
  right: 8px;
  top: 7px;
  border-radius: 50%;
  text-align: center;
}

/* Owl Carousel Arrows */
.owl-carousel .owl-nav {
  margin-top: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 22px !important;
  line-height: 55px !important;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 10px;
}

.owl-carousel .owl-nav button.owl-next {
  right: 10px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.08);
}

.owl-carousel .owl-nav button span {
  display: block;
  line-height: 50px;
}

/* Hero image */
.hero-img-frame {
  position: relative;
}

.hero-img-blob {
  position: relative;
  overflow: hidden;
  max-height: 683px;
  max-width: 675px;
  margin-left: auto;
}

.hero-img-blob img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-blob:hover img {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}

.hero-badge i {
  font-size: 22px;
  color: var(--amber);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}

.hero-badge span {
  font-size: 12px;
  color: var(--text-light);
}

.hero-float-card {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite 1.5s;
}
.hero-float-card p {
  margin-bottom: 0;
}

.hero-float-card i {
  color: var(--amber);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ---------- MARQUEE ---------- */
.marquee-wrap {
  background: #232323;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.993);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.marquee-track .dot {
  color: var(--amber);
  font-size: 10px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---------- ABOUT ---------- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 48%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--amber);
  color: white;
  border-radius: 16px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-amber);
}

.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: #5e5f61;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}

.pillar {
  display: flex;
  gap: 18px;
  border-radius: 10px;
  color: #000;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 14px;
}
.pillar:nth-child(2) {
  background-color: #ebebeb;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%) 0% 0% no-repeat padding-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.pillar p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: var(--section-py) 0;
  background: #fff;
  position: relative;
}

.services-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, rgba(250, 132, 34, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  border: 1.5px solid transparent;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 0 31px -3px rgba(0, 0, 0, 0.0901960784);
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(250, 132, 34, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: #212121;
  border-color: #212121;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card.featured p {
  color: rgb(255, 255, 255);
}

.service-card.featured .service-link {
  color: var(--amber-light);
}

.service-card.featured .service-num {
  color: rgba(255, 255, 255, 0.15);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
}

.service-card.featured::before {
  background: var(--amber);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card:hover .service-icon:not(.featured .service-icon) {
  background: var(--amber);
  color: white;
}

.service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(11, 45, 94, 0.06);
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ---------- WELLNESS ---------- */
.wellness-section {
  padding: var(--section-py) 0;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.wellness-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 132, 34, 0.08) 0%, transparent 70%);
}

.wellness-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.light-text {
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.wellness-content {
  background-color: #ffffff;
  padding: 80px 30px;
  height: 100%;
  border-radius: 20px 0 0 20px;
}

.wellness-programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 25px;
}

.wp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 21px;
}

.wp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(250, 132, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 18px;
  flex-shrink: 0;
}

.wp-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--heading);
}

.wp-text p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.wellness-img-wrap {
  position: relative;
  height: 100%;
  overflow: visible;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
}

.wellness-visual {
  height: 100%;
}

.wellness-img-wrap img {
  width: 100%;
  border-radius: 0 24px 24px 0;
}

.wellness-overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #212121;
  color: white;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wellness-overlay-card i {
  font-size: 24px;
}

.wellness-overlay-card strong {
  display: block;
  font-size: 15px;
}

.wellness-overlay-card span {
  font-size: 12px;
  opacity: 0.85;
}

/* ---------- CTA (PREMIUM) ---------- */
.cta-section {
  padding: 120px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.cta-bg-orb--left {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 11, 155, 0.6) 0%, transparent 70%);
  top: -140px;
  left: -160px;
}
.cta-bg-orb--right {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(7, 204, 236, 0.22) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content .section-eyebrow.light {
  color: rgba(255, 255, 255, 0.65);
}
.cta-content .section-title.light em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #fa8422 0%, #ffb370 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 38px;
  max-width: 520px;
}

.cta-stats {
  display: flex;
  align-items: center;
  margin-bottom: 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 480px;
}

.cta-stat {
  flex: 1;
  text-align: center;
}
.cta-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  background: transparent linear-gradient(90deg, #fa8422 0%, #ffb370 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cta-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent linear-gradient(90deg, #fa8422 0%, #ffb370 100%);
  color: var(--navy-deep);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 34px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(250, 132, 34, 0.4);
  letter-spacing: 0.2px;
}
.cta-btn-primary i {
  transition: transform 0.3s ease;
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(250, 132, 34, 0.55);
  color: var(--navy-deep);
}
.cta-btn-primary:hover i {
  transform: translateX(5px);
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cta-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cta-phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250, 132, 34, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 14px;
  animation: cta-pulse 2.2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(250, 132, 34, 0.35);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(250, 132, 34, 0);
  }
}
.cta-card-wrap {
  position: relative;
}

.cta-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 38px 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.cta-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent linear-gradient(90deg, #fa8422 0%, #ffb370 100%);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 26px;
}
.cta-card-badge i {
  font-size: 13px;
}

.cta-card-rating {
  margin-bottom: 0;
}
.cta-card-rating .cta-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.cta-card-rating .cta-stars i {
  color: #fbbf24;
  font-size: 15px;
}
.cta-card-rating p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.cta-card-rating p strong {
  color: rgba(255, 255, 255, 0.88);
}

.cta-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 24px 0;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.cta-benefit-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
  font-size: 15px;
}

.cta-card-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-card-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.cta-card-phone:hover {
  opacity: 0.8;
}

.cta-card-phone-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.cta-card-phone > span small {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.cta-card-phone > span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.cta-card-whatsapp {
  width: 46px;
  height: 46px;
  background: #25D366;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.cta-card-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
}

@media (max-width: 1100px) {
  .cta-layout {
    grid-template-columns: 1fr 380px;
    gap: 56px;
  }
}
@media (max-width: 900px) {
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-stats,
  .cta-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-stat strong {
    font-size: 24px;
  }
  .cta-stats {
    padding: 16px 20px;
  }
  .cta-card {
    padding: 28px 24px;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 64px 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btn-primary,
  .cta-btn-ghost {
    justify-content: center;
  }
  .cta-stats {
    flex-direction: column;
    gap: 18px;
  }
  .cta-stat-divider {
    width: 50px;
    height: 1px;
  }
}
/* ---------- TEAM ---------- */
.team-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.team-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 27px 47px -25px rgba(0, 0, 0, 0.1294117647);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.07);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(to top, rgba(11, 45, 94, 0.8), transparent);
  transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}

.team-social a:hover {
  background: white;
  color: var(--amber);
}

.team-info {
  padding: 20px;
  background: var(--cream);
}

.team-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 4px;
}

.team-info span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #737373;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: 500;
}

/* ---------- BLOG ---------- */
.blog-section {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.blog-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.featured-blog .blog-img img {
  height: 280px;
}

.blog-img.small img {
  height: 100%;
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%) 0% 0% no-repeat padding-box;
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.blog-date i {
  color: var(--amber);
}

.blog-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.35;
  margin-bottom: 12px;
}

.small-blog .blog-body h3 {
  font-size: 16px;
}

.blog-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-blog {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.small-blog .blog-body {
  padding: 16px 18px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: var(--section-py) 0;
  position: relative;
  background: #fff;
}
.testimonials-section .ti-profile-img {
  display: none !important;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  box-shadow: 0 14px 44px -39px #000;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testi-card.featured-testi {
  background: #f6f6f6;
  border-color: transparent;
}

.testi-quote {
  margin-bottom: 16px;
}

.testi-quote i {
  font-size: 28px;
  color: var(--amber);
}

.testi-card p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testi-author strong {
  display: block;
  font-size: 14px;
}

.testi-author span {
  font-size: 12px;
}

.testi-stars {
  margin-left: auto;
}

.testi-stars i {
  color: var(--amber);
  font-size: 12px;
}

.testi-ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgb(238, 238, 238);
  border-radius: 16px;
  padding: 24px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-item .stars i {
  color: var(--amber);
  font-size: 14px;
}

.rating-item span {
  font-size: 14px;
}

.rating-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-size: 16px;
  color: var(--navy);
  font-weight: 400;
}

.contact-item a:hover {
  color: var(--amber);
}

.contact-form {
  background: var(--cream);
  border-radius: 24px;
  padding: 44px 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-input:focus {
  border-color: var(--amber);
}

.form-input::-moz-placeholder {
  color: var(--text-light);
}

.form-input::placeholder {
  color: var(--text-light);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

select.form-input {
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-size: cover;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 50px;
}

.footer-brand p {
  font-size: 14px;
  color: rgb(255, 255, 255);
  line-height: 1.8;
  margin: 20px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--amber);
  color: white;
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: var(--amber);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  background-color: #1d1d1d;
  padding: 11px 10px;
  border-radius: 6px;
}
.fc-item i {
  color: var(--amber);
  width: 16px;
  flex-shrink: 0;
}
.fc-item a {
  color: rgb(255, 255, 255);
}
.fc-item a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgb(255, 255, 255);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--amber);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--amber);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-amber);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  height: 100vh;
  overflow: scroll;
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.mobile-nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.mobile-nav-overlay ul li a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  padding: 8px 24px;
  text-align: center;
  transition: color 0.3s;
}

.mobile-nav-overlay ul li a:hover {
  color: var(--amber);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

.mobile-nav-close:hover {
  color: var(--amber);
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(11, 45, 94, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(11, 45, 94, 0.04);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  text-align: left;
}

.faq-question span {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
}

.faq-question i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber-pale);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding: 0 30px 28px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.faq-item.active {
  border-color: rgba(250, 132, 34, 0.2);
}

.faq-item.active .faq-question i {
  background: var(--amber);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

@media (max-width: 767px) {
  .faq-question {
    padding: 22px 20px;
  }
  .faq-question span {
    font-size: 22px;
  }
  .faq-answer p {
    padding: 0 20px 24px;
  }
}
/* ---------- FOUNDER MESSAGE ---------- */
.founder-section {
  padding: var(--section-py) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.founder-bg-text {
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 1;
  color: rgba(11, 45, 94, 0.03);
  pointer-events: none;
  font-weight: 600;
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-image {
  position: relative;
}

.founder-img-wrap img {
  width: 100%;
  transition: transform 0.6s ease;
}

.founder-img-wrap:hover img {
  transform: scale(1.05);
}

.founder-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.founder-badge i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(250, 132, 34, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.founder-badge strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.founder-badge span {
  font-size: 12px;
  opacity: 0.7;
}

.founder-content {
  position: relative;
}

.founder-quote {
  position: relative;
  padding: 38px 42px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(11, 45, 94, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  margin: 35px 0;
  box-shadow: 0 20px 60px rgba(11, 45, 94, 0.06);
}

.founder-quote i {
  position: absolute;
  top: -18px;
  left: 35px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-amber);
}

.founder-quote p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 18px;
}

.founder-quote p:last-child {
  margin-bottom: 0;
}

.founder-info {
  margin-bottom: 32px;
}

.founder-info h4 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 6px;
}

.founder-info span {
  display: inline-block;
  color: var(--amber);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #00e676;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 41px;
  left: 12px;
}

.call-flaot {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: var(--amber);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  margin-top: 0px;
  line-height: 50px;
  transition: all ease-in-out 0.2s;
  bottom: 100px;
  left: 12px;
}

/* ===== PAGE HEADER / BREADCRUMB ===== */
.page-header {
  padding: 160px 0 70px;
  background-color: #f7f9fc;
  background-image: radial-gradient(circle at 20% 50%, rgb(16, 71, 144) 0%, rgba(28, 27, 162, 0.7294117647) 60%), radial-gradient(circle at 80% 20%, rgba(250, 132, 34, 0.07) 0%, transparent 50%), url(https://walksutra.com/wp-content/uploads/2026/06/breadcrumbs.jpg);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 60px solid rgba(250, 132, 34, 0.06);
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-header-inner {
  position: relative;
  z-index: 2;
}

.page-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 16px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #888;
}
.breadcrumb-nav a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.3s;
}
.breadcrumb-nav a:hover {
  color: var(--amber);
}
.breadcrumb-nav i {
  font-size: 10px;
  color: #bbb;
}
.breadcrumb-nav span {
  color: var(--amber);
  font-weight: 500;
}

/* About us page desing */
.ab-main-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.ab-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* --- Images --- */
.ab-main-images {
  position: relative;
  padding-bottom: 60px;
}

.ab-img-primary {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 45, 94, 0.12);
}
.ab-img-primary img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.ab-img-primary:hover img {
  transform: scale(1.03);
}

.ab-img-secondary {
  position: absolute;
  bottom: 0;
  right: -16px;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.ab-img-secondary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ab-float-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.ab-float-badge i {
  font-size: 24px;
  color: var(--amber);
}
.ab-float-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.ab-float-badge span {
  font-size: 11px;
  opacity: 0.75;
  display: block;
}

.ab-patients-badge {
  position: absolute;
  bottom: 70px;
  left: -20px;
  background: var(--amber);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(250, 132, 34, 0.3);
  animation: float 3s ease-in-out infinite 1.5s;
}
.ab-patients-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.ab-patients-badge span {
  font-size: 11px;
  opacity: 0.9;
  display: block;
  margin-top: 3px;
}

.ab-commitment-closing {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.ab-expertise-note {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #f7f9fc;
  border-radius: 10px;
  border-left: 3px solid rgba(16, 71, 144, 0.15);
}

.ab-reach-note {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-style: italic;
}

.ab-tech-footer-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* --- Content --- */
.ab-main-content .section-eyebrow {
  margin-bottom: 20px;
}

.ab-main-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 28px;
}
.ab-main-heading em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-intro-para {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
  padding: 20px 22px;
  background: #f7f9fc;
  border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0;
}

.ab-body-para {
  font-size: 15px;
  line-height: 1.85;
  color: #666;
  margin-bottom: 32px;
}

.ab-mission-strip {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ab-mission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  background: #f7f9fc;
  border: 1.5px solid rgba(16, 71, 144, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.3s ease;
}
.ab-mission-item:hover {
  border-color: rgba(250, 132, 34, 0.3);
}
.ab-mission-item i {
  font-size: 22px;
  color: var(--amber);
  flex-shrink: 0;
}
.ab-mission-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 3px;
}
.ab-mission-item span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* =============================================
   SECTION 2: THE MEANING BEHIND WALKSUTRA
   ============================================= */
.ab-philosophy-section {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.ab-philosophy-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.08em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ab-philosophy-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.ab-philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.ab-philosophy-title em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-philosophy-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 56px;
}

.ab-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 24px;
  align-items: stretch;
}

.ab-philosophy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.3s ease;
}
.ab-philosophy-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(250, 132, 34, 0.3);
}
.ab-philosophy-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 20px;
}
.ab-philosophy-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.ab-philosophy-card blockquote {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin: 20px 0 24px;
  border: none;
  padding: 0;
}

.ab-philo-featured {
  background: rgba(250, 132, 34, 0.1);
  border-color: rgba(250, 132, 34, 0.25);
  text-align: center;
}
.ab-philo-featured:hover {
  background: rgba(250, 132, 34, 0.15);
  border-color: rgba(250, 132, 34, 0.5);
}
.ab-philo-featured .ab-philo-icon {
  margin: 0 auto;
  background: var(--amber);
  color: #fff;
}

.ab-philo-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--amber);
}

.ab-philo-tagline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.ab-philo-tagline span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--amber);
  display: block;
}
.ab-philo-tagline span:last-child {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

/* =============================================
   SECTION 3: OUR JOURNEY
   ============================================= */
.ab-journey-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}

.ab-journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ab-journey-para {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

.ab-journey-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.ab-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
}
.ab-pillar i {
  color: var(--amber);
  font-size: 16px;
  flex-shrink: 0;
}

/* --- Stats --- */
.ab-journey-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ab-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.05);
  transition: all 0.3s ease;
}
.ab-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(11, 45, 94, 0.1);
  border-color: rgba(250, 132, 34, 0.2);
}

.ab-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.ab-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
}

.ab-stat-featured {
  grid-column: span 2;
  background: var(--navy);
  border-color: var(--navy);
  text-align: center;
  padding: 32px;
}
.ab-stat-featured .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-stat-featured .img-wrapper img {
  max-width: 150px;
}
.ab-stat-featured:hover {
  border-color: var(--amber);
}
.ab-stat-featured i {
  font-size: 32px;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}
.ab-stat-featured p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 8px 0 0;
}

.ab-stat-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.ab-stat-cred {
  display: block;
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 1px;
}

/* =============================================
   SECTION 4: EXPERTISE AREAS
   ============================================= */
.ab-expertise-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.ab-expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ab-expertise-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1.5px solid rgba(16, 71, 144, 0.08);
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.ab-expertise-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ab-expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11, 45, 94, 0.12);
  border-color: rgba(250, 132, 34, 0.2);
}
.ab-expertise-card:hover::before {
  transform: scaleX(1);
}
.ab-expertise-card:hover .ab-exp-icon {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
}
.ab-expertise-card > p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
}

.ab-exp-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.ab-exp-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
  line-height: 1.25;
}
.ab-exp-header span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
}

.ab-exp-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(250, 132, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ab-conditions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
}
.ab-conditions-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}
.ab-conditions-list li i {
  font-size: 8px;
  color: var(--amber);
  flex-shrink: 0;
}

/* =============================================
   SECTION 5: ADVANCED TECHNOLOGY
   ============================================= */
.ab-technology-section {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.ab-technology-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 204, 236, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ab-technology-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 11, 155, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ab-tech-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ab-tech-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.ab-tech-title em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-tech-para {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.ab-tech-para:last-of-type {
  margin-bottom: 36px;
}

.ab-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ab-tech-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.ab-tech-item:hover {
  background: rgba(250, 132, 34, 0.1);
  border-color: rgba(250, 132, 34, 0.3);
  transform: translateY(-3px);
}
.ab-tech-item:hover i {
  color: var(--amber);
}
.ab-tech-item i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.ab-tech-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  display: block;
  font-weight: 500;
}

/* =============================================
   SECTION 6: ROOT CAUSE APPROACH
   ============================================= */
.ab-approach-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.ab-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Diagram */
.ab-approach-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-approach-diagram {
  width: 100%;
  max-width: 420px;
  position: relative;
}

.ab-diagram-center {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: transparent linear-gradient(135deg, #1e0b9b 0%, #07ccec 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 16px 40px rgba(30, 11, 155, 0.25);
  color: #fff;
  text-align: center;
}
.ab-diagram-center i {
  font-size: 28px;
  display: block;
  margin-bottom: 6px;
}
.ab-diagram-center span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.ab-diagram-spokes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ab-diagram-spoke {
  text-align: center;
}
.ab-diagram-spoke p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 8px 0 0;
  font-weight: 500;
}

.ab-spoke-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 71, 144, 0.06);
  border: 1.5px solid rgba(16, 71, 144, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 18px;
  color: var(--navy);
  transition: all 0.3s ease;
}
.ab-spoke-icon:hover {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
}

/* Approach content */
.ab-approach-para {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
}

.ab-approach-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(30, 11, 155, 0.05) 0%, rgba(7, 204, 236, 0.05) 100%);
  border: 1.5px solid rgba(16, 71, 144, 0.1);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 28px;
}
.ab-approach-highlight i {
  font-size: 22px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.ab-approach-highlight p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--heading);
  margin: 0;
  font-weight: 500;
}

/* =============================================
   SECTION 7: REACH & ACCESSIBILITY
   ============================================= */
.ab-reach-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}

.ab-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ab-reach-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1.5px solid rgba(16, 71, 144, 0.08);
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.06);
  transition: all 0.3s ease;
}
.ab-reach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11, 45, 94, 0.1);
}
.ab-reach-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 16px;
  line-height: 1.3;
}
.ab-reach-card > p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 28px;
}

.ab-reach-card-dark {
  background: var(--navy);
  border-color: var(--navy);
}
.ab-reach-card-dark h3 {
  color: #fff;
}
.ab-reach-card-dark > p {
  color: rgba(255, 255, 255, 0.65);
}
.ab-reach-card-dark .ab-reach-card-icon {
  background: rgba(250, 132, 34, 0.15);
  color: var(--amber);
}

.ab-reach-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(16, 71, 144, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 22px;
}

/* Tags for home physio card */
.ab-reach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ab-reach-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(16, 71, 144, 0.07);
  border: 1px solid rgba(16, 71, 144, 0.12);
  border-radius: 50px;
  padding: 5px 14px;
}

/* Services list for global card */
.ab-reach-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-reach-service {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.ab-reach-service i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--amber);
  flex-shrink: 0;
}

/* =============================================
   SECTION 8: VISION & COMMITMENT
   ============================================= */
.ab-vision-section {
  padding: var(--section-py) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.ab-vision-bg-text {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ab-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ab-vision-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.ab-vision-title em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-vision-para {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.ab-vision-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.ab-vision-values span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.ab-vision-values span i {
  color: var(--amber);
  font-size: 11px;
}
.ab-vision-values span:hover {
  background: rgba(250, 132, 34, 0.15);
  border-color: rgba(250, 132, 34, 0.3);
  color: #fff;
}

/* Commitment Card */
.ab-commitment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 44px 40px;
  transition: all 0.3s ease;
}
.ab-commitment-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(250, 132, 34, 0.3);
}
.ab-commitment-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.ab-commitment-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(250, 132, 34, 0.3);
}

.ab-commitment-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.ab-commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.ab-commitment-item i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(250, 132, 34, 0.2);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ab-commitment-item strong {
  color: #fff;
}

.ab-commitment-tagline {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ab-commitment-tagline span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.ab-commitment-tagline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}
.ab-commitment-tagline em {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

/* About us page end */
/* ===== FEATURED POST ===== */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 45, 94, 0.1);
  margin-bottom: 60px;
  background: #fff;
}
.featured-post:hover .fp-img img {
  transform: scale(1.05);
}

.fp-img {
  position: relative;
  overflow: hidden;
}
.fp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.fp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.fp-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.fp-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 16px;
}
.fp-body h2 a {
  color: inherit;
  transition: color 0.3s;
}
.fp-body h2 a:hover {
  color: var(--navy);
}
.fp-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 28px;
}

.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.fp-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #999;
  margin-bottom: 28px;
}
.fp-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fp-meta i {
  color: var(--amber);
}

/* ===== BLOG GRID ===== */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.bl-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.bl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 45, 94, 0.1);
  border-color: rgba(250, 132, 34, 0.2);
}
.bl-card:hover .bl-img img {
  transform: scale(1.07);
}

.bl-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.bl-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bl-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.bl-read-time {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bl-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bl-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.bl-body h3 a {
  color: inherit;
  transition: color 0.3s;
}
.bl-body h3 a:hover {
  color: var(--navy);
}
.bl-body p {
  font-size: 13px;
  line-height: 1.75;
  color: #888;
  margin-bottom: 18px;
}

.bl-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
}
.bl-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bl-meta i {
  color: var(--amber);
  font-size: 11px;
}

.bl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 71, 144, 0.07);
}

.bl-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bl-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl-author-name {
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

.bl-read-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.bl-read-link:hover {
  color: var(--amber);
  gap: 10px;
}

/* ===== PAGINATION ===== */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pg-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1.5px solid rgba(16, 71, 144, 0.12);
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.pg-btn:hover, .pg-btn.active {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(63, 176, 206, 0.35);
}
.pg-btn.arrow {
  font-size: 12px;
}

.pg-dots {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ===== NEWSLETTER STRIP ===== */
.newsletter-strip {
  background: #f7f9fc;
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 70px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
}
.newsletter-strip h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.newsletter-strip p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.nl-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nl-input {
  padding: 13px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(16, 71, 144, 0.12);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 260px;
  transition: border-color 0.3s;
}
.nl-input:focus {
  border-color: #07ccec;
}
.nl-input::-moz-placeholder {
  color: #bbb;
}
.nl-input::placeholder {
  color: #bbb;
}

/* ===== INTRO STRIP ===== */
.services-intro {
  padding: 80px 0 0;
  background: #fff;
}
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.services-intro-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 28px;
}
.services-intro-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.si-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.si-stat {
  background: #f7f9fc;
  border-radius: 16px;
  padding: 20px 22px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
}
.si-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.si-stat-label {
  font-size: 13px;
  color: #777;
  font-weight: 500;
}
.si-img {
  border-radius: 18px;
  overflow: hidden;
}
.si-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.si-img:hover img {
  transform: scale(1.05);
}
.si-img.tall {
  grid-row: span 2;
}
.si-img.tall img {
  height: 360px;
}
.si-img.short img {
  height: 168px;
}

/* ===== FILTER TABS ===== */
.services-filter-wrap {
  padding: 60px 0 0;
  background: #fff;
}

.services-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(16, 71, 144, 0.07);
}

.svc-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.svc-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1.5px solid rgba(16, 71, 144, 0.12);
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}
.svc-tab:hover, .svc-tab.active {
  background: linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(63, 176, 206, 0.35);
}

.svc-cta-link {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}
.svc-cta-link:hover {
  color: var(--amber);
  gap: 12px;
}

/* ===== SERVICES GRID ===== */
.services-listing-section {
  padding: 60px 0 var(--section-py);
  background: #fff;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.svc-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  background: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.05);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 45, 94, 0.12);
  border-color: rgba(250, 132, 34, 0.2);
}
.svc-card:hover .svc-img img {
  transform: scale(1.06);
}
.svc-card:hover .svc-icon {
  transform: rotate(-6deg) scale(1.1);
}
.svc-card.svc-featured {
  grid-column: span 2;
}
.svc-card.svc-featured .svc-grid-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.svc-card.svc-featured .svc-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 360px;
}
.svc-card.svc-featured .svc-body {
  padding: 40px 44px;
  justify-content: center;
}
.svc-card.svc-featured .svc-body h3 {
  font-size: 28px;
}
.svc-card.svc-featured .svc-body p {
  font-size: 15px;
}

.svc-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.svc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.svc-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 1px;
  line-height: 1.6;
}

.svc-cat-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  padding: 5px 13px;
  border-radius: 50px;
}

.svc-body {
  padding: 28px 30px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.svc-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e0b9b 0%, #07ccec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.svc-icon-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

.svc-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.svc-condition-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(16, 71, 144, 0.07);
  border: 1px solid rgba(16, 71, 144, 0.12);
  border-radius: 50px;
  padding: 4px 12px;
}

.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 71, 144, 0.07);
  margin-top: auto;
}

.svc-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #888;
}
.svc-availability .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.svc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid rgba(16, 71, 144, 0.18);
  border-radius: 50px;
  padding: 9px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.svc-book-btn:hover {
  background: linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(63, 176, 206, 0.35);
}

/* ===== PROCESS STEPS ===== */
.process-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 71, 144, 0.15), rgba(250, 132, 34, 0.3), rgba(16, 71, 144, 0.15), transparent);
}

.ps-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(30, 11, 155, 0.25);
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step:hover .ps-num {
  transform: scale(1.1);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  margin: 0;
}

/* ===== CTA ===== */
.services-cta {
  padding: var(--section-py) 0;
  background: #fff;
}
.services-cta-inner {
  background: linear-gradient(135deg, #071e40 0%, #104790 100%);
  border-radius: 28px;
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
  overflow: hidden;
}
.services-cta-inner::before {
  content: "";
  position: absolute;
}
.services-cta-inner::after {
  content: "";
  position: absolute;
}
.services-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
}
.services-cta-inner h2 em {
  font-style: italic;
  color: var(--amber-light);
}
.services-cta-inner p {
  color: rgba(255, 255, 255, 0.7);
}

.scta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-page-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.contact-page-section .contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-page-section {
  /* Info cards */
}
.contact-page-section .contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.contact-page-section .contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #f7f9fc;
  border-radius: 16px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  transition: all 0.3s ease;
}
.contact-page-section .contact-info-card:hover {
  border-color: rgba(250, 132, 34, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.contact-page-section .cic-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-page-section .cic-body strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-page-section .cic-body p,
.contact-page-section .cic-body a {
  font-size: 15px;
  color: var(--heading);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s;
}
.contact-page-section .cic-body a:hover {
  color: var(--amber);
}
.contact-page-section .cic-body .location-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  margin-bottom: 4px;
}
.contact-page-section .cic-body .location-entry {
  margin-bottom: 10px;
}
.contact-page-section .cic-body .location-entry:last-child {
  margin-bottom: 0;
}
.contact-page-section {
  /* Map */
}
.contact-page-section .contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.contact-page-section .contact-map-wrap iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: 0;
}
.contact-page-section {
  /* Form */
}
.contact-page-section .contact-form-card {
  background: #f7f9fc;
  border-radius: 24px;
  padding: 44px 40px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
}
.contact-page-section .contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.contact-page-section .contact-form-card .form-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}
.contact-page-section .cf-group {
  margin-bottom: 16px;
  position: relative;
}
.contact-page-section .cf-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 7px;
}
.contact-page-section .cf-group:focus-within .cf-icon {
  color: #07ccec;
}
.contact-page-section .cf-input {
  width: 100%;
  padding: 13px 18px 13px 13px;
  background: #fff;
  border: 1.5px solid rgba(16, 71, 144, 0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-page-section .cf-input:focus {
  border-color: #07ccec;
  box-shadow: 0 0 0 3px rgba(7, 204, 236, 0.1);
}
.contact-page-section .cf-input::-moz-placeholder {
  color: #bbb;
}
.contact-page-section .cf-input::placeholder {
  color: #bbb;
}
.contact-page-section textarea.cf-input {
  resize: none;
  height: 120px;
  padding-top: 13px;
}
.contact-page-section .cf-icon {
  position: absolute;
  left: 16px;
  top: 44px;
  color: #aaa;
  font-size: 15px;
  transition: color 0.3s;
}
.contact-page-section .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== MAIN DETAIL LAYOUT ===== */
.sd-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.sd-section .sd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

/* ===== HERO VISUAL ===== */
.sd-hero-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
}
.sd-hero-img img {
  width: 100%;
  max-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sd-hero-img .sd-hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7, 28, 64, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sd-hero-img .sd-hero-badge i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: transparent linear-gradient(135deg, #1e0b9b 0%, #07ccec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.sd-hero-img .sd-hero-badge strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}
.sd-hero-img .sd-hero-badge span {
  font-size: 12px;
  opacity: 0.7;
}

/* ===== CONTENT BODY ===== */
.sd-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 16px;
  margin-top: 40px;
  line-height: 1.3;
}
.sd-content h2:first-child {
  margin-top: 0;
}
.sd-content h2 em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sd-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* Highlighted intro */
.sd-intro-box {
  background: #f0f4ff;
  border-left: 4px solid transparent;
  -o-border-image: linear-gradient(180deg, #1e0b9b, #07ccec) 1;
     border-image: linear-gradient(180deg, #1e0b9b, #07ccec) 1;
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin-bottom: 32px;
}
.sd-intro-box p {
  font-size: 17px;
  font-style: italic;
  color: var(--heading);
  margin: 0;
  line-height: 1.75;
}

/* ===== SIDEBAR ===== */
.sd-sidebar {
  position: sticky;
  top: 110px;
}

/* Book card */
.sd-book-card {
  background: transparent linear-gradient(145deg, #071e40 0%, #104790 100%);
  border-radius: 22px;
  padding: 34px 28px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.sd-book-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.sd-book-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.sd-book-card p {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 24px;
  line-height: 1.6;
}
.sd-book-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}
.sd-book-card .sd-book-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.sd-book-card .sd-book-phone:hover {
  color: var(--amber-light);
}
.sd-book-card .sd-book-phone i {
  color: var(--amber);
}

/* Quick info card */
.sd-info-card {
  background: #f7f9fc;
  border-radius: 20px;
  padding: 26px 24px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  margin-bottom: 24px;
}
.sd-info-card h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 71, 144, 0.08);
}
.sd-info-card .sd-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 71, 144, 0.05);
  font-size: 14px;
}
.sd-info-card .sd-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sd-info-card .sd-info-row .label {
  color: #999;
  font-weight: 400;
}
.sd-info-card .sd-info-row .value {
  color: var(--heading);
  font-weight: 600;
  text-align: right;
}
.sd-info-card .sd-info-row .value.green {
  color: #22c55e;
}

/* Featured image */
.bd-cover {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 44px;
  position: relative;
}
.bd-cover img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.bd-cover .bd-cover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px 22px;
  background: linear-gradient(to top, rgba(7, 28, 64, 0.7), transparent);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-style: italic;
}

/* Article body */
.bd-body h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
  margin: 40px 0 16px;
}
.bd-body h2:first-child {
  margin-top: 0;
}
.bd-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--heading);
  margin: 30px 0 12px;
}
.bd-body p {
  font-size: 16px;
  line-height: 1.95;
  color: #555;
  margin-bottom: 22px;
}

/* Pull quote */
.bd-pullquote {
  border-left: 4px solid var(--amber);
  padding: 20px 28px;
  background: #fff8f0;
  border-radius: 0 16px 16px 0;
  margin: 32px 0;
}
.bd-pullquote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.65;
  margin: 0;
}
.bd-pullquote cite {
  display: block;
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  font-style: normal;
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Info box */
.bd-infobox {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 28px 0;
  border: 1.5px solid rgba(16, 71, 144, 0.1);
}
.bd-infobox .bd-infobox-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.bd-infobox .bd-infobox-title i {
  color: var(--amber);
}
.bd-infobox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bd-infobox ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.bd-infobox ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Inline image */
.bd-inline-img {
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
}
.bd-inline-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-height: 360px;
}
.bd-inline-img figcaption {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  padding: 10px;
  background: #f7f9fc;
  font-style: italic;
}

/* Tags + Share row */
.bd-tags-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(16, 71, 144, 0.08);
  border-bottom: 1px solid rgba(16, 71, 144, 0.08);
  margin: 44px 0 40px;
}
.bd-tags-row .bd-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bd-tags-row .bd-tag-label,
.bd-tags-row .bd-share-label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
}
.bd-tags-row .bd-tag {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  background: #f0f4ff;
  color: var(--navy);
  border: 1px solid rgba(16, 71, 144, 0.1);
  transition: all 0.3s;
  text-decoration: none;
}
.bd-tags-row .bd-tag:hover {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
}
.bd-tags-row .bd-share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bd-tags-row .bd-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.bd-tags-row .bd-share-btn.fb {
  background: #1877f2;
  color: #fff;
}
.bd-tags-row .bd-share-btn.tw {
  background: #1da1f2;
  color: #fff;
}
.bd-tags-row .bd-share-btn.wa {
  background: #25d366;
  color: #fff;
}
.bd-tags-row .bd-share-btn.ln {
  background: #0a66c2;
  color: #fff;
}
.bd-tags-row .bd-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Author card */
.bd-author-card {
  background: #f7f9fc;
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
}
.bd-author-card .bd-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(11, 45, 94, 0.12);
}
.bd-author-card .bd-author-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
}
.bd-author-card .bd-author-info .bd-author-role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  display: block;
  margin-bottom: 10px;
}
.bd-author-card .bd-author-info p {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

/* ===== SIDEBAR ===== */
.sb-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 4px 20px rgba(11, 45, 94, 0.04);
  margin-bottom: 24px;
}
.sb-card .sb-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 71, 144, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-card .sb-card-title i {
  color: var(--amber);
  font-size: 14px;
}

/* Recent post items */
.sb-post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sb-post-list .sb-post-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 71, 144, 0.06);
  transition: all 0.3s;
  text-decoration: none;
}
.sb-post-list .sb-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sb-post-list .sb-post-item:hover .sb-post-title {
  color: var(--amber);
}
.sb-post-list .sb-post-item:hover .sb-post-thumb img {
  transform: scale(1.1);
}
.sb-post-list .sb-post-item .sb-post-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.sb-post-list .sb-post-item .sb-post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.sb-post-list .sb-post-item .sb-post-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}
.sb-post-list .sb-post-item .sb-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.45;
  transition: color 0.3s;
  display: block;
  margin-bottom: 5px;
}
.sb-post-list .sb-post-item .sb-post-date {
  font-size: 11px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sb-post-list .sb-post-item .sb-post-date i {
  font-size: 10px;
  color: var(--amber);
}

/* Contact details in sidebar */
.sb-contact-card {
  background: transparent linear-gradient(145deg, #071e40 0%, #104790 100%);
  border-radius: 20px;
  padding: 28px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sb-contact-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 44px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.sb-contact-card .sb-card-title {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}
.sb-contact-card .sb-card-title i {
  color: var(--amber-light);
}
.sb-contact-card .sb-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
}
.sb-contact-card .sb-contact-row:last-of-type {
  margin-bottom: 24px;
}
.sb-contact-card .sb-ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--amber-light);
  flex-shrink: 0;
}
.sb-contact-card .sb-ci-body strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 3px;
}
.sb-contact-card .sb-ci-body a,
.sb-contact-card .sb-ci-body span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
  line-height: 1.5;
}
.sb-contact-card .sb-ci-body a:hover {
  color: var(--amber-light);
}
.sb-contact-card .btn-primary {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.bd-section {
  padding: var(--section-py);
}

/* ===== RESPONSIVE ===== */
/* ===== DOCTORS LISTING ===== */
.doctors-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.doctors-section .doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Doctor card */
.doc-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 6px 30px rgba(11, 45, 94, 0.06);
  transition: all 0.4s ease;
}
.doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(11, 45, 94, 0.12);
  border-color: rgba(250, 132, 34, 0.2);
}
.doc-card:hover .doc-photo-wrap img {
  transform: scale(1.05);
}
.doc-card:hover .doc-overlay {
  opacity: 1;
}
.doc-card {
  /* Featured Doctor */
}
.doc-card:first-child {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 380px 1fr;
  border-radius: 26px;
}
.doc-card:first-child .doc-photo-wrap {
  border-radius: 0;
}
.doc-card:first-child .doc-photo-wrap img {
  aspect-ratio: unset;
}
.doc-card:first-child .doc-info {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doc-card:first-child .doc-name {
  font-size: 30px;
  margin-bottom: 6px;
}
.doc-card:first-child .doc-degree {
  font-size: 14px;
  margin-bottom: 18px;
}
.doc-card:first-child .doc-bio-text {
  font-size: 15px;
  line-height: 1.85;
  color: #666;
  margin-bottom: 22px;
}
.doc-card:first-child .doc-footer {
  margin-top: auto;
}

/* Photo area */
.doc-photo-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f4ff;
}
.doc-photo-wrap img {
  -o-object-position: top center;
     object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

/* Overlay on hover */
.doc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 28, 64, 0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.doc-overlay .doc-overlay-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 16px;
}
.doc-overlay .doc-overlay-socials {
  display: flex;
  gap: 8px;
}
.doc-overlay .doc-overlay-socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s;
  text-decoration: none;
}
.doc-overlay .doc-overlay-socials a:hover {
  background: var(--amber);
}

/* Experience chip */
.doc-exp-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Info area */
.doc-info {
  padding: 22px 22px 20px;
}
.doc-info .doc-role {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 6px;
  display: block;
}
.doc-info .doc-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
  line-height: 1.25;
}
.doc-info .doc-degree {
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
}

/* Expertise tags */
.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.doc-tags .doc-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  background: #f0f4ff;
  color: var(--navy);
  border: 1px solid rgba(16, 71, 144, 0.1);
}

/* Card footer */
.doc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 71, 144, 0.07);
}
.doc-footer .doc-availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
}
.doc-footer .doc-availability .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.doc-footer .doc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(16, 71, 144, 0.18);
  transition: all 0.3s;
  text-decoration: none;
}
.doc-footer .doc-book-btn:hover {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(63, 176, 206, 0.35);
  gap: 10px;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.4);
  }
}
.doc-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ===== CTA STRIP ===== */
.doctors-cta {
  margin-top: 64px;
  background: #f7f9fc;
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
}
.doctors-cta h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.doctors-cta h4 em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.doctors-cta p {
  font-size: 15px;
  color: #777;
  margin: 0;
}
.doctors-cta .doctors-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.testi-page-section {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #f7f9fc 0%, #eef2f9 100%);
  position: relative;
  overflow: hidden;
}
.testi-page-section::before, .testi-page-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.testi-page-section::before {
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(250, 132, 34, 0.06);
}
.testi-page-section::after {
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border: 55px solid rgba(16, 71, 144, 0.05);
}
.testi-page-section .section-intro {
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}

/* ---- Testi Tabs ---- */
.testi-tabs {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  background: #fff;
  border: 1px solid rgba(16, 71, 144, 0.12);
  border-radius: 50px;
  padding: 6px;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(11, 45, 94, 0.08);
  gap: 4px;
}

.testi-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.testi-tab i {
  font-size: 16px;
  transition: color 0.3s ease;
}

.testi-tab:hover {
  color: #104790;
  background: rgba(16, 71, 144, 0.05);
}

.testi-tab.active {
  background: linear-gradient(135deg, #104790, #0a2e6a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(16, 71, 144, 0.3);
}

.testi-tab.active i {
  color: var(--amber);
}

/* ---- Video Grid ---- */
.testi-video-grid-wrapper {
  margin-bottom: 56px;
}

.testi-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.testi-page-card {
  background: #fff;
  border: 1px solid rgba(16, 71, 144, 0.09);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 30px rgba(11, 45, 94, 0.07);
  position: relative;
}
.testi-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 45, 94, 0.13);
  border-color: rgba(16, 71, 144, 0.18);
}
.testi-page-card.testi-featured {
  background: transparent linear-gradient(135deg, #104790 0%, #0a2e6a 100%);
  border-color: transparent;
  color: #fff;
}
.testi-page-card.testi-featured .testi-quote i {
  color: var(--amber);
}
.testi-page-card.testi-featured .card-text {
  color: rgba(255, 255, 255, 0.88);
}
.testi-page-card.testi-featured .testi-author img {
  border-color: rgba(255, 255, 255, 0.3);
}
.testi-page-card.testi-featured .author-info strong {
  color: #fff;
}
.testi-page-card.testi-featured .author-info span {
  color: rgba(255, 255, 255, 0.6);
}
.testi-page-card .testi-quote {
  margin-bottom: 18px;
}
.testi-page-card .testi-quote i {
  font-size: 30px;
  color: var(--amber);
}
.testi-page-card .card-text {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
  color: #444;
}
.testi-page-card .testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-page-card .testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2.5px solid rgba(16, 71, 144, 0.15);
  flex-shrink: 0;
}
.testi-page-card .author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}
.testi-page-card .author-info span {
  font-size: 12px;
  color: #888;
}
.testi-page-card .author-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
}
.testi-page-card .author-stars i {
  color: var(--amber);
  font-size: 13px;
}

.testi-cta-strip {
  margin-top: 80px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testi-cta-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.testi-cta-strip p.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.testi-cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.testi-cta-strip h2 em {
  font-style: normal;
  color: var(--amber-light);
}
.testi-cta-strip p.desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 32px;
}
.testi-cta-strip .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.testi-cta-strip .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.testi-cta-strip .btn-white:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
}
.testi-cta-strip .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 26px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.testi-cta-strip .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.gallery-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(250, 132, 34, 0.05);
  pointer-events: none;
}
.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 60px solid rgba(16, 71, 144, 0.05);
  pointer-events: none;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-filters .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1.5px solid rgba(16, 71, 144, 0.15);
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.25s ease;
}
.gallery-filters .filter-btn:hover, .gallery-filters .filter-btn.active {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(7, 204, 236, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.gallery-grid__item--wide {
  grid-column: span 2;
}
.gallery-grid__item--tall {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 20, 72, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  border-radius: 16px;
}
.gallery-item__title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.gallery-item__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: transform 0.35s ease 0.05s;
}
.gallery-item__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-item__title,
.gallery-item:hover .gallery-item__tag {
  transform: translateY(0);
}
.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
  transform: scale(1);
}

.founder-cta {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #f7f9fc 0%, #edf1f8 100%);
}

.founder-cta-inner {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  border-radius: 24px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.founder-cta-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.founder-cta-text .cta-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.founder-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}
.founder-cta-text h2 em {
  font-style: normal;
  color: var(--amber-light);
}

.founder-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.founder-cta-actions .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.founder-cta-actions .btn-white:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
}
.founder-cta-actions .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 26px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.founder-cta-actions .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* =============================================
   SECTION 1: FOUNDER PROFILE
   ============================================= */
.fm-profile-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.fm-profile-section .fm-profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: flex-start;
}
.fm-profile-section .fm-profile-image {
  position: relative;
}
.fm-profile-section .fm-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fm-profile-section .fm-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.fm-profile-section .fm-img-wrap:hover img {
  transform: scale(1.03);
}
.fm-profile-section .fm-img-badge {
  position: absolute;
  top: 28px;
  left: -22px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.fm-profile-section .fm-img-badge i {
  font-size: 22px;
  color: var(--amber);
}
.fm-profile-section .fm-img-badge strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.fm-profile-section .fm-img-badge span {
  display: block;
  font-size: 11px;
  opacity: 0.75;
}
.fm-profile-section .fm-img-patients {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--amber);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-amber);
  animation: float 3s ease-in-out infinite 1.5s;
}
.fm-profile-section .fm-img-patients strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.fm-profile-section .fm-img-patients span {
  display: block;
  font-size: 11px;
  opacity: 0.9;
  margin-top: 3px;
}
.fm-profile-section .fm-profile-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 10px;
}
.fm-profile-section .fm-profile-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.5;
}
.fm-profile-section .fm-profile-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
  line-height: 1.5;
}
.fm-profile-section .fm-profile-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 28px;
}
.fm-profile-section .fm-profile-para {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 16px;
}
.fm-profile-section .fm-philosophy-quote {
  position: relative;
  background: #f7f9fc;
  border-radius: 18px;
  padding: 32px 36px 28px;
  margin-top: 28px;
  border: 1.5px solid rgba(16, 71, 144, 0.08);
}
.fm-profile-section .fm-philosophy-quote > i {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-amber);
}
.fm-profile-section .fm-philosophy-quote blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--heading);
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 500;
}

/* =============================================
   SECTION 2: PROFESSIONAL CREDENTIALS
   ============================================= */
.fm-credentials-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}
.fm-credentials-section .fm-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.06);
  padding: 36px 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.fm-credentials-section .fm-stat {
  text-align: center;
  padding: 0 25px;
  flex: 1;
  min-width: 140px;
}
.fm-credentials-section .fm-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.fm-credentials-section .fm-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
}
.fm-credentials-section .fm-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(16, 71, 144, 0.1);
  flex-shrink: 0;
}
.fm-credentials-section .fm-credentials-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.06);
}
.fm-credentials-section .fm-credentials-header {
  margin-bottom: 32px;
}
.fm-credentials-section .fm-credentials-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0;
}
.fm-credentials-section .fm-credentials-header h3 span {
  font-size: 18px;
  font-weight: 400;
  color: #888;
}
.fm-credentials-section .fm-credentials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fm-credentials-section .fm-credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
  padding: 14px 18px;
  background: #f7f9fc;
  border-radius: 12px;
  border: 1px solid rgba(16, 71, 144, 0.06);
  transition: all 0.3s ease;
}
.fm-credentials-section .fm-credential-item:hover {
  border-color: rgba(250, 132, 34, 0.25);
  background: #fff;
  box-shadow: 0 4px 16px rgba(11, 45, 94, 0.06);
}
.fm-credentials-section .fm-credential-item i {
  font-size: 16px;
  color: var(--amber);
  flex-shrink: 0;
}
.fm-credentials-section .fm-credential-item em {
  font-style: italic;
  color: var(--navy);
}

/* =============================================
   SECTION 3: CLINICAL AREAS OF EXPERTISE
   ============================================= */
.fm-expertise-section {
  padding: var(--section-py) 0;
  background: #fff;
}
.fm-expertise-section .fm-expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fm-expertise-section .fm-expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  background: #f7f9fc;
  border-radius: 18px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  transition: all 0.3s ease;
  cursor: default;
}
.fm-expertise-section .fm-expertise-item:hover {
  background: #fff;
  border-color: rgba(250, 132, 34, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(11, 45, 94, 0.08);
}
.fm-expertise-section .fm-expertise-item:hover i {
  background: var(--gradient);
  color: #fff;
}
.fm-expertise-section .fm-expertise-item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 71, 144, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.fm-expertise-section .fm-expertise-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.4;
}

/* =============================================
   SECTION 4: AUTHOR — UNFOLDING THE TRUTH OF PAIN
   ============================================= */
.fm-book-section {
  padding: var(--section-py) 0;
  background: var(--amber-pale);
  position: relative;
  overflow: hidden;
}
.fm-book-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 132, 34, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.fm-book-section .fm-book-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.fm-book-section .fm-book-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(250, 132, 34, 0.15);
}
.fm-book-section .fm-book-cover {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: #fff;
}
.fm-book-section .fm-book-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
  line-height: 1.3;
}
.fm-book-section .fm-book-meta span {
  font-size: 13px;
  color: #888;
  font-style: italic;
}
.fm-book-section .fm-book-para {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 16px;
}
.fm-book-section .fm-book-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fm-book-section .fm-book-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
.fm-book-section .fm-book-list li i {
  font-size: 8px;
  color: var(--amber);
  flex-shrink: 0;
}

/* =============================================
   SECTION 5: A VISION BEYOND TREATMENT
   ============================================= */
.fm-vision-section {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.fm-vision-section .fm-vision-bg-text {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.fm-vision-section .fm-vision-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}
.fm-vision-section .fm-vision-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.fm-vision-section .fm-vision-title em {
  font-style: italic;
}
.fm-vision-section .fm-vision-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 48px;
}
.fm-vision-section .fm-vision-statements {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.fm-vision-section .fm-vision-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.fm-vision-section .fm-vision-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(250, 132, 34, 0.4);
  transform: translateY(-4px);
}
.fm-vision-section .fm-vision-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.fm-vision-section .fm-vision-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(250, 132, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--amber);
  margin: 0 auto 14px;
}
.fm-vision-section .fm-vision-icon img {
  max-width: 32px;
}
.fm-vision-section .fm-vision-mission {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fm-vision-section .fm-vision-mission p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px;
  font-style: italic;
}
.fm-vision-section .fm-vision-mission strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  display: block;
}
.fm-vision-section .fm-vision-mission em {
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}

/* =============================================
   CTA SECTION
   ============================================= */
.founder-cta {
  padding: 80px 0;
  background: #f7f9fc;
}
.founder-cta .founder-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border-radius: 24px;
  padding: 48px 56px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.06);
  flex-wrap: wrap;
}
.founder-cta .cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 8px;
}
.founder-cta .founder-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--heading);
  margin: 0;
  line-height: 1.15;
}
.founder-cta .founder-cta-text h2 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder-cta .founder-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.srv-detail-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}

.srv-sidebar-nav {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.06);
}

.srv-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--amber);
  font-family: var(--font-display);
}

.srv-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srv-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: all 0.25s ease;
}
.srv-sidebar-link i {
  font-size: 11px;
  color: var(--amber);
  transition: transform 0.25s ease;
}
.srv-sidebar-link:hover, .srv-sidebar-link.active {
  background: linear-gradient(90deg, rgba(16, 71, 144, 0.07), transparent);
  color: var(--navy);
  padding-left: 18px;
}
.srv-sidebar-link.active {
  background: linear-gradient(90deg, #104790, #0a2e6a);
  color: #fff;
  font-weight: 600;
}
.srv-sidebar-link.active i {
  color: var(--amber);
}

.srv-sidebar-cta {
  border-radius: var(--radius);
  overflow: hidden;
}

.srv-cta-inner {
  background: linear-gradient(145deg, #104790 0%, #0a2e6a 100%);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.srv-cta-inner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 40px solid rgba(250, 132, 34, 0.12);
  pointer-events: none;
}
.srv-cta-inner h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.srv-cta-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.srv-cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(250, 132, 34, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.srv-cta-icon i {
  font-size: 24px;
  color: var(--amber);
}

.srv-cta-phone {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.srv-cta-phone:hover {
  color: var(--amber-light);
}

.srv-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.srv-hero-img img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.srv-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 19px 23px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.06);
  margin-bottom: 32px;
}

.srv-content-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--heading);
  font-family: var(--font-display);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(16, 71, 144, 0.08);
}

.srv-body {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}
.srv-body h2, .srv-body h3, .srv-body h4 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 28px 0 12px;
}
.srv-body p {
  margin-bottom: 16px;
}
.srv-body ul, .srv-body ol {
  padding-left: 26px;
  margin-bottom: 16px;
}
.srv-body ul li, .srv-body ol li {
  margin-bottom: 8px;
}
.srv-body ul li {
  position: relative;
}
.srv-body ul li:before {
  content: "\f00c";
  position: absolute;
  left: -20px;
  top: 0;
  color: var(--amber);
  font-family: "fontawesome";
}
.srv-body img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

ul, ol {
  padding-left: 26px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}

.page-content-section ul li {
  position: relative;
}

.srv-inline-cta {
  background: linear-gradient(135deg, #104790 0%, #0a2e6a 100%);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
}
.srv-inline-cta .btn-primary {
  white-space: nowrap;
}
.srv-inline-cta .btn-call-cta {
  background: #fff;
  color: #0a66c2;
}

.srv-inline-cta-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.srv-inline-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  background: var(--navy);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.marquee-wrap .marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-wrap .marquee-track span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.993);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.marquee-wrap .marquee-track .dot {
  color: var(--amber);
  font-size: 10px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1366px) {
  .about-grid {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .doc-card.doc-featured {
    grid-template-columns: 300px 1fr;
  }
  .doc-card.doc-featured .doc-info {
    padding: 30px 32px;
  }
  .doc-card.doc-featured .doc-name {
    font-size: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}
@media (max-width: 1024px) {
  .svc-card.svc-featured {
    grid-column: span 1;
  }
  .svc-card.svc-featured .svc-grid-inner {
    grid-template-columns: 1fr;
  }
  .svc-card.svc-featured .svc-img {
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .svc-card.svc-featured .svc-body {
    padding: 28px 30px;
  }
  .bd-sidebar {
    position: static;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-grid::before {
    display: none;
  }
  .bl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-main-grid,
  .ab-journey-grid,
  .ab-approach-grid,
  .ab-vision-grid {
    gap: 50px;
  }
  .ab-tech-inner {
    gap: 50px;
  }
  .ab-philosophy-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .ab-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fm-profile-section .fm-profile-grid {
    grid-template-columns: 360px 1fr;
    gap: 50px;
  }
  .fm-expertise-section .fm-expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fm-vision-section .fm-vision-statements {
    grid-template-columns: repeat(3, 1fr);
  }
  .fm-book-section .fm-book-grid {
    grid-template-columns: 280px 1fr;
    gap: 50px;
  }
  .fm-credentials-section .fm-credentials-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .srv-detail-section img {
    width: 100%;
  }
  .site-header .right-header {
    gap: 15px;
    display: flex;
    align-items: center;
  }
  .csr-card {
    flex-direction: column;
  }
  .testi-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .founder-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .doctors-section .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doc-card.doc-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .doc-card.doc-featured .doc-photo-wrap img {
    min-height: 0;
    aspect-ratio: 16/9;
    -o-object-position: top;
       object-position: top;
  }
  .doc-card.doc-featured .doc-info {
    padding: 28px;
  }
  .doctors-cta {
    flex-direction: column;
    text-align: center;
  }
  .doctors-cta .doctors-cta-btns {
    justify-content: center;
  }
  .founder-page-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .founder-page-badges .founder-page-badge {
    flex: 1 1 calc(50% - 8px);
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .founder-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 36px;
  }
  .founder-cta-actions {
    justify-content: center;
  }
  .srv-hero-img img {
    height: 300px;
  }
  .srv-content {
    padding: 28px 24px;
  }
  .srv-inline-cta {
    flex-direction: column;
    text-align: center;
  }
  .mega-menu-custom .mega-menu-inner-wrapper .hd4 > a {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .mega-menu-custom #menu-header-menu {
    padding: 15px;
  }
  .ab-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-main-images {
    padding-bottom: 50px;
  }
  .ab-float-badge {
    left: 0;
  }
  .ab-patients-badge {
    left: 0;
  }
  .ab-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ab-philosophy-title {
    font-size: 28px;
  }
  .ab-journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-journey-stats {
    grid-template-columns: 1fr 1fr;
  }
  .ab-expertise-grid {
    grid-template-columns: 1fr;
  }
  .ab-conditions-list {
    grid-template-columns: 1fr;
  }
  .ab-tech-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-tech-title {
    font-size: 26px;
  }
  .ab-approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-diagram-center {
    width: 90px;
    height: 90px;
  }
  .ab-diagram-center i {
    font-size: 22px;
  }
  .ab-diagram-center span {
    font-size: 10px;
  }
  .ab-reach-grid {
    grid-template-columns: 1fr;
  }
  .ab-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-vision-title {
    font-size: 28px;
  }
  .ab-commitment-card {
    padding: 32px 24px;
  }
  .ab-mission-strip {
    flex-direction: column;
  }
  .ab-expertise-card {
    padding: 28px 24px;
  }
  .fm-profile-section .fm-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fm-profile-section .fm-profile-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .fm-profile-section .fm-img-badge,
  .fm-profile-section .fm-img-patients {
    left: 0;
  }
  .fm-credentials-section .fm-stats-bar {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
  }
  .fm-credentials-section .fm-stat-divider {
    width: 80px;
    height: 1px;
  }
  .fm-credentials-section .fm-credentials-card {
    padding: 32px 24px;
  }
  .fm-credentials-section .fm-credentials-list {
    grid-template-columns: 1fr;
  }
  .fm-expertise-section .fm-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-book-section .fm-book-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fm-book-section .fm-book-card {
    max-width: 320px;
    margin: 0 auto;
  }
  .fm-vision-section .fm-vision-statements {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-vision-section .fm-vision-mission {
    padding: 28px 24px;
  }
  .founder-cta .founder-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
  .founder-cta .founder-cta-actions {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  :root {
    --section-py: 70px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-right {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 52px;
  }
  .hero-bg-text {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wellness-inner {
    grid-template-columns: 1fr;
  }
  .wellness-visual {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .small-blog {
    grid-template-columns: 130px 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .wellness-programs {
    grid-template-columns: 1fr;
  }
  .blog-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .blog-all-link {
    align-self: flex-start;
  }
  .topbar-contacts span {
    display: none;
  }
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .testi-ratings {
    flex-direction: column;
    gap: 20px;
  }
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-main-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .am-badge {
    left: 10px;
  }
  .featured-post {
    grid-template-columns: 1fr;
  }
  .fp-img {
    aspect-ratio: 16/9;
  }
  .newsletter-strip {
    flex-direction: column;
    text-align: center;
  }
  .nl-form {
    flex-direction: column;
    width: 100%;
  }
  .nl-input {
    width: 100%;
  }
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-cta-inner {
    grid-template-columns: 1fr;
    padding: 48px 36px;
  }
  .scta-actions {
    flex-direction: row;
  }
  .contact-page-section .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .founder-section {
    padding: 80px 0;
  }
  .founder-quote {
    padding: 34px 24px 28px;
  }
  .founder-quote p {
    font-size: 15px;
    line-height: 1.8;
  }
  .founder-info h4 {
    font-size: 28px;
  }
  .founder-badge {
    right: 10px;
    bottom: 10px;
    padding: 14px 18px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-grid__item--wide {
    grid-column: span 2;
  }
  .gallery-grid__item--tall {
    grid-row: span 1;
  }
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-page-badges .founder-page-badge {
    flex: 1 1 100%;
  }
  .vision-card {
    padding: 36px 28px;
  }
  .founder-cta-inner {
    padding: 40px 24px;
  }
}
@media (max-width: 600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .page-header {
    padding: 140px 0 50px;
  }
  .services-cta-inner {
    padding: 36px 24px;
  }
  .scta-actions {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-num {
    font-size: 28px;
  }
  .contact-form {
    padding: 28px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .topbar-contacts {
    gap: 14px;
  }
  .small-blog {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    left: 0;
  }
  .hero-float-card {
    right: 0;
    font-size: 12px;
  }
  .footer-bottom .container {
    flex-direction: column;
  }
  .has-dropdown .dropdown {
    flex-direction: column;
    background-color: #0a1a33;
    position: unset;
    opacity: 1;
    visibility: unset;
    display: none;
  }
  .has-dropdown .dropdown:hover {
    transform: unset;
  }
  .has-dropdown.active .dropdown {
    display: block;
  }
  .mobile-nav-overlay ul li a {
    font-size: 19px;
  }
  .mobile-nav-overlay {
    justify-content: start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-section {
    background-position: right top;
  }
  .hero-section .hero-left {
    background-image: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0.8196078431), transparent);
    padding: 27px 8px 27px 29px;
    z-index: 99;
    width: 100%;
    width: 100%;
  }
  .hero-content.container {
    padding: 0;
  }
  .hero-title {
    font-size: 35px;
  }
  .site-header .call-now {
    display: none;
  }
  .site-header .book-appointment {
    font-size: 13px;
    padding: 10px 11px 10px 11px;
  }
  .site-header .right-header {
    gap: 16px;
  }
  .mega-menu-custom.mega-menu-inner-wrapper .mega-menu-wrapes {
    grid-template-columns: 100%;
    padding: 15px;
  }
  .mega-menu {
    transform-origin: top;
    overflow-y: scroll;
  }
  .mega-menu-custom.address-details-row {
    grid-template-columns: 100%;
    gap: 15px;
  }
  .bl-grid {
    grid-template-columns: 1fr;
  }
  .fp-body {
    padding: 28px 24px;
  }
  .blog-filter-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-strip {
    padding: 32px 24px;
  }
  .page-header {
    padding: 140px 0 50px;
  }
  .am-badge {
    left: 10px;
    padding: 12px 14px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-intro-imgs {
    grid-template-columns: 1fr;
  }
  .si-img.tall {
    grid-row: span 1;
  }
  .si-img.tall img, .si-img.short img {
    height: 220px;
  }
  .contact-page-section .contact-form-card {
    padding: 28px 20px;
  }
  .contact-page-section .cf-row {
    grid-template-columns: 1fr;
  }
  .bd-tags-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ph-meta {
    gap: 14px;
  }
  .bd-author-card {
    flex-direction: column;
  }
  .doctors-section .doctors-grid {
    grid-template-columns: 1fr;
  }
  .doc-card.doc-featured {
    grid-column: span 1;
  }
  .doctors-cta {
    padding: 32px 24px;
  }
  .doctors-cta .doctors-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .doctors-cta .doctors-cta-btns .btn-primary,
  .doctors-cta .doctors-cta-btns .btn-ghost {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .testi-page-grid {
    grid-template-columns: 1fr;
  }
  .testi-ratings-bar {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
  .testi-ratings-bar .rating-divider {
    width: 60px;
    height: 1px;
  }
  .testi-cta-strip {
    padding: 40px 24px;
  }
  .srv-content-title {
    font-size: 22px;
  }
  .srv-cta-inner {
    padding: 28px 20px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-grid__item--wide {
    grid-column: span 1;
  }
  .gallery-filters {
    gap: 8px;
  }
  .gallery-filters .filter-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  .milestones-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .milestone-card {
    padding: 28px 20px;
  }
  .ab-tech-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ab-journey-stats {
    grid-template-columns: 1fr;
  }
  .ab-stat-featured {
    grid-column: span 1;
  }
  .ab-vision-values span {
    font-size: 11px;
    padding: 7px 12px;
  }
  .ab-diagram-spokes {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-expertise-section .fm-expertise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fm-vision-section .fm-vision-statements {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto 48px;
  }
  .fm-vision-section .fm-vision-mission strong {
    font-size: 22px;
  }
  .fm-credentials-section .fm-stats-bar {
    padding: 28px 20px;
  }
  .mega-menu-custom #menu-header-menu {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .logo-text img {
    max-height: 55px;
  }
}
/* =============================================
   DOCTOR DETAIL / SINGLE — ds-*
   ============================================= */
/* ---- Hero ---- */
.ds-hero {
  padding: var(--section-py) 0 80px;
  background: #fff;
}

.ds-hero-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 70px;
  align-items: center;
}

.ds-photo-col {
  position: relative;
}

.ds-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 45, 94, 0.15);
}
.ds-photo-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.ds-photo-wrap:hover img {
  transform: scale(1.04);
}

.ds-avail-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}
.ds-avail-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.ds-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7, 28, 64, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.ds-photo-badge i {
  font-size: 22px;
  color: var(--amber);
  flex-shrink: 0;
}
.ds-photo-badge strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.ds-photo-badge span {
  font-size: 11px;
  opacity: 0.72;
  display: block;
}

/* ---- Info Column ---- */
.ds-info {
  display: flex;
  flex-direction: column;
}

.ds-designation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  width: -moz-fit-content;
  width: fit-content;
}
.ds-designation i {
  font-size: 13px;
}

.ds-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 16px;
}

.ds-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  margin-bottom: 26px;
}
.ds-meta i {
  color: var(--amber);
  margin-right: 4px;
}
.ds-meta .ds-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.ds-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ds-tags .ds-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(16, 71, 144, 0.07);
  border: 1px solid rgba(16, 71, 144, 0.12);
  border-radius: 50px;
  padding: 6px 16px;
  transition: all 0.3s;
}
.ds-tags .ds-tag:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.ds-excerpt {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: #f7f9fc;
  border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0;
}

.ds-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ds-stats-row {
  display: flex;
  border: 1.5px solid rgba(16, 71, 144, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.ds-stat {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(16, 71, 144, 0.08);
}
.ds-stat:last-child {
  border-right: none;
}
.ds-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}
.ds-stat span {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ---- Bio Section ---- */
.ds-bio-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}

.ds-bio-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.ds-bio-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 28px;
}
.ds-bio-heading em {
  font-style: italic;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-bio-content {
  background: #fff;
  border-radius: 24px;
  padding: 44px 44px;
  border: 1.5px solid rgba(16, 71, 144, 0.06);
  box-shadow: 0 8px 40px rgba(11, 45, 94, 0.05);
}
.ds-bio-content h2, .ds-bio-content h3, .ds-bio-content h4 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
}
.ds-bio-content h2 {
  font-size: 24px;
}
.ds-bio-content h3 {
  font-size: 20px;
}
.ds-bio-content h4 {
  font-size: 17px;
}
.ds-bio-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}
.ds-bio-content p:last-child {
  margin-bottom: 0;
}
.ds-bio-content ul, .ds-bio-content ol {
  padding-left: 0;
  margin-bottom: 20px;
}
.ds-bio-content ul li, .ds-bio-content ol li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.ds-bio-content ul li::before, .ds-bio-content ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}
.ds-bio-content strong {
  color: var(--navy);
  font-weight: 600;
}

/* ---- Sidebar ---- */
.ds-bio-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ds-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 6px 30px rgba(11, 45, 94, 0.06);
}
.ds-card h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(16, 71, 144, 0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ds-card h5 i {
  color: var(--amber);
  font-size: 16px;
}

.ds-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ds-expertise-tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(16, 71, 144, 0.06);
  border: 1px solid rgba(16, 71, 144, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  transition: all 0.3s;
}
.ds-expertise-tags span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.ds-avail-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ds-avail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
.ds-avail-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 71, 144, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  flex-shrink: 0;
}

.ds-book-card {
  background: linear-gradient(135deg, #071e40 0%, #104790 100%);
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
}
.ds-book-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.ds-book-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  border: none;
  padding: 0;
}
.ds-book-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ds-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.ds-call-link:hover {
  color: var(--amber);
}

/* ---- Other Doctors Section ---- */
.other-docs-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.other-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.od-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(16, 71, 144, 0.08);
  box-shadow: 0 6px 28px rgba(11, 45, 94, 0.06);
  transition: all 0.4s ease;
  text-decoration: none;
  display: block;
}
.od-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 56px rgba(11, 45, 94, 0.13);
  border-color: rgba(250, 132, 34, 0.22);
}
.od-card:hover .od-photo img {
  transform: scale(1.06);
}
.od-card:hover .od-link {
  gap: 12px;
  color: var(--amber);
}

.od-photo {
  position: relative;
  overflow: hidden;
  background: #f0f4ff;
}
.od-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.od-avail {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--amber);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.od-info {
  padding: 20px 20px 18px;
}

.od-role {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 5px;
}

.od-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
  line-height: 1.25;
}

.od-qual {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}

.od-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.od-tags span {
  font-size: 10px;
  font-weight: 500;
  color: var(--navy);
  background: rgba(16, 71, 144, 0.06);
  border: 1px solid rgba(16, 71, 144, 0.1);
  border-radius: 50px;
  padding: 3px 9px;
}

.od-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s;
}

a.header-cart {
  font-size: 25px;
  color: rgba(24, 61, 176, 0.8392156863);
}

.gal-wraper img {
  aspect-ratio: 5/6;
  max-width: 236px;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment-form-cookies-consent {
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .ds-hero-grid {
    grid-template-columns: 380px 1fr;
    gap: 50px;
  }
  .ds-bio-grid {
    grid-template-columns: 1fr 290px;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  .ds-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  .ds-bio-grid {
    grid-template-columns: 1fr;
  }
  .ds-bio-sidebar {
    position: static;
  }
  .other-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu-custom .mega-menu-inner-wrapper .hd4 > .sub-menu {
    position: unset;
    left: unset;
    padding-left: 2px;
  }
  .mega-menu-custom #menu-header-menu {
    grid-template-columns: unset;
    flex-direction: column;
  }
  .mega-menu-custom .mega-menu-inner-wrapper .hd4.treatment > .sub-menu {
    transform: unset;
    grid-template-columns: unset;
  }
  .mega-menu-custom .mega-menu-inner-wrapper .hd4 > a:hover {
    color: #fff;
  }
}
@media (max-width: 768px) {
  .ds-hero {
    padding: 60px 0 48px;
  }
  .ds-bio-content {
    padding: 28px 24px;
  }
  .ds-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ds-actions .btn-primary,
  .ds-actions .btn-ghost {
    justify-content: center;
  }
  .ds-stats-row {
    flex-wrap: wrap;
  }
  .ds-stats-row .ds-stat {
    min-width: 33%;
    border-right: 1px solid rgba(16, 71, 144, 0.08);
    border-bottom: 1px solid rgba(16, 71, 144, 0.08);
  }
  .ds-stats-row .ds-stat:last-child {
    border-right: none;
  }
}
@media (max-width: 600px) {
  .other-docs-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .ds-card {
    padding: 22px 18px;
  }
  .header-inner {
    margin: 0 auto;
  }
  .site-header .right-header {
    gap: 14px;
  }
  .site-header .right-header .menu-toggle {
    width: 25px;
    font-size: 15px;
  }
  header-cart {
    font-size: 19px;
    color: rgba(24, 61, 176, 0.8392156863);
    display: flex;
    align-items: center;
  }
  .site-header .book-appointment {
    font-size: 12px;
    padding: 10px 6px 9px 6px;
  }
  .header-inner {
    padding: 0 14px;
  }
  .hero-img-frame {
    position: relative;
    padding-top: 82px;
  }
  .testi-tab {
    padding: 9px 14px;
    font-size: 12px;
  }
  .srv-inline-cta .btn-primary {
    margin-bottom: 10px;
  }
}
.page-content-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
}

.page-content-inner {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.06);
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}
.page-content-inner h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--heading);
  font-family: var(--font-display);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(16, 71, 144, 0.08);
}
.page-content-inner h2:first-child {
  margin-top: 0;
}
.page-content-inner h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-display);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--amber);
}
.page-content-inner h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
  font-family: var(--font-display);
  margin: 24px 0 10px;
}
.page-content-inner p {
  margin-bottom: 18px;
}
.page-content-inner p:last-child {
  margin-bottom: 0;
}
.page-content-inner a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content-inner a:hover {
  color: var(--amber);
}
.page-content-inner ul, .page-content-inner ol {
  padding-left: 26px;
  margin-bottom: 16px;
}
.page-content-inner ul li, .page-content-inner ol li {
  margin-bottom: 8px;
}
.page-content-inner ul li {
  position: relative;
}
.page-content-inner ul li:before {
  content: "\f00c";
  position: absolute;
  left: -20px;
  top: 0;
  color: var(--amber);
  font-family: "fontawesome";
}
.page-content-inner ul li::marker {
  color: var(--amber);
}
.page-content-inner img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  display: block;
}
.page-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
.page-content-inner table th {
  background: linear-gradient(90deg, #104790, #0a2e6a);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.page-content-inner table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: #555;
}
.page-content-inner table tr:last-child td {
  border-bottom: none;
}
.page-content-inner table tr:nth-child(even) td {
  background: #f7f9fc;
}
.page-content-inner blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  background: var(--amber-pale);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: #555;
}
.page-content-inner blockquote p {
  margin-bottom: 0;
}
.page-content-inner hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

@media (max-width: 991px) {
  .page-content-inner {
    padding: 20px;
  }
  .page-content-inner h2 {
    font-size: 24px;
  }
  .page-content-inner h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .page-content-inner {
    padding: 20px;
  }
  .page-content-inner h2 {
    font-size: 20px;
  }
  .page-content-inner h3 {
    font-size: 17px;
  }
  .page-content-inner h4 {
    font-size: 15px;
  }
}
.single-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.single-featured-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-featured-img .sidebar-post-date {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #ddd;
  color: #1c3189;
  padding: 6px 11px;
  font-size: 13px;
  border-radius: 10px;
  font-weight: 600;
}

.single-sidebar {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.06);
  position: sticky;
  top: 100px;
}

.single-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  font-family: var(--font-display);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--amber);
}

.sidebar-post-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.25s ease;
}
.sidebar-post-item:last-child {
  border-bottom: none;
}
.sidebar-post-item:hover .sidebar-post-title {
  color: var(--amber);
}
.sidebar-post-item:hover .sidebar-post-img img {
  transform: scale(1.05);
}

.sidebar-post-img {
  width: 70px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.sidebar-post-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.45;
  transition: color 0.25s ease;
}

.sidebar-post-date {
  font-size: 11px;
  color: #999;
}

.sidebar-empty {
  font-size: 14px;
  color: #999;
  margin: 0;
}

@media (max-width: 991px) {
  .single-featured-img img {
    height: 280px;
  }
  .single-sidebar {
    position: static;
  }
}
@media (max-width: 575px) {
  .single-featured-img img {
    height: 220px;
  }
}
.partners-section {
  padding: var(--section-py) 0;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 71, 144, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.partners-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.partner-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid transparent;
  box-shadow: 0 8px 30px rgba(11, 45, 94, 0.07);
  transition: all 0.4s ease;
  position: relative;
}
.partner-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 132, 34, 0.18);
  box-shadow: 0 20px 50px rgba(11, 45, 94, 0.13);
}
.partner-card:hover::after {
  transform: scaleX(1);
}
.partner-card:hover .partner-logo-wrap img {
  filter: grayscale(0%) opacity(1);
}

.partner-card-inner,
a.partner-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.partner-logo-wrap {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px 20px;
}
.partner-logo-wrap img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.4s ease;
  display: block;
}

.partner-logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 32px;
}

.partner-card-footer {
  width: 100%;
  padding: 16px 22px 22px;
  text-align: center;
  border-top: 1px solid rgba(11, 45, 94, 0.06);
  background: #f9fafc;
}
.partner-card-footer h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
  line-height: 1.3;
}
.partner-card-footer span {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .partner-logo-wrap {
    height: 110px;
    padding: 22px 24px 16px;
  }
}
@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .partner-card-footer h4 {
    font-size: 13px;
  }
}
.common-space {
  padding: var(--section-py) 0;
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  padding: 160px 0 70px;
  background-color: #071e40;
  background-image: radial-gradient(circle at 20% 50%, rgba(16, 71, 144, 0.92) 0%, rgba(7, 30, 64, 0.88) 60%), radial-gradient(circle at 80% 20%, rgba(250, 132, 34, 0.14) 0%, transparent 50%);
  background-size: cover;
  background-position: center;
}
.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 60px solid rgba(250, 132, 34, 0.08);
  pointer-events: none;
}
.breadcrumb-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 64, 0.15) 0%, rgba(7, 30, 64, 0.7) 100%);
  pointer-events: none;
}
.breadcrumb-wrapper .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.bred-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.bred-list a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.3s;
}
.bred-list a:hover {
  color: var(--amber);
}
.bred-list span,
.bred-list .breadcrumb_last {
  color: var(--amber);
  font-weight: 500;
}

.crs-page {
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}
.crs-page::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 71, 144, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.csr-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  background: linear-gradient(160deg, #104790 0%, #071e40 100%);
  box-shadow: 0 10px 40px rgba(11, 45, 94, 0.12);
  transition: all 0.45s ease;
}
.csr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(11, 45, 94, 0.24);
}
.csr-card:hover .card-hover-bg {
  opacity: 1;
  transform: scale(1);
}
.csr-card:hover .csr-read-more {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

.card-hover-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: all 0.7s ease;
  z-index: 0;
}

.csr-card-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 34px 34px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.csr-service-title {
  margin-top: auto;
  margin-bottom: 10px;
}
.csr-service-title a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.csr-service-title a:hover {
  color: var(--amber-light);
}

.csr-read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 20px;
  padding: 11px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}
.csr-read-more:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper {
    padding: 140px 0 56px;
  }
}
@media (max-width: 767px) {
  .csr-card-content-wrap {
    padding: 24px 24px 26px;
  }
  .csr-service-title a {
    font-size: 19px;
  }
  .csr-read-more {
    padding: 10px 22px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-wrapper {
    padding: 120px 0 44px;
  }
}
.shop-page {
  padding: var(--section-py) 0;
  background: #fff;
}

.shop-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
}

.woocommerce-products-header {
  padding: 70px 0 30px;
  text-align: center;
}

.custom-product-card__image {
  overflow: hidden;
}

.woocommerce-products-header__title.page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0;
}

.woocommerce::before, .woocommerce::after {
  content: "";
  display: table;
  clear: both;
}

.woocommerce-result-count {
  float: left;
  margin: 0 0 24px;
  padding-top: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.woocommerce-ordering {
  float: right;
  margin: 0 0 24px;
}
.woocommerce-ordering select.orderby {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 38px 10px 18px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23104790' stroke-width='1.6' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
}
.woocommerce-ordering select.orderby:focus, .woocommerce-ordering select.orderby:hover {
  border-color: var(--amber);
}

ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  clear: both;
}
ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
ul.products.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

li.product {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(16, 71, 144, 0.07);
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.05);
  padding-bottom: 22px;
  transition: all 0.4s ease;
}
li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 45, 94, 0.12);
  border-color: rgba(250, 132, 34, 0.2);
}
li.product:hover img {
  transform: scale(1.06);
}
li.product:hover .woocommerce-loop-product__title {
  color: var(--navy);
}
li.product a.woocommerce-loop-product__link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
li.product a.woocommerce-loop-product__link img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.onsale {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-height: 0;
  min-width: 0;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1;
  padding: 7px 14px;
  border-radius: 50px;
}

p.stock.out-of-stock {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: #212121;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 50px;
  margin: 0;
}

.star-rating {
  display: inline-block;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 13px;
  width: 5.3em;
  margin: 14px auto 0;
  font-family: star, "Font Awesome 6 Free", sans-serif;
}
.star-rating::before {
  content: "SSSSS";
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  color: #e2e2e2;
}
.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "SSSSS";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--amber);
}

.woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
  margin: 14px 20px 8px;
  transition: color 0.3s ease;
}

.price {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 20px 16px;
}
.price del {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #999;
  opacity: 0.8;
  margin-right: 8px;
  text-decoration: line-through;
}
.price ins {
  color: var(--amber);
  text-decoration: none;
}

.add_to_cart_button,
.product_type_simple a,
a.button.product_type_simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 20px;
  padding: 10px 26px;
  background: transparent;
  border: 1.5px solid rgba(16, 71, 144, 0.18);
  border-radius: 50px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.add_to_cart_button:hover,
.product_type_simple a:hover,
a.button.product_type_simple:hover {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(63, 176, 206, 0.35);
}
.add_to_cart_button.loading,
.product_type_simple a.loading,
a.button.product_type_simple.loading {
  opacity: 0.65;
  pointer-events: none;
}
.add_to_cart_button.added,
.product_type_simple a.added,
a.button.product_type_simple.added {
  display: none;
}

.added_to_cart {
  display: inline-block;
  margin: 10px 20px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.added_to_cart:hover {
  color: var(--navy);
}

.woocommerce-pagination {
  clear: both;
  text-align: center;
  margin-top: 8px;
}
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination li {
  display: flex;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 6px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(16, 71, 144, 0.14);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.woocommerce-pagination .page-numbers:hover, .woocommerce-pagination .page-numbers.current {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border-color: transparent;
}

.widget_product_categories,
.widget_layered_nav,
.widget_layered_nav_filters,
.widget_price_filter,
.widget_rating_filter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 26px 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(11, 45, 94, 0.05);
}
.widget_product_categories .widget-title,
.widget_product_categories h3,
.widget_layered_nav .widget-title,
.widget_layered_nav h3,
.widget_layered_nav_filters .widget-title,
.widget_layered_nav_filters h3,
.widget_price_filter .widget-title,
.widget_price_filter h3,
.widget_rating_filter .widget-title,
.widget_rating_filter h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amber);
}
.widget_product_categories ul,
.widget_layered_nav ul,
.widget_layered_nav_filters ul,
.widget_price_filter ul,
.widget_rating_filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_product_categories ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.widget_product_categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 6px;
  border-radius: 8px;
  font-size: 14px;
  color: #444;
  transition: all 0.25s ease;
}
.widget_product_categories li a:hover {
  color: var(--amber);
  background: rgba(250, 132, 34, 0.06);
  padding-left: 12px;
}
.widget_product_categories li.current-cat > a {
  color: var(--amber);
  font-weight: 600;
}
.widget_product_categories li .count {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(16, 71, 144, 0.08);
  padding: 2px 9px;
  border-radius: 50px;
}
.widget_product_categories ul.children {
  padding-left: 16px;
  margin: 4px 0 6px;
}

.widget_layered_nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.widget_layered_nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  font-size: 14px;
  color: #444;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.widget_layered_nav li a::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1.5px solid rgba(16, 71, 144, 0.25);
  transition: all 0.25s ease;
}
.widget_layered_nav li a:hover {
  color: var(--navy);
  background: rgba(16, 71, 144, 0.05);
}
.widget_layered_nav li a:hover::before {
  border-color: var(--amber);
}
.widget_layered_nav li.chosen a::before {
  background: var(--amber);
  border-color: var(--amber);
}
.widget_layered_nav .count {
  margin-left: auto;
  font-size: 11px;
  color: #999;
}

.widget_layered_nav_filters ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.widget_layered_nav_filters li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: var(--navy);
  padding: 6px 14px 6px 14px;
  border-radius: 50px;
  transition: background 0.25s ease;
}
.widget_layered_nav_filters li a:hover {
  background: var(--amber);
}

.widget_price_filter .price_slider {
  margin-bottom: 18px;
}
.widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}
.widget_price_filter .price_slider_amount .price_label {
  order: 1;
}
.widget_price_filter .price_slider_amount button[type=submit],
.widget_price_filter .price_slider_amount .button {
  order: 2;
  padding: 8px 20px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.widget_price_filter .price_slider_amount button[type=submit]:hover,
.widget_price_filter .price_slider_amount .button:hover {
  opacity: 0.88;
}
.widget_price_filter .ui-slider {
  position: relative;
  height: 5px;
  margin: 10px 7px 26px;
  background: rgba(16, 71, 144, 0.1);
  border-radius: 50px;
}
.widget_price_filter .ui-slider-range {
  position: absolute;
  top: 0;
  height: 100%;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  border-radius: 50px;
}
.widget_price_filter .ui-slider-handle {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  transform: translateY(-50%);
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(11, 45, 94, 0.25);
  transition: border-color 0.25s ease;
}
.widget_price_filter .ui-slider-handle:hover, .widget_price_filter .ui-slider-handle.ui-state-active {
  border-color: var(--amber);
}

.widget_rating_filter ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.widget_rating_filter li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  transition: color 0.25s ease;
}
.widget_rating_filter li a:hover {
  color: var(--amber);
}
.widget_rating_filter .star-rating {
  margin: 0;
}

@media (max-width: 1100px) {
  ul.products,
  ul.products.columns-4,
  ul.products.columns-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
}
@media (max-width: 767px) {
  ul.products,
  ul.products.columns-3,
  ul.products.columns-4,
  ul.products.columns-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .woocommerce-result-count,
  .woocommerce-ordering {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  .woocommerce-ordering select.orderby {
    width: 100%;
  }
  .widget_product_categories,
  .widget_layered_nav,
  .widget_layered_nav_filters,
  .widget_price_filter,
  .widget_rating_filter {
    padding: 22px 20px 24px;
  }
}
@media (max-width: 480px) {
  ul.products,
  ul.products.columns-2,
  ul.products.columns-3,
  ul.products.columns-4,
  ul.products.columns-5 {
    grid-template-columns: 1fr;
  }
  .woocommerce-products-header {
    padding: 50px 0 24px;
  }
}
.woocommerce .cart .button, .woocommerce .cart input.button {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
}
.woocommerce .cart .button:hover, .woocommerce .cart input.button:hover {
  background-color: #fa8422 !important;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt {
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover {
  background-color: #fa8422 !important;
}

.woocommerce-cart-form table.cart,
.woocommerce-cart-form table.shop_table.cart,
.woocommerce-cart-form table.woocommerce-cart-form__contents {
  width: 100%;
  display: block;
  border: none;
  background: transparent;
  box-shadow: none;
}
.woocommerce-cart-form table.cart thead,
.woocommerce-cart-form table.shop_table.cart thead,
.woocommerce-cart-form table.woocommerce-cart-form__contents thead {
  display: none;
}
.woocommerce-cart-form table.cart tbody,
.woocommerce-cart-form table.shop_table.cart tbody,
.woocommerce-cart-form table.woocommerce-cart-form__contents tbody {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.woocommerce-cart-form table.cart tr,
.woocommerce-cart-form table.shop_table.cart tr,
.woocommerce-cart-form table.woocommerce-cart-form__contents tr {
  display: block;
  background: transparent;
  border: none;
}
.woocommerce-cart-form table.cart tr.cart_item,
.woocommerce-cart-form table.cart tr.woocommerce-cart-form__cart-item,
.woocommerce-cart-form table.shop_table.cart tr.cart_item,
.woocommerce-cart-form table.shop_table.cart tr.woocommerce-cart-form__cart-item,
.woocommerce-cart-form table.woocommerce-cart-form__contents tr.cart_item,
.woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
  display: grid;
  grid-template-columns: 40px 90px 1fr 120px 150px 120px;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 4px 20px rgba(11, 45, 94, 0.05);
  transition: box-shadow 0.3s ease;
}
.woocommerce-cart-form table.cart tr.cart_item:hover,
.woocommerce-cart-form table.cart tr.woocommerce-cart-form__cart-item:hover,
.woocommerce-cart-form table.shop_table.cart tr.cart_item:hover,
.woocommerce-cart-form table.shop_table.cart tr.woocommerce-cart-form__cart-item:hover,
.woocommerce-cart-form table.woocommerce-cart-form__contents tr.cart_item:hover,
.woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item:hover {
  box-shadow: 0 12px 32px rgba(11, 45, 94, 0.1);
}
.woocommerce-cart-form table.cart td,
.woocommerce-cart-form table.shop_table.cart td,
.woocommerce-cart-form table.woocommerce-cart-form__contents td {
  border: none;
  padding: 0;
  background: transparent !important;
}

td.product-remove {
  text-align: center;
}
td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545 !important;
  font-size: 18px;
  line-height: 1;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
td.product-remove a.remove:hover {
  background: #dc3545;
  color: #fff !important;
  transform: rotate(90deg);
}

td.product-thumbnail a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
td.product-thumbnail img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
}

td.product-name a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.25s ease;
}
td.product-name a:hover {
  color: var(--amber);
}
td.product-name dl.variation,
td.product-name .wc-item-meta {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #999;
}
td.product-name dl.variation dt, td.product-name dl.variation dd,
td.product-name .wc-item-meta dt,
td.product-name .wc-item-meta dd {
  display: inline;
  margin: 0;
  font-weight: 400;
}
td.product-name .wc-item-meta li {
  margin-bottom: 2px;
}

td.product-price,
td.product-subtotal {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
td.product-price .woocommerce-Price-amount,
td.product-subtotal .woocommerce-Price-amount {
  color: inherit;
}

td.product-subtotal {
  color: var(--amber);
}

td.product-quantity {
  display: flex;
  justify-content: center;
}
td.product-quantity .quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}
td.product-quantity input.qty {
  width: 56px;
  border: none;
  background: transparent;
  text-align: center;
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  -moz-appearance: textfield;
}
td.product-quantity input.qty::-webkit-inner-spin-button, td.product-quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
td.product-quantity input.qty:focus {
  outline: none;
}

.woocommerce-cart-form table.cart tr:not(.cart_item):not(.woocommerce-cart-form__cart-item) {
  margin-top: 8px;
}

td.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.coupon label {
  display: none;
}
.coupon input#coupon_code,
.coupon input.input-text {
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  min-width: 200px;
  color: var(--text);
}
.coupon input#coupon_code:focus,
.coupon input.input-text:focus {
  outline: none;
  border-color: var(--amber);
}
.coupon button[name=apply_coupon] {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.coupon button[name=apply_coupon]:hover {
  background: var(--navy);
  color: #fff;
}

button[name=update_cart] {
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(63, 176, 206, 0.3);
  transition: all 0.3s ease;
}
button[name=update_cart]:hover:not(:disabled) {
  transform: translateY(-2px);
}
button[name=update_cart]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cart-collaterals {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

.cart_totals {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 10px 40px rgba(11, 45, 94, 0.08);
}
.cart_totals h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--amber);
}
.cart_totals table.shop_table {
  width: 100%;
  border: none;
  background: transparent;
}
.cart_totals table.shop_table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart_totals table.shop_table tr:last-child {
  border-bottom: none;
}
.cart_totals table.shop_table th, .cart_totals table.shop_table td {
  border: none;
  padding: 0;
  background: transparent !important;
  font-size: 14px;
}
.cart_totals table.shop_table th {
  font-weight: 500;
  color: #666;
  text-align: left;
}
.cart_totals table.shop_table td {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}
.cart_totals table.shop_table tr.order-total th, .cart_totals table.shop_table tr.order-total td {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
}
.cart_totals table.shop_table tr.order-total td {
  color: var(--amber);
}

.wc-proceed-to-checkout {
  margin-top: 24px;
}
.wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 50px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(63, 176, 206, 0.35);
  transition: all 0.3s ease;
}
.wc-proceed-to-checkout .checkout-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(63, 176, 206, 0.45);
  color: #fff;
}

.woocommerce-shipping-calculator {
  margin-top: 16px;
  font-size: 13px;
}
.woocommerce-shipping-calculator a.shipping-calculator-button {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.woocommerce-shipping-calculator a.shipping-calculator-button:hover {
  color: var(--amber);
}
.woocommerce-shipping-calculator .shipping-calculator-form {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce-shipping-calculator .shipping-calculator-form input, .woocommerce-shipping-calculator .shipping-calculator-form select {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
}
.woocommerce-shipping-calculator .shipping-calculator-form input:focus, .woocommerce-shipping-calculator .shipping-calculator-form select:focus {
  outline: none;
  border-color: var(--amber);
}
.woocommerce-shipping-calculator .shipping-calculator-form button {
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.woocommerce-shipping-calculator .shipping-calculator-form button:hover {
  background: var(--amber);
}

.cart-empty {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.return-to-shop {
  text-align: center;
}
.return-to-shop .button {
  display: inline-flex;
  padding: 14px 34px;
  border-radius: 50px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.return-to-shop .button:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .woocommerce-cart-form table.cart tr.cart_item,
  .woocommerce-cart-form table.cart tr.woocommerce-cart-form__cart-item {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 18px;
  }
  td.product-remove {
    position: absolute;
    top: 14px;
    right: 14px;
  }
  td.product-thumbnail {
    width: 72px;
    margin-right: 16px;
  }
  td.product-thumbnail img {
    width: 72px;
    height: 72px;
  }
  td.product-name {
    flex: 1;
    min-width: 140px;
    padding-right: 40px;
  }
  td.product-price,
  td.product-quantity,
  td.product-subtotal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-left: 88px;
    font-size: 13px;
  }
  td.product-price::before,
  td.product-quantity::before,
  td.product-subtotal::before {
    content: attr(data-title) ":";
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
  }
  td.product-quantity .quantity {
    margin-left: auto;
  }
  .cart-collaterals {
    justify-content: stretch;
  }
  .cart_totals {
    max-width: 100%;
    padding: 26px 22px;
  }
  .coupon {
    width: 100%;
  }
  .coupon input.input-text {
    flex: 1;
    min-width: 0;
  }
  td.actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.product-page {
  padding: var(--section-py) 0;
  background: #fff;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
}
.product-detail > .woocommerce-product-gallery,
.product-detail > .images,
.product-detail > .summary.entry-summary {
  flex: 1 1 400px;
  max-width: calc(50% - 25px);
}
.product-detail > .woocommerce-tabs,
.product-detail > .upsells.products,
.product-detail > .related.products {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 60px;
}

.woocommerce-product-gallery {
  position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(11, 45, 94, 0.08);
}
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.woocommerce-product-gallery .flex-control-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.woocommerce-product-gallery .flex-control-nav li {
  width: 76px;
  height: 76px;
}
.woocommerce-product-gallery .flex-control-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.woocommerce-product-gallery .flex-control-nav li img.flex-active {
  border-color: var(--amber);
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
  display: none;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: var(--navy);
}

.summary.entry-summary .product_title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 14px;
}
.summary.entry-summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.summary.entry-summary .woocommerce-product-rating .star-rating {
  margin: 0;
}
.summary.entry-summary .woocommerce-product-rating .woocommerce-review-link {
  font-size: 13px;
  color: #888;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.summary.entry-summary .woocommerce-product-rating .woocommerce-review-link:hover {
  color: var(--amber);
}
.summary.entry-summary .stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.summary.entry-summary .stock.in-stock {
  color: #22c55e;
}
.summary.entry-summary .stock.out-of-stock {
  color: #dc3545;
}
.summary.entry-summary p.price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  margin-left: 0;
}
.summary.entry-summary p.price del {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #999;
  opacity: 0.75;
  margin-right: 10px;
  text-decoration: line-through;
}
.summary.entry-summary p.price ins {
  color: var(--amber);
  text-decoration: none;
}
.summary.entry-summary .woocommerce-variation-price .price {
  font-size: 22px;
}
.summary.entry-summary .woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}
.summary.entry-summary .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
.summary.entry-summary form.cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.summary.entry-summary form.cart .quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}
.summary.entry-summary form.cart input.qty {
  width: 64px;
  border: none;
  background: transparent;
  text-align: center;
  padding: 14px 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
}
.summary.entry-summary form.cart input.qty:focus {
  outline: none;
}
.summary.entry-summary form.cart .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(63, 176, 206, 0.35);
  transition: all 0.3s ease;
}
.summary.entry-summary form.cart .single_add_to_cart_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(63, 176, 206, 0.45);
}
.summary.entry-summary form.cart .single_add_to_cart_button.disabled, .summary.entry-summary form.cart .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.summary.entry-summary table.variations {
  width: 100%;
  margin-bottom: 20px;
}
.summary.entry-summary table.variations tr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.summary.entry-summary table.variations th {
  width: 100px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}
.summary.entry-summary table.variations td {
  flex: 1;
}
.summary.entry-summary table.variations select {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  cursor: pointer;
}
.summary.entry-summary table.variations select:focus {
  outline: none;
  border-color: var(--amber);
}
.summary.entry-summary .reset_variations {
  display: inline-block;
  font-size: 12px;
  color: #999;
  text-decoration: underline;
  margin-bottom: 20px;
}
.summary.entry-summary .reset_variations:hover {
  color: var(--amber);
}
.summary.entry-summary .product_meta {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: #777;
}
.summary.entry-summary .product_meta > span {
  display: block;
  margin-bottom: 6px;
}
.summary.entry-summary .product_meta a {
  color: var(--navy);
}
.summary.entry-summary .product_meta a:hover {
  color: var(--amber);
}

.woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  border-bottom: 2px solid var(--border);
}
.woocommerce-tabs ul.tabs li {
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 14px 26px 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  border-radius: 50px 50px 0 0;
  transition: color 0.25s ease;
}
.woocommerce-tabs ul.tabs li:hover a {
  color: var(--navy);
}
.woocommerce-tabs ul.tabs li.active a {
  color: var(--navy);
}
.woocommerce-tabs ul.tabs li.active::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 26px;
  bottom: -2px;
  height: 2px;
  background: var(--amber);
}
.woocommerce-tabs .panel {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}
.woocommerce-tabs .panel h2 {
  margin-bottom: 16px;
}
.woocommerce-tabs table.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-tabs table.woocommerce-product-attributes th, .woocommerce-tabs table.woocommerce-product-attributes td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}
.woocommerce-tabs table.woocommerce-product-attributes th {
  width: 220px;
  color: var(--heading);
  font-weight: 600;
  background: #f7f9fc;
}
.woocommerce-tabs table.woocommerce-product-attributes td {
  color: #555;
}

.woocommerce-Tabs-panel--description h2 {
  color: #fa8422;
  font-size: 24px;
}
.woocommerce-Tabs-panel--description h3 {
  color: #fa8422;
}
.woocommerce-Tabs-panel--description ul {
  padding-left: 26px;
  margin-bottom: 16px;
}
.woocommerce-Tabs-panel--description ul li {
  position: relative;
  list-style: none;
}
.woocommerce-Tabs-panel--description ul li:before {
  content: "\f00c";
  position: absolute;
  left: -20px;
  top: 0;
  color: var(--amber);
  font-family: "fontawesome";
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

h3, h4, h5 {
  color: #0f4891;
}

#reviews .woocommerce-Reviews-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 24px;
}
#reviews .commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#reviews .review {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
#reviews .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}
#reviews .comment-text {
  flex: 1;
}
#reviews .comment-text .star-rating {
  margin: 0 0 6px;
}
#reviews .comment-text p.meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}
#reviews .comment-text p.meta strong {
  color: var(--heading);
}
#reviews .comment-text .description p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
#reviews #review_form_wrapper {
  background: #f7f9fc;
  border-radius: 20px;
  padding: 32px 30px;
}
#reviews #review_form_wrapper .comment-reply-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
}
#reviews #review_form_wrapper .comment-form-rating {
  margin-bottom: 16px;
}
#reviews #review_form_wrapper .comment-form-rating p.stars a {
  color: var(--amber);
}
#reviews #review_form_wrapper input,
#reviews #review_form_wrapper textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}
#reviews #review_form_wrapper input:focus,
#reviews #review_form_wrapper textarea:focus {
  outline: none;
  border-color: var(--amber);
}
#reviews #review_form_wrapper .form-submit input#submit {
  width: auto;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  background: transparent linear-gradient(90deg, #1e0b9b 0%, #07ccec 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#reviews #review_form_wrapper .form-submit input#submit:hover {
  transform: translateY(-2px);
}

.related.products > h2,
.upsells.products > h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  text-align: center;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .product-detail > .woocommerce-product-gallery,
  .product-detail > .images,
  .product-detail > .summary.entry-summary {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 767px) {
  .summary.entry-summary p.price {
    font-size: 22px;
  }
  .woocommerce-tabs ul.tabs li a {
    padding: 12px 18px;
    font-size: 13px;
  }
  .woocommerce-tabs table.woocommerce-product-attributes th {
    width: 140px;
  }
  #reviews .review {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */