/* =========================================
   Fletcher Physiotherapy - Main Stylesheet
   ========================================= */

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

/* ---- CSS Variables ---- */
:root {
  --primary: #1a3a5c; /* Deep navy blue */
  --secondary: #134cb3; /* Medical blue */
  --accent: #60e2fa; /* Health green */
  --light-bg: #f4f8fc;
  --white: #ffffff;
  --text-dark: #1c2833;
  --text-muted: #000;
  --border: #dce6f0;
  --footer-bg: #0f2236;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(26, 58, 92, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 58, 92, 0.2);
  --theme-yellow: #ffce33;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
}
p,
li,
a {
  font-size: 1.2rem;
}
/* ---- Utility Classes ---- */
.section-pad {
  padding: 90px 0;
}
.section-pad-sm {
  padding: 60px 0;
}
.bg-light-blue {
  background: var(--light-bg);
}
.bg-primary {
  background: var(--primary);
}
.text-white {
  color: var(--white) !important;
}
.text-accent {
  color: var(--accent);
}
.text-secondary {
  color: var(--secondary);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}

.section-title span {
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 75%;
  margin: 0 auto 50px;
}

.title-underline::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;
}

.title-underline-left::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 0;
}

.btn-primary-custom {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--accent);
}

.btn-outline-custom {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 34px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

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

.btn-secondary-custom {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--secondary);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background: transparent;
  color: var(--secondary);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 9px 0;
  font-family: var(--font-heading);
  max-width: 1320px;
  margin-inline: auto;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--secondary);
  border-color: var(--accent);
  color: var(--white) !important;
}
.top-bar-item span,
.top-bar-item a {
  font-size: 1rem;
}
/* ============================================
   NAVBAR
   ============================================ */
.main-navbar {
  padding: 0;
  /* background: linear-gradient(
    to right,
    transparent 0%,
    rgb(255, 255, 255) 15%,
    transparent 30%,
    transparent 100%
  ); */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 3%;
}

.main-navbar .navbar-brand img {
  height: 64px;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 14px !important;
  position: relative;
  transition: color var(--transition);
}

.theme_header.scrolled .nav-link:not(.navbar-cta) {
  color: var(--footer-bg) !important;
}
.navbar-nav .nav-link:not(.navbar-cta)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width var(--transition);
}

.navbar-nav .nav-link:not(.navbar-cta):hover::before,
.navbar-nav .nav-link:not(.navbar-cta).active::before {
  width: 70%;
}
.theme_header.scrolled .nav-link {
  color: #fff;
}
.navbar-nav .nav-link:hover,
.theme_header.scrolled .nav-link:hover {
  color: var(--primary) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 8px 8px;
  border-top: 3px solid var(--accent);
  padding: 10px 0;
  min-width: 220px;
}

.dropdown-item {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  padding: 9px 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--secondary);
  padding-left: 26px;
}

.navbar-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  margin-left: 10px;
  font-size: 0.83rem !important;
}

.divider {
  height: 1px;
  background: #bbbbbb85;
  margin: 0px 2px 0px;
  backdrop-filter: blur(5px);
}

.navbar-cta::after {
  display: none !important;
}
.navbar-cta:hover {
  background: var(--accent) !important;
  color: #fff !important;
}
.top-bar a,
.top-bar {
  color: #fff;
  font-weight: 500;
}
.theme_header {
  background: transparent;
  /* backdrop-filter: blur(5px); */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.3s ease;
}
.theme_header.scrolled {
  background: #fff;
}
.theme_header:not(.scrolled) {
  box-shadow: 0 0px 8px rgba(202, 202, 202, 0.1);
}
.theme_header.scrolled .top-bar a,
.theme_header.scrolled .top-bar {
  color: var(--footer-bg);
}
.theme_header.scrolled .nav-link {
  color: #fff;
}
.theme_header:not(.scrolled) .main-navbar .navbar-brand img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(151deg) brightness(105%) contrast(102%);
}
/* ============================================
   HERO SECTION (VIDEO)
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.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: rgba(250, 250, 250, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-heading span {
  color: var(--accent);
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-section .btn-primary-custom {
  color: var(--footer-bg);
}
.hero-section .btn-primary-custom:hover {
  color: var(--white);
}
/* ============================================
   INFO STRIP
   ============================================ */
.info-strip {
  background: var(--primary);
  padding: 22px 0;
  color: var(--white);
}

.info-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}

.info-strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-strip-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-strip-text span {
  font-size: 0.87rem;
  opacity: 0.9;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  height: 100%;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}

