/* ============================================================
   GET BACK PHYSIOTHERAPY — Main Stylesheet
   Brand Colors: Navy #1a3a5c | Cyan #00b4d8 | White #ffffff
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ---------- CSS Variables ---------- */
:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2440;
  --navy-mid: #1e4470;
  --cyan: #00b4d8;
  --cyan-light: #48cae4;
  --cyan-pale: #caf0f8;
  --white: #ffffff;
  --off-white: #f5fafd;
  --gray-100: #f0f4f8;
  --gray-200: #e2ecf4;
  --gray-400: #8fa8be;
  --gray-600: #4d6b85;
  --text-dark: #0e1f30;
  --text-body: #2d4a60;
  --bs-btn-hover-color: #00b4d8;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 58, 92, 0.14);
  --shadow-lg: 0 16px 48px rgba(26, 58, 92, 0.18);
  --shadow-cyan: 0 8px 32px rgba(0, 180, 216, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 50px 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.42rem, 2.5vw, 1.8rem);
  font-weight: 600;
}
h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

p,
li,
a {
  font-size: 1.1rem;
  line-height: 1.5;
}

.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ---------- Buttons ---------- */
.owl-carousel .owl-nav.disabled {
  display: block !important;
}
.owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.owl-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  border: none !important;
  color: var(--cyan) !important;
  font-size: 22px !important;
  transition: 0.3s;
}

.owl-nav button:hover {
  transform: translateY(-3px);
}

.owl-nav button span {
  line-height: 1;
}

.insurance-slider .owl-nav button span {
  line-height: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  background: var(--cyan-light);
  border-color: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.text-center {
  text-align: center;
}
.text-white {
  color: var(--white) !important;
}
.bg-navy {
  background: var(--navy);
}
.bg-off-white {
  background: var(--off-white);
}
.bg-cyan-pale {
  background: var(--cyan-pale);
}

/* ---------- Divider ---------- */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.section-divider.left {
  margin-left: 0;
}

.owl-nav span {
  font-size: 80px;
}
.owl-nav button {
  position: absolute;
  top: 40%;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: -40px;
}
.owl-nav button.owl-next {
  right: -40px;
}

/* ---------- NAVBAR ---------- */
/* Use .site-navbar to avoid Bootstrap .navbar class conflicts */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0;
  background: rgba(10, 26, 44, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.site-navbar.scrolled {
  background: rgba(15, 36, 64, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  transition: padding var(--transition);
}

/* .site-navbar.scrolled .navbar-inner {
  padding: 8px 24px;
} */

.navbar-logo img {
  height: 70px;
  width: auto;
  transition: height var(--transition);
  display: block;
}
.site-navbar.scrolled .navbar-logo img {
  height: 70px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 130px;
}

.site-nav-links a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.site-nav-links a:hover {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.09);
}

.shake-element {
  /* Syntax: animation: name duration timing-function iteration-count */
  animation: skew-y-shaking 1.2s ease-in-out infinite;
}
@keyframes skew-y-shaking {
  0% {
    transform: skewY(-15deg);
  }
  5% {
    transform: skewY(15deg);
  }
  10% {
    transform: skewY(-15deg);
  }
  15% {
    transform: skewY(15deg);
  }
  20% {
    transform: skewY(0deg);
  }
  100% {
    transform: skewY(0deg);
  }
}

.shake-element i {
  font-size: 30px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-phone {
  color: var(--cyan);
  font-weight: 600;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-phone:hover {
  color: var(--cyan-light);
}
.navbar-phone i {
  font-size: 30px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  z-index: 1100;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  pointer-events: none;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 26, 44, 0.88) 0%,
    rgba(26, 58, 92, 0.75) 50%,
    rgba(0, 100, 140, 0.55) 100%
  );
  z-index: 1;
}

/* Animated mesh on overlay */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 50%,
    rgba(0, 180, 216, 0.18) 0%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--cyan-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero-title span {
  color: var(--cyan);
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}

.hero-stat {
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1.2s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--navy-dark);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--cyan);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  display: block;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--gray-200);
}

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

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--cyan);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-cyan);
  min-width: 140px;
}

.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-content {
  padding-left: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cyan-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.about-feature h4 {
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.about-feature p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---------- CONDITIONS ---------- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.condition-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.condition-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.condition-card:hover::before {
  transform: scaleX(1);
}
.condition-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.condition-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cyan-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--cyan);
  font-size: 1.5rem;
  transition: var(--transition);
}

.condition-card:hover .condition-icon {
  background: var(--cyan);
  color: var(--white);
}