.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  /* Replace src with actual image path */
}

.service-card-body {
  padding: 24px;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--secondary);
  color: var(--white);
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* ============================================
   INSURANCE / BILLING BANNER
   ============================================ */
.billing-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.billing-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.billing-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 75%;
  margin: 0 auto 28px;
}

.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.insurance-logo-item {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  width: 150px;
  height: 70px;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section {
  background: var(--white);
}

.why-us-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  /* Replace src with actual image */
}

.why-us-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-us-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.why-us-badge-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 90px;
  line-height: 1.3;
}

.why-list {
  margin-top: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.why-item:hover .why-icon {
  background: var(--primary);
  color: var(--white);
}

.why-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.why-item-text {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ============================================
   CONDITIONS WE TREAT
   ============================================ */
.conditions-section {
  background: var(--light-bg);
}

.condition-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
  cursor: pointer;
}

.condition-pill i {
  color: var(--primary);
  font-size: 1.2rem;
}

.condition-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--secondary);
}

.condition-pill:hover i {
  color: var(--white);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: var(--white);
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

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

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  /* Replace src with actual team member photo */
}

.team-card-body {
  padding: 22px;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 28rem;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.testimonial-stars {
  color: #f4c542;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  /* Replace src with actual avatar */
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-location {
  font-size: 1.2rem;
  color: var(--accent);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  background: url("../images/cta-bg.jpg") center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  /* Replace with actual image src */
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.9),
    rgba(39, 174, 96, 0.7)
  ); */
  background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.9),
    rgb(63 204 227 / 70%)
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================
   HOURS & MAP
   ============================================ */
.contact-info-section {
  background: var(--light-bg);
}

.contact-info-section .hours-card,
.contact-info-section .contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  font-weight: 600;
  color: var(--primary);
}
.hours-time {
  color: var(--text-muted);
}
.hours-time.closed {
  color: #e74c3c;
  font-weight: 600;
}

.contact-info-section .contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-section .contact-icon {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-section .contact-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-info-section .contact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-info-section .contact-value a {
  color: var(--primary);
  transition: color var(--transition);
}

.contact-value a:hover {
  color: var(--secondary);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================
   APPOINTMENT FORM
   ============================================ */
.appointment-section {
  background: var(--white);
}

.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  background: var(--light-bg);
  outline: none;
  margin-bottom: 18px;
}

.form-control-custom:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.12);
  background: var(--white);
}

.form-label-custom {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.appointment-section .contact-item {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, var(--footer-bg), var(--secondary));
  padding: 15px 20px;
  border-radius: 20px;
  transition: 0.5s ease-in-out;
}
.appointment-section .contact-item .contact-icon {
  place-content: center;
}
.appointment-section .contact-item .contact-icon i {
  font-size: 2.8rem;
  color: var(--white);
}
.appointment-section .contact-item .contact-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}
.appointment-section .contact-item .contact-value {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0;
}
.appointment-section .contact-item:hover {
  transform: translateY(-5px);
}
.appointment-section .btn-primary-custom {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  background-size: 160% auto;
  background-position: left center;
  transition: all 0.4s ease;
}

.appointment-section .btn-primary-custom:hover {
  background-position: right center;
  color: var(--white);
}
/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
}

.footer-logo img {
  height: 58px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a::before {
  content: "›";
  color: var(--accent);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

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

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  margin-top: 60px;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--accent);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 12px 10px !important;
  }
  .hero-section {
    height: 80vh;
  }
  .hero-stats {
    gap: 20px;
  }
  .why-us-img {
    height: 340px;
  }
  .form-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 60px 0;
  }
  .top-bar-items {
    gap: 14px;
  }
  .top-bar-right {
    display: none;
  }
  .hero-section {
    height: auto;
    padding: 110px 0 70px;
  }
  .hero-stats {
    display: none;
  }
  .billing-banner,
  .cta-section {
    padding: 50px 0;
  }
  .hours-card,
  .contact-card {
    padding: 24px;
  }
  .form-card {
    padding: 24px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns a {
    text-align: center;
  }
}

/* ================== breadcrumb ================ */
.about-breadcrumb-section {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
}

.about-breadcrumb-image,
.about-breadcrumb-overlay {
  position: absolute;
  inset: 0;
}

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