.condition-card h4 {
  color: var(--navy);
  margin-bottom: 0.4rem;
  min-height: 60px;
}
.condition-card h3 {
  height: 105px;
  place-content: center;
}
.condition-card p:not(:last-of-type) {
  color: var(--gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-img {
  aspect-ratio: 16/14;
  background: var(--gray-200);
  overflow: hidden;
  border-radius: 20px;
}

.service-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-body {
  padding: 1.5rem;
}

.service-tag {
  display: inline-block;
  background: var(--cyan-pale);
  color: var(--cyan);
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-body h3 {
  margin-bottom: 0.6rem;
}
.service-body p {
  color: var(--gray-600);
  line-height: 1.65;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;

  overflow: hidden;
  text-overflow: ellipsis;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-link:hover {
  gap: 0.6rem;
}

/* ---------- TEAM ---------- */

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.team-img {
  aspect-ratio: 1/1;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}

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

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

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 26, 44, 0.8) 0%,
    transparent 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 0.5rem;
}
.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.team-body {
  padding: 1.5rem;
}
.team-body h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}
.team-spec {
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.team-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.team-qual {
  background: var(--gray-100);
  color: var(--navy);
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-weight: 500;
}
.team-body p {
  font-size: 1.1rem !important;
}
/* 88888888888888888888888 */
.team-slider .owl-stage {
  display: flex;
  padding: 10px 0;
}

.team-slider .owl-item {
  display: flex;
  height: auto;
}

.team-slider .team-card {
  width: 100%;
  height: 100%;
  margin: 10px;
}

/* Prevent card shadow clipping */
.team-slider .owl-stage-outer {
  padding: 10px 0 20px;
}

/* Navigation */
.team-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.team-slider .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  border: none !important;
  background: var(--cyan) !important;
  color: #fff !important;
  font-size: 33px !important;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-slider .owl-nav button:hover {
  transform: translateY(-3px);
}

.team-slider .owl-nav button span {
  line-height: 1;
}

/* Dots */
.team-slider .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.team-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: block;
  border-radius: 50%;
  background: #ddd;
}

.team-slider .owl-dot.active span {
  background: var(--cyan);
}
/* ---------- PROCESS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 0 0 6px var(--cyan-pale);
  transition: var(--transition);
}

.process-step:hover .process-num {
  background: var(--cyan);
  color: var(--white);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.process-step p {
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-cyan);
  margin-inline: auto;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.why-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

/* ---------- TESTIMONIALS ---------- */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--cyan-pale);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #f9a825;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.3rem;
}
.testimonial-role {
  font-size: 1.1rem;
  color: var(--gray-600);
}
.testimonial-badge {
  margin-left: auto;
  background: var(--cyan-pale);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.testimonials-slider .owl-stage-outer {
  padding: 10px 0 20px;
}

.testimonials-slider .owl-stage {
  display: flex;
}

.testimonials-slider .owl-item {
  display: flex;
  height: auto;
}

.testimonials-slider .testimonial-card {
  width: 100%;
  height: 100%;
  margin: 10px;
}

/* Navigation */
.testimonials-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

/*.testimonials-slider .owl-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  border: none !important;
  background: var(--cyan) !important;
  color: #fff !important;
  font-size: 22px !important;
  transition: 0.3s;
}

.testimonials-slider .owl-nav button:hover {
  transform: translateY(-3px);
}

.testimonials-slider .owl-nav button span {
  line-height: 1;
}*/

/* Dots */
.testimonials-slider .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.testimonials-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ddd;
  border-radius: 50%;
  display: block;
}

.testimonials-slider .owl-dot.active span {
  background: var(--cyan);
}
/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery-item:not(:nth-child(1)):not(:nth-child(5)) {
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1.5px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--cyan);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--cyan);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 1.4rem;
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-200);
}

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

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

.blog-body {
  padding: 1.5rem;
}

.blog-cat {
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  margin-bottom: 0.6rem;
  line-height: 1.4;
  font-size: 1.5rem;
  min-height: 100px;
  overflow: hidden;
}
.blog-body p {
  color: var(--gray-600);
  line-height: 1.65;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---------- BOOKING CTA ---------- */
.booking-cta {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-mid) 50%,
    var(--cyan) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.booking-cta::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.booking-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.booking-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.booking-form-inline {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-form-inline input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.booking-form-inline input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.booking-form-inline input:focus {
  border-color: var(--white);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--cyan-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.contact-info-item p {
  color: var(--gray-600);
  line-height: 1.65;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  resize: none;
}

.form-control:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
  background: var(--white);
}

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

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ---------- INSURANCE ---------- */
.insurance-logo {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  height: 110px;

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

  padding: 20px;
  transition: 0.4s ease;
}

.insurance-logo img {
  max-width: 140px;
  max-height: 55px;
  width: auto;
  height: auto;

  /* filter: grayscale(100%); */
  /* opacity: 0.75; */

  transition: 0.4s ease;
}

.insurance-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.insurance-logo:hover img {
  /* filter: grayscale(0%); */
  opacity: 1;
  transform: scale(1.08);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  height: 85px;
  margin-bottom: 1.25rem;
  border-radius: 20px;
}

.footer-desc {
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
  /* display: inline-block !important; */
}
.footer-links a {
  font-size: 1.1rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--cyan);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}
.footer-contact-item svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  transition: color var(--transition);
}
.footer-bottom-links a:hover,
.footer-bottom span a.text-white:hover {
  color: var(--cyan) !important;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-green 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

/* ---------- SCROLL TO TOP ---------- */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: none;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover {
  background: var(--cyan);
}

/* ---------- MOBILE MENU ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.65rem 2.5rem;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  text-decoration: none;
  width: 260px;
  text-align: center;
}

.mobile-nav a:hover {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
/*  */
.navbar-logo {
  position: relative;
  padding-block: 10px;
}
.site-navbar .navbar-logo::after {
  position: absolute;
  content: "";
  width: 500px;
  /* height: 98px; */
  background: #fff;
  right: -40px;
  bottom: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
}

/* location */

.location-slider .service-card {
  overflow: hidden;
  transition: 0.4s ease;
}

.location-slider .service-img {
  overflow: hidden;
}

.location-slider .service-img img {
  transition: transform 0.6s ease;
}

.location-slider .service-card:hover img {
  transform: scale(1.08);
}

.location-slider .service-card:hover {
  transform: translateY(-8px);
}

/* Equal height */
.location-slider .owl-stage {
  display: flex;
}

.location-slider .owl-item {
  display: flex;
}

.location-slider .service-card {
  width: 100%;
}
.owl-carousel.owl-drag .owl-item {
  margin-block: 20px;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .site-nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar-phone {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-badge {
    right: 12px;
    bottom: -16px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 50px 0;
  }

  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-num {
    font-size: 2rem;
  }
  .stat-card {
    padding: 0rem;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}
/* .about us page */
.page-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 47, 0.9) 0%,
    rgba(10, 25, 47, 0.75) 35%,
    rgba(10, 25, 47, 0.4) 100%
  );
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-content {
  max-width: 700px;
  color: #fff;
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 207, 255, 0.4);
  background: rgba(0, 207, 255, 0.1);
  color: #00cfff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.page-banner h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--white);
}

.page-banner h1 span {
  color: #00cfff;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #00cfff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.condition_page .condition-content {
  padding: 15px;
  /* 	height: 250px; */
  place-content: center;
  display: flex;
  flex-direction: column;
}
.conditions-section.condition_page.services_page .condition-content {
  /* 	height: 255px; */
}
.conditions-section.condition_page.services_page .condition-content > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 991px) {
  .page-banner {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 75px;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }
}
.object-position-top {
  object-position: top;
}
.object-position-left {
  object-position: left;
}
.text-rgb {
  color: rgba(255, 255, 255, 0.7) !important;
}
.why-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}

.why-title span {
  display: block;
  color: var(--cyan);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf3f8;
}

.icon-circle {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #f3f8fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 28px;
}

.why-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.circle-border {
  position: absolute;
  inset: 0;
  border: 14px solid var(--cyan);
  border-radius: 50%;
}

.why-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.recovery-card {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.recovery-card img {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  margin-top: -60px;
}

.recovery-card span {
  color: var(--cyan);
  font-weight: 700;
}

.stats-bar {
  margin-top: 80px;
  background: #fff;
  border-radius: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stat-box {
  padding: 30px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

.stat-box:last-child {
  border-right: none;
}
/* condition page  */
.conditions-section {
  background: var(--off-white);
}

.condition_page .condition-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  height: auto;
  box-shadow: var(--shadow-md);
  transition: 0.45s;
  padding: 0px;
}

.condition-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.condition-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-bottom-left-radius: 36%;
}

.condition-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.8s;
}

.condition-card:hover .condition-image img {
  transform: scale(1.08);
}
.condition_page .condition-icon {
  position: absolute;
  left: 20px;
  top: 43%;
}
/* Curved white section */

/* .condition-image::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -80px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
} */

/* Floating Icon */

.details_page .condition-icon {
  position: absolute;
  left: 28px;
  top: 225px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--cyan);
  z-index: 5;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.details_page .condition-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  display: block;
  margin-bottom: 18px;
}

.details_page .condition-content h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 8px;
  position: relative;
}

.details_page .condition-content h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--cyan);
  border-radius: 10px;
  margin-top: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.details_page .condition-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.details_page a .condition-link {
  isplay: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
}

.details_page .condition-link i {
  transition: 0.3s;
}

.details_page .condition-link:hover i {
  transform: translateX(8px);
}
/* condition details page */

.injury-details {
  background: #fff;
}

.injury-hero {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
}

.injury-hero img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.injury-category {
  padding: 10px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: #fff;
  font-weight: 600;
  margin-bottom: 28px;
  font-size: 20px;
}

.injury-header h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.injury-lead {
  font-size: 20px;
  line-height: 1.8;
  color: #6b7280;
}

.injury-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fact-item {
  padding: 25px;
  border-radius: 20px;
  background: #f8fafc;
}

.fact-item span {
  display: block;
  color: #6b7280;
  margin-bottom: 8px;
}

.fact-item strong {
  font-size: 18px;
}

.injury-section {
  margin-top: 20px;
}

.injury-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.injury-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 35px;
  background: #0d6efd;
  border-radius: 10px;
}

.injury-section p {
  color: #555;
  line-height: 1.9;
  font-size: 19px;
}

.injury-list {
  padding-left: 20px;
}

.injury-list li {
  margin-bottom: 8px;
  font-size: 19px;
  color: #555;
}
.injury-sidebar {
  position: sticky;
  top: 95px;
  box-shadow: 0 3px 10px rgba(64, 89, 103, 0.504);
  padding: 10px 15px;
  border-radius: 20px;
}

.injury-sidebar-heading {
  margin-bottom: 25px;
}

.injury-sidebar-heading h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.injury-link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 22px;
  border: 1px solid #edf0f5;
  overflow: hidden;

  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.injury-link-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #0d6efd;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
}

.injury-thumb {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 18px;
  overflow: hidden;
}

.injury-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.injury-info {
  flex: 1;
}

.injury-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.injury-info p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.injury-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f3f5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: 0.4s;
  font-size: 11px;
}

.injury-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 25px 60px rgba(13, 110, 253, 0.15);
}

.injury-link-card:hover::before {
  transform: scaleY(1);
}

.injury-link-card:hover .injury-thumb img {
  transform: scale(1.12);
}

.injury-link-card:hover .injury-arrow {
  background: #0d6efd;
  color: #fff;
  transform: translateX(5px);
}