.about-breadcrumb-overlay {
  background: linear-gradient(135deg, rgba(13, 29, 46, 0.848), #022228de);
}

.about-breadcrumb-section .container {
  z-index: 2;
}

.about-breadcrumb-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 2.2rem;
  -webkit-box-reflect: below -35px
    linear-gradient(to bottom, transparent, #00000014, rgba(0, 0, 0, 0.5));
  font-style: italic;
}

.about-breadcrumb-nav .breadcrumb-item,
.about-breadcrumb-nav .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.about-breadcrumb-nav .breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
}

.about-breadcrumb-nav .breadcrumb-item a:hover {
  color: #fff;
}

.about-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

/* ================= breadcrumb ================ */
/* ================= Page About ================ */
.about-collage-section {
  position: relative;
  overflow: hidden;
  background: #eef1ef;
}

.about-collage-wrap {
  position: relative;
  min-height: 520px;
}

.collage-img {
  position: absolute;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
}

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

.collage-img:hover {
  transform: translateY(-8px);
}

/* Top Image */
.collage-img-1 {
  width: 250px;
  height: 320px;
  top: 0;
  left: 0;
  border-radius: 25px;
  border: 4px solid var(--secondary);
}

/* Right Image */
.collage-img-2 {
  width: 240px;
  height: 170px;
  top: 80px;
  right: 0;
  border-radius: 20px;
  border: 4px solid var(--accent);
}

/* Circle Image */
.collage-img-3 {
  width: 220px;
  height: 220px;
  left: 20px;
  bottom: 0;
  border-radius: 50%;
  border: 4px solid var(--primary);
}

.about-collage-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-label {
  display: inline-block;
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-collage-content p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-feature-list {
  margin: 30px 0;
}

.feature-item {
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.2rem;
}

.about-main-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-main-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}
.about_socials {
  right: 2rem;
  bottom: 5rem;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.879),
    rgb(39 162 174 / 54%)
  );
  padding: 15px 25px;
  border-radius: 50px;
  place-content: center;
  display: flex;
}
.about_socials ul li {
  margin-right: 0px;
}
.about_socials ul li a i {
  font-size: 1.6rem;
  color: #fff;
  transition: 0.3s;
}
.about_socials ul li:hover a i {
  color: var(--primary);
}
@media (max-width: 991px) {
  .about-collage-wrap {
    min-height: 450px;
    max-width: 420px;
    margin: auto;
  }

  .about-collage-content {
    text-align: center;
  }

  .about-collage-content h2 {
    font-size: 2.2rem;
  }
}
/* ================= Page team ================ */
.fpt-team-item {
  position: relative;
  z-index: 1;
}
.fpt-team-item-thumb {
  border-radius: 16px;
  object-fit: cover;
  transition: 0.3s;
  height: 380px;
  overflow: hidden;
}
.fpt-team-item-thumb img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fpt-team-item-content {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.fpt-team-item:hover .fpt-team-item-thumb img {
  transform: scale(1.1);
  transition: 0.3s;
}
.fpt-team-item:hover .fpt-team-item-content-inner {
  background: var(--accent);
}
.fpt-team-item:hover .fpt-team-item-title,
.fpt-team-item:hover .fpt-team-item-desc {
  color: #fff;
}

/* ================= End Page team ================ */
/* ================= team details ================ */
/* Equal Height Image */
.team__details__post,
.team__details__post-thumb {
  height: 100%;
}

.team-member-img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  border-radius: 20px;
}

/* Content */
.team__details__desc {
  display: flex;
  flex-direction: column;
}