.injury-link-card::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(
    circle,
    rgba(13, 110, 253, 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: 0.5s;
}

.injury-link-card:hover::after {
  opacity: 1;
}

.injury-link-card > * {
  position: relative;
  z-index: 2;
}
.details_page .injury-list {
  list-style: disc;
  list-style-position: inside;
}
.details_page .injury-list li {
}
.details_page .fact-item {
  background: linear-gradient(135deg, var(--navy), var(--cyan)) !important;
  padding: 20px;
}
.fact-item span {
  color: var(--cyan-light);
  font-weight: 500;
}
.fact-item strong {
  color: var(--white);
  font-weight: 600;
}
.details_page .injury-link-card:hover .injury-arrow {
  background: var(--cyan);
  color: rgb(255, 255, 255);
  transform: translateX(5px);
}
/* extra slider */
.treatment-showcase-section {
  background: #dfdfdf;
}

.treatment-showcase-tag {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.treatment-showcase-header {
  /* position: absolute;
  top: 0;
  left: 0;
  bottom: 0; */
  /* background: linear-gradient(to right, #000, #0e1f30db); */
  /* padding-right: 20px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.treatment-showcase-header h4 {
  font-size: 22px;
  font-weight: 700;
}

.treatment-showcase-card {
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  border-radius: 24px;
  padding: 10px;
  border: 1px solid #edf2f7;
  transition: 0.4s;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 5px 12px rgba(127, 154, 249, 0.4);
}

.treatment-showcase-image {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
}

.treatment-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.treatment-showcase-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.treatment-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.446);
}

.treatment-showcase-card:hover .treatment-showcase-image img {
  transform: scale(1.1);
}
/* team listing page */
/*==============================================
    GBP TEAM SECTION
==============================================*/

.gbp-team-section {
  position: relative;
  padding: 80px 0;
  background: #f7fbff;
}

/* Section Title */

.gbp-sec-title {
  margin-bottom: 60px;
}

.gbp-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #2da9ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.gbp-sec-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.gbp-sec-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  line-height: 30px;
}

/* Team Card */

.gbp-team-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.gbp-team-card:hover {
  transform: translateY(-10px);
}

.gbp-team-image {
  overflow: hidden;
  height: auto;
}

.gbp-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gbp-team-card:hover .gbp-team-image img {
  transform: scale(1.08);
}

/* Content */

.gbp-team-content {
  padding: 30px;
  text-align: center;
}

.gbp-team-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.gbp-team-content span {
  display: block;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Button */

.gbp-team-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--cyan);
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gbp-team-card:hover .gbp-team-btn {
  background: var(--navy-dark);
}

/* Responsive */

@media (max-width: 991px) {
  .gbp-sec-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .gbp-team-section {
    padding: 80px 0;
  }

  .gbp-sec-title h2 {
    font-size: 32px;
  }

  .gbp-team-image img {
    height: 360px;
  }
}
/*=================================
    TEAM DETAILS SECTION
==================================*/

.gbp-team-details-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to bottom, #f7fbff, #ffffff);
  overflow: hidden;
}

/* Image Wrapper */

.gbp-team-details-image-wrapper {
  position: relative;
}

.gbp-team-details-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.gbp-team-details-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/* Experience Box */

.gbp-team-exp-box {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: #fff;
  padding: 30px;
  border-radius: 24px;
  min-width: 220px;
  box-shadow: 0 15px 40px rgba(45, 169, 255, 0.3);
  place-content: center;
}

.gbp-team-exp-box h3 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--cyan);
}

.gbp-team-exp-box span {
  font-size: 16px;
  opacity: 0.9;
}

/* Content */

.gbp-team-details-content {
  padding-left: 30px;
}

.gbp-team-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: rgba(45, 167, 255, 0.252);
  color: var(--cyan);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.gbp-team-details-content h2 {
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.gbp-team-desc {
  font-size: 19px;
  line-height: 32px;
  color: #000;
}

/* Info Card */

.gbp-info-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  place-content: center;
}

.gbp-info-card:hover {
  transform: translateY(-5px);
}

.gbp-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cyan);
}

.gbp-info-card p {
  margin: 0;
  color: #fff;
  line-height: 28px;
}

/* About */

.gbp-team-about {
  margin-top: 50px;
}

.gbp-team-about h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gbp-team-about p {
  color: #000;
  font-size: 19px;
}

/* Buttons */

.gbp-team-action {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 45px;
}

.gbp-primary-btn,
.gbp-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gbp-primary-btn {
  background: var(--cyan);
  color: #fff;
}

.gbp-primary-btn:hover {
  background: var(--navy-dark);
  color: #fff;
}

.gbp-outline-btn {
  border: 1px solid #dbe8f3;
  color: #fff;
  background: var(--navy-dark);
}

.gbp-outline-btn:hover {
  background: var(--cyan);
  border-color: #111;
  color: #fff;
}

/* Responsive */

@media (max-width: 1199px) {
  .gbp-team-details-content h2 {
    font-size: 48px;
  }

  .gbp-team-details-image img {
    height: 620px;
  }
}

@media (max-width: 991px) {
  .gbp-team-details-content {
    padding-left: 0;
  }

  .gbp-team-details-image img {
    height: auto;
  }

  .gbp-team-details-content h2 {
    font-size: 42px;
  }

  .gbp-team-exp-box {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .gbp-team-details-section {
    padding: 80px 0;
  }

  .gbp-team-details-content h2 {
    font-size: 34px;
  }

  .gbp-team-about h3 {
    font-size: 26px;
  }

  .gbp-team-action {
    flex-direction: column;
  }

  .gbp-primary-btn,
  .gbp-outline-btn {
    width: 100%;
  }

  .gbp-team-exp-box {
    padding: 20px;
    min-width: 180px;
  }

  .gbp-team-exp-box h3 {
    font-size: 38px;
  }
}
/*=================================
    TESTIMONIAL SECTION
==================================*/

.gbp-testimonial-section {
  position: relative;
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  overflow: hidden;
}

/* Title */

.gbp-testimonial-title {
  margin-bottom: 70px;
}

.gbp-subtitle {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gbp-testimonial-title h2 {
  font-size: 52px;
  font-family: var(--font-display);
  color: var(--text-dark);
  margin: 0;
}

/* Card */

.gbp-testimonial-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 100px 40px 45px;
  text-align: center;
  box-shadow: var(--shadow-md);
  /* overflow: hidden; */
  transition: var(--transition);
  height: 100%;
  z-index: 1;
}

.gbp-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Top Shape */

.gbp-testimonial-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 90px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 0 0 80px 80px;
}

/* Profile */

.gbp-testimonial-profile {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 6px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gbp-testimonial-profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cyan);
}

/* Rating */

.gbp-testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  position: relative;
  top: -8px;
}

.gbp-testimonial-rating i {
  color: #fab81e;
  font-size: 14px;
}

/* Info */

.gbp-testimonial-card h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.gbp-testimonial-card span {
  display: block;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Text */

.gbp-testimonial-card p {
  color: #000;
  line-height: 32px;
  font-size: 19px;
  margin: 0;
}

/* Quote Icon */

.gbp-quote-icon {
  position: absolute;
  bottom: 25px;
  font-size: 40px;
  color: var(--cyan-light);
  opacity: 0.25;
}

.gbp-quote-icon.left {
  left: 30px;
}

.gbp-quote-icon.right {
  right: 30px;
}

/* Responsive */

@media (max-width: 991px) {
  .gbp-testimonial-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .gbp-testimonial-section {
    padding: 80px 0;
  }

  .gbp-testimonial-title {
    margin-bottom: 50px;
  }

  .gbp-testimonial-title h2 {
    font-size: 34px;
  }

  .gbp-testimonial-card {
    padding: 95px 25px 40px;
  }

  .gbp-testimonial-card h3 {
    font-size: 24px;
  }

  .gbp-testimonial-card p {
    line-height: 30px;
  }
}
/*=================================
    FAQ HERO SECTION
==================================*/

.gbp-faq-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--white);
  z-index: 1;
}

/* Animated Shapes */

.gbp-faq-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.08;
  animation: floatAnimation 8s infinite ease-in-out;
}

.shape-one {
  width: 320px;
  height: 320px;
  background: var(--cyan);
  top: -120px;
  left: -100px;
}

.shape-two {
  width: 240px;
  height: 240px;
  background: var(--navy);
  bottom: -80px;
  right: -60px;
  animation-delay: 2s;
}

.shape-three {
  width: 140px;
  height: 140px;
  background: var(--cyan-light);
  top: 120px;
  right: 18%;
  animation-delay: 1s;
}

/* Animation */

@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(8deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Content */

.gbp-faq-hero-content {
  position: relative;
  z-index: 2;
}

.gbp-faq-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.12);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.gbp-faq-hero-content h2 {
  line-height: 1.05em;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: var(--font-display);
}

.gbp-faq-hero-content p {
  max-width: 650px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 40px;
}

/* Buttons */

.gbp-faq-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.gbp-primary-btn,
.gbp-outline-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
}

.gbp-primary-btn {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  color: var(--white);
  box-shadow: var(--shadow-cyan);
}

.gbp-primary-btn:hover {
  transform: translateY(-4px);
  color: var(--white);
}

.gbp-outline-btn {
  border: 1px solid var(--gray-200);
  color: var(--text-dark);
  background: var(--white);
}

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

/* Floating Card */

.gbp-faq-floating-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  animation: cardFloat 5s infinite ease-in-out;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Icon */

.gbp-faq-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow-cyan);
}

.gbp-faq-icon i {
  font-size: 34px;
  color: var(--white);
}

/* Card Content */