/* Main Info Card */
.team-info-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.team__details__desc-heading .title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.desegnitation {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.exp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f4f8f7;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.exp span:last-child {
  color: var(--accent);
  font-weight: 700;
}

/* Contact Cards */
.team-contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.team-contact-card:hover {
  transform: translateY(-5px);
}

.team-contact-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.team-contact-card span {
  display: block;
  color: #000;
  font-size: 14px;
  margin-bottom: 3px;
}

.team-contact-card a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* Skills Card */
.skills-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.skills-card h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tags span {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.book__now {
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.book__now a {
  background: linear-gradient(135deg, #22c667, #3069a7, #22c667);
  background-size: 200% 200%;
  background-position: left center;

  padding: 15px;
  border-radius: 50px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.5s ease;
  font-size: 1.2rem;
}

.book__now a:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.top__wrap img {
  background-color: #0f223695;
}

/* ================= CONATCT details ================ */
.contact-section {
  position: relative;
  background: var(--light-bg);
  overflow: hidden;
  padding: 120px 0;
}

/* Floating Background Shapes */

.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: floatY 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(39, 174, 96, 0.12);
  top: 25%;
  left: 5%;
}

.shape-2 {
  width: 220px;
  height: 220px;
  background: rgba(46, 134, 193, 0.08);
  right: -80px;
  top: 20%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(26, 58, 92, 0.06);
  bottom: 5%;
  left: 45%;
  animation-delay: 4s;
}

.contact-content,
.appointment-form {
  position: relative;
  z-index: 2;
}

/* Tag */

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(39, 174, 96, 0.12);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 25px;
}

/* Heading */

.contact-title {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-desc {
  font-size: 18px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 40px;
}

/* Schedule Card */

.schedule-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.schedule-card:hover {
  transform: translateY(-8px);
}

.schedule-card th {
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  padding: 20px;
  border: none;
}

.schedule-card td {
  padding: 20px;
  font-size: 17px;
  color: #000;
  vertical-align: middle;
}

/* Form */

.appointment-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);

  animation: slideUp 0.8s ease;
}

.appointment-form h3 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.appointment-form p {
  color: #000;
  margin-bottom: 30px;
}

.form-control,
.form-select {
  height: 60px;
  border-radius: 14px;
  border: 1px solid #dbe3ec;
  background: #fff;
  transition: 0.35s;
  box-shadow: none !important;
}

textarea.form-control {
  height: auto;
  min-height: 140px;
  padding-top: 15px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 134, 193, 0.15) !important;
}
.service-select {
  position: relative;
}
.service-select .form-select {
  height: 60px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.service-select .select-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 18px;
  pointer-events: none;
  z-index: 2;
}

/* Custom dropdown arrow */

.service-select::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

  color: var(--primary);
  pointer-events: none;
}
/* Button */

.theme-btn {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(125deg, var(--accent), var(--primary));
  background-size: 250% 250%;
  color: #fff;
  padding: 16px 35px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.theme-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26, 58, 92, 0.25);
}

/* Animations */

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .appointment-form {
    padding: 30px;
  }

  .contact-title {
    font-size: 2.5rem;
  }
}

.contact-page-section {
  background: var(--light-bg);
}

.contact-page-section .contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dde5ed;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  place-content: center;
  height: 100%;
}

/* Center Pop Animation */

.contact-page-section .contact-card::after {
  content: "";
  position: absolute;

  width: 0;
  height: 0;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  background: linear-gradient(135deg, var(--accent), var(--primary));

  transition: 0.7s ease;
  z-index: -1;
}

.contact-page-section .contact-card:hover::after {
  width: 700px;
  height: 700px;
}

.contact-page-section .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.contact-page-section .contact-card:hover h4,
.contact-page-section .contact-card:hover p {
  color: #fff;
}

/* Icon */

.contact-page-section .contact-icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent);
  border-radius: 50%;
  transition: 0.4s ease;
}

.contact-page-section .contact-icon i {
  color: #fff;
  font-size: 34px;
}

.contact-page-section .contact-card:hover .contact-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* Content */

.contact-page-section .contact-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  transition: 0.4s ease;
}

.contact-page-section .contact-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  transition: 0.4s ease;
}
.contact-page-section a {
  height: 100%;
}
/* Default Highlight Card */

/* Mobile */

@media (max-width: 991px) {
  .contact-card {
    padding: 25px;
    gap: 20px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .contact-icon i {
    font-size: 28px;
  }

  .contact-content h4 {
    font-size: 24px;
  }

  .contact-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}
/* ==================== map  ============== */
.site_map {
  line-height: 0.9;
}

/* ==================== page blogs  ============== */
.blogs-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

/* Section Title */

.sub-title {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(39, 174, 96, 0.1);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title h2 {
  color: var(--primary);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Card */

.blog-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.45s;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Image */

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

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

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

/* Overlay Animation */

.blog-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  z-index: 2;
}

.blog-card:hover .blog-img::before {
  animation: shine 1s;
}

@keyframes shine {
  100% {
    left: 140%;
  }
}

/* Content */

.blog-content {
  padding: 30px;
}

.blog-content h4 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-content p {
  color: #000;
  margin-bottom: 25px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.2rem;
}

/* Button */

p.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;

  background: linear-gradient(
    135deg,
    var(--accent),
    var(--secondary),
    var(--primary)
  );

  background-size: 300% 300%;
  transition: 0.4s;
}

p.blog-btn:hover {
  color: #fff;
  animation: gradientMove 3s infinite;
}

.blog-btn i {
  transition: 0.4s;
}

.blog-btn:hover i {
  transform: translateX(5px);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating Shape */

.blogs-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(39, 174, 96, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: floatShape 8s infinite ease-in-out;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}
/* service details page */
.service-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}

.service-highlight {
}
.service-highlight ul {
  background: #f5f4f4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.26rem;
  list-style: disc;
  border-radius: 1.26rem;
  padding-block: 1.26rem;
  padding-left: 40px;
}
.service-highlight ul li {
  font-size: 1.2rem;
}
.service-highlight ul li::marker {
  color: var(--accent);
  font-size: 24px;
}

.condition-list {
  columns: 3;
  column-gap: 40px;
  background: #f5f4f4;
  border-radius: 12px;
  list-style: number;
  padding-block: 20px;
  padding-left: 40px;
}

.treatment-process ol li {
  margin-bottom: 20px;
  padding-left: 10px;
}

.section-title span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Conditions */

.condition-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 20rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  margin-block: 10px;
}

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