.gbp-faq-floating-card h3 {
  color: var(--text-dark);
  font-size: 34px;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.gbp-faq-floating-card p {
  color: var(--text-body);
  line-height: 32px;
  margin-bottom: 35px;
}

/* Users */

.gbp-faq-users {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gbp-user {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  margin-right: -12px;
  box-shadow: var(--shadow-sm);
}

.gbp-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gbp-faq-users span {
  margin-left: 24px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 1199px) {
  .gbp-faq-hero-content h1 {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .gbp-faq-hero {
    padding: 150px 0 100px;
  }

  .gbp-faq-floating-card {
    margin-top: 50px;
  }

  .gbp-faq-hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .gbp-faq-hero {
    padding: 130px 0 80px;
  }

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

  .gbp-faq-hero-content p {
    font-size: 16px;
    line-height: 30px;
  }

  .gbp-faq-floating-card {
    padding: 40px 25px;
  }

  .gbp-faq-floating-card h3 {
    font-size: 28px;
  }

  .gbp-faq-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .gbp-primary-btn,
  .gbp-outline-btn {
    width: 100%;
  }
}
/*=================================
    FAQ ACCORDION SECTION
==================================*/

.gbp-faq-section {
  position: relative;
  padding: 80px 0;
  background: var(--off-white);
}

/* Title */

.gbp-faq-sec-title {
  margin-bottom: 70px;
}

.gbp-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gbp-faq-sec-title h2 {
  line-height: 1.5;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.gbp-faq-sec-title p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 32px;
  max-width: 700px;
  margin: 0 auto;
}

/* Accordion */

.gbp-faq-accordion {
  position: relative;
}

/* Item */

.gbp-faq-item {
  border: 0;
  border-radius: 24px !important;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 15px;
  transition: var(--transition);
}

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

/* Button */

.gbp-faq-btn {
  position: relative;
  padding: 30px 80px 30px 35px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  box-shadow: none !important;
  border: 0;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy-mid) 100%);
  background-size: 200% 200%;
  background-position: left center;
  transition: var(--transition);
}

.gbp-faq-btn:not(.collapsed) {
  background-position: right center;
  color: var(--white);
}

/* Remove Bootstrap Icon */

.gbp-faq-btn::after {
  content: "+";
  position: absolute;
  right: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  color: var(--cyan);
  font-size: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none !important;
  transition: var(--transition);
  background-image: none !important;
}

.gbp-faq-btn:not(.collapsed)::after {
  content: "−";
  background: var(--cyan);
  color: var(--white);
}

/* Body */

.gbp-faq-body {
  padding: 15px 35px;
  color: #000;
  font-size: 19px;
  line-height: 32px;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.176),
    rgba(97, 97, 238, 0.471)
  );
  place-content: center;
}

/* Remove Default */

.accordion-button:focus {
  border: 0;
  box-shadow: none;
}

/* Responsive */

@media (max-width: 991px) {
  .gbp-faq-sec-title h2 {
    font-size: 46px;
  }

  .gbp-faq-btn {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .gbp-faq-section {
    padding: 80px 0;
  }

  .gbp-faq-sec-title {
    margin-bottom: 50px;
  }

  .gbp-faq-sec-title h2 {
    font-size: 34px;
  }

  .gbp-faq-btn {
    padding: 24px 70px 24px 24px;
    font-size: 17px;
  }

  .gbp-faq-body {
    padding: 0 24px 28px;
    line-height: 30px;
  }

  .gbp-faq-btn::after {
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}
/*=================================
    CONTACT HERO SECTION
==================================*/

.gbp-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--white);
  z-index: 1;
}

/* Shapes */

.gbp-contact-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.08;
  animation: gbpFloat 8s infinite ease-in-out;
}

.shape-one {
  width: 320px;
  height: 320px;
  background: var(--cyan);
  top: -120px;
  left: -100px;
}

.shape-two {
  width: 240px;
  height: 240px;
  background: var(--navy);
  bottom: -80px;
  right: -60px;
  animation-delay: 2s;
}

.shape-three {
  width: 140px;
  height: 140px;
  background: var(--cyan-light);
  top: 120px;
  right: 18%;
  animation-delay: 1s;
}

@keyframes gbpFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(8deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Content */

.gbp-contact-content {
  position: relative;
  z-index: 2;
}

.gbp-contact-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.12);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.gbp-contact-content p {
  color: var(--text-body);
  font-size: 19px;
  line-height: 34px;
  margin-bottom: 40px;
}

/* Buttons */

.gbp-contact-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Right Side Cards */

.gbp-contact-info-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card */

.gbp-contact-info-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  height: 135px;
}

.gbp-contact-info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--navy));
}

.gbp-contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.active-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}
.gbp-contact-info {
  border-bottom-right-radius: 30rem;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 15px;
  padding-right: 80px;
  place-content: center;
}

.active-card .gbp-contact-info h3,
.active-card .gbp-contact-info span,
.active-card .gbp-contact-info p {
  color: var(--white);
}

/* Icon */

.gbp-contact-icon {
  position: absolute;
  right: 12px;
  bottom: 5px;
  z-index: 3;
}

.gbp-contact-icon i {
  font-size: 30px;
  color: var(--white);
}
.gbp-contact-info-card:hover .fa-phone-alt {
  animation: fa-shake 1.5s ease infinite;
}
.gbp-contact-info-card:hover .fa-envelope {
  animation: fa-bounce 1.5s ease infinite;
}

.gbp-contact-info-card:hover .fa-map-marker-alt {
  animation: fa-beat 1.5s ease infinite;
}
/* Info */

.gbp-contact-info span {
  display: inline-block;
  color: var(--cyan);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gbp-contact-info h5 {
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-display);
  word-break: break-word;
}

.gbp-contact-info p {
  margin: 0;
  color: var(--text-body);
  line-height: 30px;
}
.gbp-contact-info:has(a[href^="mailto:"]) h5 {
  font-size: 0.9rem;
}
/* Responsive */

@media (max-width: 1199px) {
  .gbp-contact-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .gbp-contact-hero {
    padding: 150px 0 100px;
  }

  .gbp-contact-content h1 {
    font-size: 48px;
  }
  .gbp-contact-info-card {
    height: 252px;
  }
  .gbp-contact-info {
    border-bottom-right-radius: 11rem;
    padding-right: 80px;
    place-content: center;
  }
}

@media (max-width: 767px) {
  .gbp-contact-hero {
    padding: 120px 0 80px;
  }

  .gbp-contact-content h1 {
    font-size: 38px;
  }

  .gbp-contact-content p {
    font-size: 16px;
    line-height: 30px;
  }

  .gbp-contact-info-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .gbp-contact-info h3 {
    font-size: 24px;
  }

  .gbp-contact-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .gbp-primary-btn,
  .gbp-outline-btn {
    width: 100%;
  }
}
/*=================================
    VISIT MAP SECTION
==================================*/

.visit_map {
  position: relative;
  background: var(--off-white);
}

/* Map */

.visit_map_iframe {
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit_map_iframe iframe {
  width: 100%;
  height: 100%;
}

/* Form Wrapper */

.visit_form_wrapper {
  position: relative;
  background: var(--white);
  padding: 60px;
  height: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Top Gradient */

.visit_form_wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
}

/* Heading */

.map_text {
  margin-bottom: 40px;
}

.visit_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.map_text h2 {
  font-size: 52px;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.map_text p {
  color: var(--text-body);
  line-height: 32px;
  margin: 0;
  font-size: 17px;
}

/* Form */

.form-group {
  margin-bottom: 24px;
}
textarea.form-control {
  height: 100px;
}

.visit_form input,
.visit_form textarea,
.visit_form select {
  width: 100%;
  height: 55px;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  background: linear-gradient(135deg, var(--gray-600), var(--navy-mid));
  padding: 0 24px;
  font-size: 18px;
  color: #fff;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.visit_form input::placeholder,
.visit_form textarea::placeholder,
.visit_form select::placeholder {
  font-size: 18px;
  color: #fff;
}
.visit_form textarea {
  height: 80px;
  resize: none;
  padding-top: 20px;
}

.visit_form input:focus,
.visit_form textarea:focus,
.visit_form select:focus,
.visit_form input:active,
.visit_form textarea:active,
.visit_form select:active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.08);
  outline: none;
  box-shadow: var(--shadow-cyan);
  border: none;
  color: var(--cyan);
}

/* Button */

.visit_submit_btn {
  position: relative;
  border: 0;
  outline: none;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  color: var(--white);
  padding: 18px 34px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-cyan);
}

.visit_submit_btn:hover {
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 991px) {
  .visit_map_iframe {
    border-radius: 32px 32px 0 0;
    min-height: 450px;
  }

  .visit_form_wrapper {
    border-radius: 0 0 32px 32px;
  }

  .map_text h2 {
    font-size: 42px;
  }
  .gbp-team-details-image {
    width: 75%;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .visit_form_wrapper {
    padding: 40px 25px;
  }

  .map_text h2 {
    font-size: 34px;
  }

  .visit_form input,
  .visit_form textarea {
    height: 58px;
    border-radius: 14px;
  }

  .visit_form textarea {
    height: 160px;
  }

  .visit_submit_btn {
    width: 100%;
  }
}
/* ==================================
blogs page */
.blog-listing {
  background: #f7fbfe;
}

.section-title .sub-title {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(70, 184, 242, 0.12);
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-card {
  display: block;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(70, 184, 242, 0.15);
}

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

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

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

.blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--cyan);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.blog-content {
  padding: 28px;
}

.blog-date {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.blog-content h4 {
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 700;
  transition: 0.3s;
}

.blog-card:hover h4 {
  color: var(--cyan);
}

.blog-content p {
  color: #000;
  margin-bottom: 20px;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 700;
}

.read-more i {
  transition: 0.3s;
}

.blog-card:hover .read-more i {
  transform: translateX(6px);
}
/* sidebar cta */
.sidebar-cta-card {
  background: linear-gradient(to bottom, var(--cyan), var(--navy));
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 120px;
  overflow: hidden;
}

.sidebar-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
}

.cta-logo {
  text-align: center;
  margin-bottom: 25px;
}

.cta-logo img {
  max-width: 220px;
}

.cta-content {
  text-align: center;
  margin-bottom: 30px;
}

.cta-content h3 {
  font-family: var(--font-display);
  color: var(--navy-dark);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0;
}

.cta-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  margin-bottom: 15px;
  transition: var(--transition);
}

.info-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cyan-pale);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item span {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 2px;
  transition: var(--transition);
}

.info-item h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.info-item:hover .icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.info-item:hover span,
.info-item:hover h6 {
  color: var(--white);
}

.appointment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-cyan);
  transition: var(--transition);
}

.appointment-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.appointment-btn i {
  transition: var(--transition);
}

.appointment-btn:hover i {
  transform: translateX(5px);
}
.border_b0ttom {
  border-bottom: 3px solid var(--cyan);
  width: max-content;
  padding-bottom: 5px;
}
._related_blogs .blog-card a {
  display: flex;
}
._related_blogs .blog-card a .blog-img {
  width: 30%;
  height: 290px;
}
._related_blogs .blog-card a .blog-img img {
  height: 100%;
}
._related_blogs .blog-card a .blog-body {
  width: 70%;
  place-content: center;
  text-align: left;
}
._related_blogs .blog-card a p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.fa-sm {
  line-height: 1.5;
}
.footer ol,
.footer ul {
  padding-left: 0rem;
}
article.condition-card {
  height: 100%;
  place-content: center;
}
.condition_details.details_page .wp-block-list {
  list-style: disc;
}
.dropdown-menu {
  background-color: var(--navy-dark);
}
.navbar-actions .btn-primary {
  position: fixed;
  right: -60px;
  top: 300px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;

  background: var(--cyan);
  color: var(--white);
  border: 1px solid var(--cyan);
  box-shadow: var(--shadow-cyan);
  border-radius: 50px;
  rotate: 90deg;
}