.condition-card i {
  font-size: 45px;
  margin-bottom: 20px;
  color: var(--accent);
}
p.read-more {
  font-weight: 600;
  color: var(--accent);
  margin-top: auto !important;
}
/* Service & Blog */

.service-card,
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  margin: 10px;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-12px);
}

.service-card .image,
.blog-card .image {
  overflow: hidden;
}

.service-card img,
.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.7s;
}

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

.service-card .content,
.blog-card .content {
  padding: 30px;
}

.blog-card .meta {
  color: #0d6efd;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Owl Navigation */

.owl-nav {
  text-align: center;
  margin-top: 40px;
}

.owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  margin: 0 8px !important;
  background: #f4f7fb !important;
  transition: 0.3s;
}

.owl-nav button:hover {
  background: #0d6efd !important;
  color: #fff !important;
}
.related-blogs .blog-card {
  display: flex;
}
.related-blogs .blog-card .image {
  flex: 1.5;
}
.related-blogs .blog-card .content {
  flex: 2;
  place-content: center;
}
.related-blogs .more_blog-slider .blog-card .image img {
  height: 180px;
}
.related-blogs .more_blog-slider .service-card .content,
.blog-card .content {
  padding: 10px;
}
.conditions-slider .condition-img {
  overflow: hidden;
}

.conditions-slider .condition-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.6s;
}
.conditions-slider .condition-card {
  height: auto;
}

.conditions-slider .condition-card:hover .condition-img img {
  transform: scale(1.08);
}
.more_condition .condition-card {
  padding: 0px;
  border-radius: 20px;
  overflow: hidden;
  margin-block: 15px;
  padding-bottom: 20px;
}
.more_condition .condition-content {
  padding: 15px 15px 0px 15px;
}
.more_condition .condition-content span.read-more {
  color: var(--accent);
}
.page_more_blogs {
  background: #c2c2c2;
}
/* faq section */
.faq-section {
  background: #f8fbff;
  overflow: hidden;
}

.custom-faq .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px rgba(26, 58, 92, 0.08);
  transition: all 0.4s ease;
}

.custom-faq .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(46, 134, 193, 0.18);
}

.custom-faq .accordion-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  background-size: 200% auto;
  background-position: left center;

  color: var(--white);
  font-weight: 600;
  padding: 22px 25px;
  gap: 15px;
  box-shadow: none;
  transition: all 0.5s ease;
}

.custom-faq .accordion-button:hover {
  background-position: right center;
}

.custom-faq .accordion-button:not(.collapsed) {
  color: var(--white);
  background-position: right center;
}
.custom-faq .accordion-collapse.show .accordion-body {
  background: linear-gradient(
    180deg,
    rgba(46, 134, 193, 0.04),
    rgba(39, 174, 96, 0.04)
  );
}
.custom-faq .accordion-button:not(.collapsed) .faq-icon {
  color: var(--accent);
}

.custom-faq .accordion-body {
  padding: 25px 30px;
  line-height: 1.9;
  color: #000;
  transition: 0.4s ease;
  font-size: 1.2rem;
}

.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 134, 193, 0.12);
  color: var(--accent);
  transition: 0.4s ease;
  flex-shrink: 0;
}
.custom-faq .accordion-button:not(.collapsed) .faq-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}
.custom-faq .accordion-button::after {
  transition: 0.4s ease;
}

.custom-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  filter: brightness(0) invert(1);
}

.custom-faq .accordion-collapse {
  transition: all 0.4s ease;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonials-section .section-title span {
  color: var(--accent);
}