.navbar-actions .btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;

  background: repeating-radial-gradient(
    rgba(0, 200, 255, 0) 0%,
    rgba(0, 200, 255, 0.55) 45%,
    rgba(0, 200, 255, 0.85) 70%,
    rgba(0, 200, 255, 0) 100%
  );

  animation: ripplePulse 2s ease-out infinite;
}

@keyframes ripplePulse {
  0% {
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 1;
    /*         box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.35); */
  }

  100% {
    transform: translate(-50%, -50%);
    width: 130%;
    height: 180%;
    opacity: 0;
    /*         box-shadow: 0 0 0 30px rgba(0, 200, 255, 0); */
  }
}
.sidebar-more-carousel .owl-nav {
  margin-top: 0px;
}
#testimonials .testimonial-card {
  height: 400px;
  overflow-y: scroll;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.parkimg__img {
  width: 60px !important;
  height: auto;
}
/* responssive */
@media (max-width: 1200px) and (min-width: 992px) {
  .site-nav-links a,
  .navbar-phone,
  nav .btn {
    font-size: 1.05rem;
  }
  nav .btn {
    padding: 0.65rem 1rem;
  }
  .site-nav-links a {
    padding: 0.5rem 0.4rem;
  }
}
@media (max-width: 1200px) {
  .navbar-inner,
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 991px) {
  section:has(.owl-nav) {
    overflow: hidden;
  }
  .btn {
    padding: 0.5rem 2rem;
  }
  .navbar-inner,
  .container {
    max-width: 960px;
  }
  .hero {
    min-height: 90vh;
  }
  .form-group {
    margin-bottom: 0px;
  }
  .contact-info-item {
    margin-bottom: 0.5rem;
  }
  .wpcf7-form.init.contact-form textarea.form-control {
    height: 120px !important;
    min-height: auto !important;
  }
  .footer-bottom {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar-inner,
  .container {
    max-width: 720px;
  }
  .navbar-actions .btn,
  .hero-text,
  .hero-actions {
    display: none;
  }
  .trust-bar-inner {
    row-gap: 0.5rem;
  }
  .hero {
    min-height: 75vh;
  }
  .about-img-main {
    aspect-ratio: 4 / 3;
  }
  .team-slider .owl-nav {
    margin-top: 10px;
  }
  .booking-cta {
    padding: 3rem 0;
  }
  .bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f1f1f1;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  .bottom-menu .bottom_menu_btn,
  .bottom-menu .bottom_menu_btn2 {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    padding: 10px;
    color: #fff;
    font-weight: 600;
  }
  .bottom-menu .bottom_menu_btn:hover,
  .bottom-menu .bottom_menu_btn2:hover {
    opacity: 0.7;
  }
  .bottom-menu .bottom_menu_btn i {
    color: #fff;
  }
  .bottom-menu .bottom_menu_btn2 i {
    color: #fff;
  }
  .bottom-menu .bottom_menu_btn {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .bottom-menu .bottom_menu_btn2 {
    background: var(--cyan);
    color: var(--white);
    border-color: var(--cyan);
  }
  .footer-bottom {
    padding-bottom: 3rem;
    justify-content: center;
  }
  .whatsapp-float {
    bottom: 47px;
    right: 23px;
    width: 50px;
    height: 50px;
  }
  .injury-hero img {
    height: 340px;
  }
}

@media (max-width: 576px) {
  h3 {
    font-size: 1.35rem;
  }
  .navbar-inner,
  .container {
    max-width: 100%;
  }
  .hero {
    min-height: 60vh;
  }
  .team-slider .owl-nav button {
    width: 40px;
    height: 40px;
  }
  .service-body {
    text-align: center !important;
  }

  .booking-cta p:has(.fa-whatsapp) {
    display: flex;
    flex-direction: column;
  }
  #footer .btn-primary {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-bottom span {
    text-align: center;
  }
  .page-banner {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .bottom-menu .bottom_menu_btn,
  .bottom-menu .bottom_menu_btn2 {
    font-size: 3.8vw;
  }
  .gbp-contact-info-card {
    height: 270px;
  }
  ._related_blogs .blog-card a {
    display: flex;
    flex-direction: column;
  }

  ._related_blogs .blog-card a .blog-body {
    width: 100%;
    place-content: center;
    text-align: center;
  }
  ._related_blogs .blog-card a .blog-img {
    width: 100%;
    height: 150px;
  }
  .site-navbar.scrolled .navbar-logo img {
    height: 60px;
  }
  .footer-contact-item:has(a[href^="mailto:"]) a {
    font-size: 0.9rem;
  }
  .footer-bottom-links {
    flex-direction: column;
    text-align: center;
  }
  .parking__btn .btn {
    padding: 0.5rem;
    font-size: 16px;
  }
  #contact a[href^="mailto:"] {
    font-size: 16px;
  }
  .gbp-team-details-image {
    width: 100%;
    margin-inline: auto;
  }
  .gbp-team-exp-box {
    right: -10px;
    bottom: 10px;
  }
  .map_text h2 {
    font-size: 30px;
  }
}

@media (max-width: 340px) {
  .stat-num {
    font-size: 1.5rem;
  }
  .bottom-menu .bottom_menu_btn,
  .bottom-menu .bottom_menu_btn2 {
    font-size: 3.5vw;
  }
  #contact a[href^="mailto:"] {
    font-size: 14px;
  }
}
