:root {
  --primary: #1565c0;
  --primary-dark: #0d47a1;
  --primary-light: #1e88e5;
  --accent: #42a5f5;
  --dark: #0a0f1e;
  --dark2: #111827;
  --text: #1a2340;
  --text-muted: #607d8b;
  --bg-light: #f4f8fd;
  --bg-section: #eef4fb;
  --white: #ffffff;
  --card-radius: 18px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --sidebar-w: 340px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}
.container {
  max-width: 1600px;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar a {
  color: var(--accent);
  text-decoration: none;
}
.top-bar .social a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-left: 12px;
  transition: color 0.25s;
}
.top-bar .social a:hover {
  color: #fff;
}

/* ─── NAVBAR ─── */
#mainNav {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 999;
  transition:
    top 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.35s ease;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
#mainNav.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(21, 101, 192, 0.12);
  padding: 10px 0;
}
#mainNav.scrolled .nav-link {
  color: var(--text) !important;
}
#mainNav.scrolled .navbar-brand span {
  color: var(--primary) !important;
}
#mainNav.scrolled .nav-link:hover {
  color: var(--primary) !important;
}
.current-menu-item a {
  color: #8fccfd !important;
  transform: scaleX(1) !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .logo-box {
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.navbar-brand .logo-box img {
  height: 50px;
  display: block;
}
.navbar-brand .brand-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-weight: 300;
}
#mainNav.scrolled .brand-sub {
  color: var(--text-muted);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.btn-nav:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary) !important;
}
#mainNav.scrolled .btn-nav {
  color: #fff !important;
}
#mainNav.scrolled .btn-nav:hover {
  color: var(--primary) !important;
}

/* toggler */
.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}
#mainNav.scrolled .navbar-toggler-icon {
  filter: none;
}

.book-btn-nav::after {
  transform: scaleX(0) !important;
}
/* ─── HERO CAROUSEL ─── */
#heroCarousel {
  position: relative;
}
.carousel-slide {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 30, 0.78) 0%,
    rgba(21, 101, 192, 0.35) 100%
  );
}
.slide-1-bg {
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80");
}
.slide-2-bg {
  background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?w=1920&q=80");
}
.slide-3-bg {
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=80");
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1400px;
}
.slide-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(66, 165, 245, 0.4);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.slide-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.slide-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 34px;
}
.btn-hero {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  margin-right: 12px;
}
.btn-hero:hover {
  background: transparent;
  color: #fff;
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* indicators */
.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.4s;
}
.carousel-indicators .active {
  background: #fff;
  width: 50px;
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-dot {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 22px;
    opacity: 0;
  }
}

/* ─── ABOUT ─── */
.section-pad {
  padding: 100px 0;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-img-collage {
  position: relative;
}
.img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.15);
}
.img-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.img-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  text-align: center;
  min-width: 140px;
}
.img-badge .num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}
.img-badge .lbl {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.img-secondary {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
}
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--primary);
}
.btn-primary-main {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}
.btn-primary-main:hover {
  background: transparent;
  color: var(--primary);
}
.trust-box {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content:space-between;
  gap: 14px;
  margin-top: 28px;
}
.trust-avatars-section {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.trust-stars {
  color: #f59e0b;
  font-size: 13px;
}

/* ─── SERVICES SECTION ─── */
.services-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 100px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
}

/* ─── SERVICE CARD ─── */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  
  /* BACKGROUND IMAGE - CRISP & CLEAR */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  
  /* Box Shadow */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: 
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    filter 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(21, 101, 192, 0.25);
  filter: brightness(1.05);
}

/* GLOSSY SHINE EFFECT */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.service-card:hover::after {
  left: 100%;
}

/* ZOOM EFFECT ON HOVER - Uses pseudo element for crisp effect */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(1);
  z-index: 0;
}

.service-card:hover::before {
  transform: scale(1.1);
}

/* ─── OVERLAY ─── */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 40, 0) 0%,
    rgba(10, 15, 40, 0.3) 40%,
    rgba(10, 15, 40, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
  z-index: 2;
  backdrop-filter: blur(0px);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 101, 192, 0) 0%,
    rgba(21, 101, 192, 0.2) 40%,
    rgba(21, 101, 192, 0.8) 100%
  );
}

/* ─── CARD TITLE ─── */
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
  line-height: 1.3;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-title {
  transform: translateY(-4px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* ─── CARD DESCRIPTION ─── */
.service-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-desc {
  opacity: 1;
}

/* ─── ARROW BUTTON ─── */
.service-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-arrow {
  background: #ffffff;
  color: #1565C0;
  border-color: #ffffff;
  transform: scale(1.2) translateX(4px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
}

/* ─── LINK STYLING ─── */
a {
  text-decoration: none;
  color: inherit;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE DESIGN ─── */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .service-card {
    height: 280px;
  }

  .service-card-overlay {
    padding: 20px;
  }

  .service-card-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .service-card-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .service-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 0;
  }

  .service-card {
    height: 240px;
  }

  .service-card-title {
    font-size: 1rem;
  }

  .service-card-desc {
    font-size: 11px;
  }

  .row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}

/* ─── OPTIMIZATION ─── */
.service-card img {
  display: none !important;
}

/* Image quality optimization */
.service-card {
  image-rendering: auto;
  image-rendering: crisp-edges;
}
/* ─── WHY CHOOSE US ─── */
.why-section {
  padding: 100px 0;
  background: #fff;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--card-radius);
  border: 1px solid #e8f0fb;
  transition: all 0.35s;
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
}
.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    #1e3a8a 50%,
    var(--primary) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -100px;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -150px;
  left: 5%;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  font-weight: 700;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 0;
}
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid #fff;
}
.btn-cta-white:hover {
  background: transparent;
  color: #fff;
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--bg-section);
  border-top: 1px solid #dce8f5;
  border-bottom: 1px solid #dce8f5;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 60px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}
.ticker-item i {
  color: var(--primary);
  font-size: 16px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}
.footer-logo .logo-box {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: auto;
  width: 234px;
}
footer p {
  font-size: 14px;
  line-height: 1.8;
}
.footer-title {
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 8px;
  font-size: 16px;
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ─── BACK TO TOP ─── */
#backTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.3);
}
#backTop.show {
  opacity: 1;
  transform: translateY(0);
}
#backTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── HOW WE WORK ─── */
/* ─────────────────────────────────────────
       HOW WE WORK
    ───────────────────────────────────────── */
.hiw-section {
  padding: 100px 0;
  background: #edf2f7;
  overflow: hidden;
}

.hiw-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.hiw-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps row */
.hiw-steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 165px;
  margin-bottom: 16px;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.hiw-step.show {
  opacity: 1;
  transform: translateY(0);
}

.hiw-illus {
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.08);
  border: 2px solid transparent;
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
  position: relative;
}
.hiw-step.active-step .hiw-illus {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.18);
  transform: translateY(-6px);
}
.hiw-illus svg {
  width: 86px;
  height: 86px;
}

.hiw-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.3s;
}
.hiw-step.active-step .hiw-label {
  color: var(--primary);
}

/* ── TIMELINE ── */
.hiw-timeline {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  margin: 4px 0 8px;
}

/* Static dark background line */
.hiw-line-bg {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #2d3748;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}

/* Infinite animated fill line */
.hiw-line-fill-wrap {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  overflow: visible;
}

.hiw-line-fill-bar {
  height: 100%;
  width: 0%; /* starts at 0, JS sets it */
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1); /* smooth line travel */
}

/* Dots */
.hiw-dots {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.hiw-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(21, 101, 192, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  border: 3px solid #fff;
}
.hiw-dot:hover {
  transform: scale(1.15);
}
.hiw-dot.active {
  transform: scale(1.22);
  box-shadow: 0 6px 22px rgba(21, 101, 192, 0.45);
  background: var(--primary-dark);
}
.hiw-dot span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: "DM Sans", sans-serif;
}

/* CTA button */
.btn-hiw {
  background: #4caf50;
  color: #fff;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: 2px solid #4caf50;
  box-shadow: 0 6px 22px rgba(76, 175, 80, 0.28);
}
.btn-hiw:hover {
  background: transparent;
  color: #4caf50;
}

/* Responsive HIW */
@media (max-width: 991px) {
  .hiw-illus {
    width: 96px;
    height: 96px;
    border-radius: 16px;
  }
  .hiw-illus svg {
    width: 64px;
    height: 64px;
  }
  .hiw-label {
    font-size: 11.5px;
  }
  .hiw-dot {
    width: 36px;
    height: 36px;
  }
  .hiw-dot span {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .hiw-steps-row {
    gap: 6px;
  }
  .hiw-illus {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    padding: 8px;
  }
  .hiw-illus svg {
    width: 46px;
    height: 46px;
  }
  .hiw-label {
    font-size: 9.5px;
  }
  .hiw-dot {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }
  .hiw-dot span {
    font-size: 11px;
  }
}

/* ─── BLOG CAROUSEL ─── */
.blog-carousel-wrap {
  overflow: hidden;
}
.blog-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-carousel-slide {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}
.blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.blog-nav-btn:hover {
  background: var(--primary);
  color: #fff;
}
.blog-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.blog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.blog-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .blog-carousel-slide {
    min-width: calc(50% - 12px);
  }
  .hiw-illus {
    width: 85px;
    height: 85px;
  }
  .hiw-illus svg {
    width: 60px;
    height: 60px;
  }
  .hiw-label {
    font-size: 11px;
  }
  .hiw-dot {
    width: 32px;
    height: 32px;
  }
  .hiw-dot span {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .blog-carousel-slide {
    min-width: 100%;
  }
  .hiw-steps-row {
    gap: 5px;
  }
  .hiw-illus {
    width: 58px;
    height: 58px;
    border-radius: 10px;
  }
  .hiw-illus svg {
    width: 40px;
    height: 40px;
  }
  .hiw-label {
    font-size: 9.5px;
  }
  .hiw-dot {
    width: 24px;
    height: 24px;
  }
  .hiw-dot span {
    font-size: 10px;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .img-secondary,
  .img-badge {
    display: none;
  }
  #mainNav {
    top: 0;
  }
  .top-bar {
    display: none;
  }
}
@media (max-width: 767px) {
  .stat-divider {
    display: none;
  }
  .section-pad {
    padding: 70px 0;
  }
  .cta-banner {
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   TREATMENTS / OUR SPECIALITY SECTION
═══════════════════════════════════════ */
.speciality-section {
  padding: 100px 0;
  background: var(--white);
}
.speciality-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 30px;
  margin-top: 50px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  width: 120px;
  cursor: pointer;
}
.spec-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #d6e8f8;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.spec-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /*background: var(--primary);*/
  opacity: 0;
  transition: opacity 0.35s;
}
.spec-item:hover .spec-circle {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.18);
}
.spec-item:hover .spec-circle::before {
  opacity: 1;
}
.spec-circle svg,
.spec-circle i {
  position: relative;
  z-index: 1;
  font-size: 36px;
  color: var(--primary);
  transition: color 0.35s;
}
.spec-item:hover .spec-circle svg,
.spec-item:hover .spec-circle i {
  color: #fff;
}
.spec-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.3s;
}
.spec-item:hover .spec-label {
  color: var(--primary);
}

/* ═══════════════════════════════════════
   DIRECT BILLING SECTION
═══════════════════════════════════════ */
.billing-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.billing-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.04);
  top: -100px;
  right: -80px;
  pointer-events: none;
}
.billing-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.04);
  top: -100px;
  left: -80px;
  pointer-events: none;
}
.billing-card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.billing-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px 20px 24px;
  text-align: center;
  border: 1.5px solid #e0ecf8;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.billing-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.billing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.12);
  transform: translateY(-5px);
}
.billing-card:hover::after {
  transform: scaleX(1);
}
.billing-logo {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.billing-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
}
.billing-insurer-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.billing-tag {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.billing-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--primary);
  transition:
    background 0.3s,
    color 0.3s;
}
.billing-card:hover .billing-icon-box {
  background: var(--primary);
  color: #fff;
}
.billing-note {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px 32px;
  border: 1.5px solid #e0ecf8;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.billing-note-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}
.billing-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.billing-note strong {
  color: var(--text);
}
.btn-primary-main {
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}
.btn-primary-main:hover {
  background: transparent;
  color: var(--primary);
}

/* ═══════════════════════════════════════
   LOCATIONS SECTION
═══════════════════════════════════════ */

/* Hero banner inside locations page */
.loc-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
}
.loc-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80")
    center/cover no-repeat;
}
.loc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 71, 161, 0.8) 0%,
    rgba(21, 101, 192, 0.55) 100%
  );
}
.loc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.loc-hero-content .section-label {
  color: var(--accent);
}
.loc-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}

/* Location tabs */
.loc-tabs-wrap {
  background: var(--bg-light);
  border-bottom: 1px solid #dce8f5;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
.loc-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
}
.loc-tabs::-webkit-scrollbar {
  display: none;
}
.loc-tab-btn {
  flex-shrink: 0;
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid #d0e4f5;
  background: var(--white);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}
.loc-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.loc-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.25);
}

/* Location panel */
.loc-panel {
  display: none;
}
.loc-panel.active {
  display: block;
}

.loc-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .loc-info-row {
    grid-template-columns: 1fr;
  }
}

.loc-city-label {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.loc-city-name {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  font-family: "Playfair Display", serif;
}

.loc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.loc-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.loc-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 11px;
}
.loc-detail-text span {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.loc-detail-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.loc-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-top: 6px;
}
.loc-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px dashed #e0eaf5;
}
.loc-hours-row .day {
  font-weight: 600;
  color: var(--text);
}
.loc-hours-row.closed .time {
  color: #e53e3e;
  font-weight: 600;
}

.btn-book-loc {
  background: var(--primary);
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  margin-top: 28px;
}
.btn-book-loc:hover {
  background: transparent;
  color: var(--primary);
}

/* Map */
.loc-map-wrap {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.12);
  position: relative;
  height:500px;
}
.loc-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Services at this location */
.loc-services {
  padding: 50px 0;
  border-top: 1px solid #e8f0fb;
}
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.loc-service-pill {
  background: var(--bg-light);
  border: 1.5px solid #d6e8f8;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s;
  cursor: pointer;
}
.loc-service-pill i {
  color: var(--primary);
  font-size: 16px;
}
.loc-service-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.loc-service-pill:hover i {
  color: #fff;
}

/* Transition for panels */
.loc-panel {
  animation: fadePanel 0.4s ease forwards;
}
@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgb(0 0 0 / 82%) 0%, rgba(21, 101, 192, 0.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 60px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumb-nav a:hover {
  color: #fff;
}
.breadcrumb-nav i {
  font-size: 10px;
}
.breadcrumb-nav span {
      color: #8fccfd;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── INFO CARDS ── */
.info-cards-section {
  background: var(--primary-dark);
  padding: 0;
}
.info-card-item {
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
  cursor: pointer;
}
.info-card-item:last-child {
  border-right: none;
}
.info-card-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s;
}
.info-card-item:hover .info-card-icon {
  background: var(--primary-light);
}
.info-card-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.info-card-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.info-card-value a {
  color: var(--accent);
  text-decoration: none;
}

/* ── CONTACT MAIN ── */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.1);
  padding: 48px 44px;
}

/* form styles */
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-control,
.form-select {
  border: 1.5px solid #d6e8f8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background: var(--bg-light);
  transition: all 0.3s;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
  background: #fff;
  outline: none;
}
.form-control::placeholder {
  color: var(--text-muted);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  width: 100%;
  justify-content: center;
}
.btn-submit:hover {
  background: transparent;
  color: var(--primary);
}

/* sidebar info */
.contact-sidebar {
  padding: 0 0 0 20px;
}
.sidebar-card {
  background: var(--bg-section);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  margin-bottom: 24px;
  border: 1px solid #e0ecf8;
  transition: all 0.35s;
}
.sidebar-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.1);
}
.sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
}
.sidebar-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
}
.sidebar-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.sidebar-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.hours-table {
  width: 100%;
  margin-top: 8px;
}
.hours-table tr td {
  font-size: 13px;
  padding: 4px 0;
  color: var(--text-muted);
  border-bottom: 1px dashed #e0eaf5;
}
.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 55%;
}
.hours-table tr.closed td:last-child {
  color: #e53e3e;
  font-weight: 600;
}

/* ── MAP SECTION ── */
.map-section {
  padding: 0 0 0;
}
.map-embed-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-overlay-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  border-radius: var(--card-radius);
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  max-width: 300px;
  z-index: 2;
}
.map-overlay-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}
.map-overlay-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.map-overlay-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.section-label-blue {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 32px;
}
.accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--bg-light);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 22px 20px;
}
.accordion-item {
  border: 1px solid #e0ecf8;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

/* ── SUCCESS STATE ── */
.success-msg {
  display: none;
  text-align: center;
  padding: 30px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
  border: 1px solid #b3e5fc;
}
.success-msg i {
  font-size: 48px;
  color: #43a047;
  margin-bottom: 12px;
}
.success-msg h5 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 99;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

#backTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.3);
}
#backTop.show {
  opacity: 1;
  transform: translateY(0);
}
#backTop:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  #mainNav {
    top: 0;
  }
  .top-bar {
    display: none;
  }
  .contact-sidebar {
    padding: 20px 0 0;
  }
  .info-card-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .billing-section::before {
    display: none;
  }
  .service-header {
    text-align: center;
  }
  .appointment-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .map-overlay-card {
    display: none;
  }
}

/* BLOG SECTION */
.blog-section {
  padding: 90px 0;
  background: var(--bg-section);
}

/* CATEGORY FILTER */
.cat-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.cat-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid #d0e4f5;
  background: var(--white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "DM Sans", sans-serif;
}
.cat-btn:hover,
.cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* FEATURED CARD */
.blog-featured {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 40px rgba(21, 101, 192, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  transition: all 0.35s;
  text-decoration: none;
  color: inherit;
}
.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.15);
  color: inherit;
  text-decoration: none;
}
.blog-featured-img {
  height: 360px;
  overflow: hidden;
  position: relative;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.blog-featured:hover .blog-featured-img img {
  transform: scale(1.06);
}
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.blog-featured-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.blog-featured-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.blog-featured-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.read-more:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-featured-img {
    height: 220px;
  }
  .blog-featured-body {
    padding: 24px;
  }
}

.blog-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(21, 101, 192, 0.12);
  color: inherit;
  text-decoration: none;
}
.blog-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
  font-family: "Playfair Display", serif;
}
.blog-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eef4fb;
  padding-top: 14px;
  margin-top: auto;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.blog-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* Blog Single */

/* ARTICLE LAYOUT */
.article-section {
  padding: 80px 0;
  background: var(--white);
}
.article-body {
  max-width: 800px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 30px 0 12px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px 20px;
  padding: 0;
}
.article-body ul li,
.article-body ol li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.article-body ul li::marker {
  color: var(--primary);
}
.article-body strong {
  color: var(--text);
  font-weight: 600;
}

/* PULL QUOTE */
.pull-quote {
  border-left: 4px solid var(--primary);
  background: var(--bg-section);
  border-radius: 0 14px 14px 0;
  padding: 24px 30px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 100px;
  color: var(--primary);
  opacity: 0.08;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.pull-quote p {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ARTICLE IMAGE */
.article-img {
  border-radius: 14px;
  overflow: hidden;
  margin: 36px 0;
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.1);
}
.article-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.article-img figcaption {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-light);
  letter-spacing: 0.3px;
}

/* INFO BOX */
.info-box {
  background: var(--bg-section);
  border: 1px solid #d0e4f5;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 30px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-box-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-box-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.info-box-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Progress bar */
#readProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.2s;
  width: 0%;
}

/* Custom */

.footer-links {
  padding-left: 0;
}

.main-blog-img {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  border-radius: 10px;
}
.main-blog-img img {
  width: 60%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
/* ── ABOUT BADGE (Experience) ── */
.exp-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
}
.exp-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
}
.exp-badge-icon i {
  position: relative;
  z-index: 1;
}
.exp-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.exp-num::after {
  content: "+";
  font-size: 1.4rem;
}
.exp-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 2px;
}

/* ── TEAM SECTION ── */
.team-section {
  background: var(--white);
}
.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.team-header .section-label {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.team-header .section-title {
  margin-bottom: 0;
}
.btn-view-team {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-view-team:hover {
  background: var(--primary);
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.team-card {
  text-align: center;
}
.team-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #edf2f7;
  aspect-ratio: 3/4;
  margin-bottom: 16px;
      height: 365px;
    width: 100%;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

/* Social bar that slides up on hover */
.team-social {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.team-card:hover .team-social {
  bottom: 16px;
}
.team-social a {
  color: var(--text-muted);
  font-size: 15px;
  transition:
    color 0.25s,
    transform 0.25s;
  text-decoration: none;
}
.team-social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.team-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
}
.team-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── CLIENTS SECTION ── */
.clients-section {
  padding: 80px 0 0;
  background: var(--white);
}
.clients-header {
  text-align: center;
  margin-bottom: 50px;
}
.clients-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.clients-title-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

.clients-slider-wrap {
  overflow: hidden;
  background: #fdf8f8;
  padding: 36px 0;
  border-top: 1px solid #f0e8e8;
  border-bottom: 1px solid #f0e8e8;
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: clientSlide 28s linear infinite;
}
.clients-track:hover {
  animation-play-state: paused;
}
@keyframes clientSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  border-right: 1px solid #e8dede;
  min-width: 180px;
  height: 70px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    filter 0.3s,
    opacity 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
.client-logo-item img {
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
}
.client-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  font-family: "Playfair Display", serif;
  line-height: 1.3;
}
.client-logo-text span {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  font-family: "DM Sans", sans-serif;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  background: var(--primary-dark);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--primary-dark);
}
.btn-know-more:hover {
  background: transparent;
  color: var(--primary-dark);
}

/* Service Single */

/* ══════════════════════════════════════
       WHY CHOOSE US — SPLIT CARD (Image 1)
    ══════════════════════════════════════ */
/* ══════════════════════════════════════
       WHY CHOOSE US — SPLIT CARD (Image 1)
    ══════════════════════════════════════ */
.why-split-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.why-split-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
}

.why-split-title span {
  color: var(--primary);
}

.why-split-card {
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.13);
  position: relative;
}

/* LEFT PANEL */
.why-left {
  background: #d6ecf8;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.why-feature {
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.3s;
  flex: 1;
}

.why-feature:last-child {
  border-bottom: none;
}

.why-feature:hover {
  background: rgba(255, 255, 255, 0.35);
}

.why-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.why-feature:hover .why-feat-icon {
  transform: scale(1.1);
}

.why-feat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
}

.why-feat-desc {
  font-size: 13px;
  color: #3a6080;
  line-height: 1.6;
}

/* CENTRE IMAGE - Absolute positioned overlay */
.why-center-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 100%;
  z-index: 10;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  clip-path: inset(0 0 0 0 round 32px);
}

.why-center-img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* RIGHT PANEL */
.why-right {
  background: var(--primary-dark);
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-left: 40px;
}

.why-right .why-feature {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  padding: 28px 32px;
}

.why-right .why-feature:hover {
  background: rgba(255, 255, 255, 0.06);
}

.why-right .why-feat-icon {
  background: rgba(255, 255, 255, 0.15);
}

.why-right .why-feat-title {
  color: #fff;
  text-align: right;
}

.why-right .why-feat-desc {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.why-right .why-feature {
  flex-direction: row-reverse;
}
.why-left-text{
    padding-right:100px;
}
.why-right-text{
    padding-left:100px;
}

/* Responsive WHY */
@media (max-width: 1024px) {
  .why-center-img {
    display: none;
  }
  .why-split-card {
    grid-template-columns: 1fr 1fr;
  }
  .why-left-text,
  .why-right-text{
      padding:0;
  }
}

@media (max-width: 991px) {
  .why-center-img {
    display: none;
  }
  .why-split-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .why-split-card {
    grid-template-columns: 1fr;
  }
  .why-right .why-feature {
    flex-direction: row;
  }
  .why-right .why-feat-title,
  .why-right .why-feat-desc {
    text-align: left;
  }
}
/* ══════════════════════════════════════
       PAGE HERO
    ══════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1920&q=80")
    center/cover no-repeat;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 82%) 0%, rgba(21, 101, 192, 0.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 40px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  color: #fff;
}
.breadcrumb-nav span {
    color: #8fccfd;
    
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}

/* ══════════════════════════════════════
       SERVICE SINGLE — STICKY LAYOUT
    ══════════════════════════════════════ */
.service-single-section {
  padding: 70px 0 100px;
  background: var(--bg-light);
}
.service-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 36px;
  align-items: start;
}

/* ── SIDEBAR (sticky) ── */
.service-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* All Services list */
.sidebar-services-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.08);
}
.sidebar-services-head {
  background: var(--primary-dark);
  padding: 20px 24px;
}
.sidebar-services-head h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid #eef4fb;
  transition: all 0.25s;
}
.sidebar-service-link:last-child {
  border-bottom: none;
}
.sidebar-service-link:hover,
.sidebar-service-link.active {
  background: var(--bg-section);
  color: var(--primary);
  padding-left: 30px;
}
.sidebar-service-link i {
  font-size: 14px;
  color: var(--primary);
}

/* Opening Hours */
.sidebar-hours-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.08);
}
.sidebar-hours-head {
  background: var(--primary-dark);
  padding: 20px 24px;
}
.sidebar-hours-head h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.hours-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid #eef4fb;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: background 0.25s;
}
.hours-item:last-of-type {
  border-bottom: none;
}
.hours-item:hover {
  background: var(--bg-section);
}
.hours-item i {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}
.hours-item span {
  font-weight: 600;
  color: var(--text);
}
.sidebar-hours-card .btn-appt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-dark);
  color: #fff;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin: 16px;
  border-radius: 50px;
  transition: all 0.3s;
}
.sidebar-hours-card .btn-appt:hover {
  background: var(--primary);
}

/* Call card */
.sidebar-call-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 24px;
  text-align: center;
}
.sidebar-call-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=600&q=80")
    center/cover;
}
.sidebar-call-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 71, 161, 0.72);
}
.sidebar-call-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}
.sidebar-call-label {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.sidebar-call-num {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

/* ── MAIN CONTENT ── */
.service-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Hero image */
.service-hero-img {
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 380px;
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.1);
}
.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.service-hero-img:hover img {
  transform: scale(1.03);
}

/* Content cards */
.service-content-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.07);
}
.service-content-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.service-content-card p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 0;
}
.service-content-card p + p {
  margin-top: 16px;
}

/* Benefit list */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 24px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.benefit-item i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Dual images */
.dual-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dual-img-grid img {
  width: 100%;
  /* height: 240px; */
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.4s;
}
.dual-img-grid img:hover {
  transform: scale(1.02);
}

/* FAQ */
.faq-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.faq-item {
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #e0ecf8;
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  transition:
    background 0.25s,
    color 0.25s;
  gap: 12px;
}
.faq-item.open .faq-question {
  background: var(--primary-dark);
  color: #fff;
}
.faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.35s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  background: #f9fbff;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 18px 22px;
}

/* Responsive layout */
@media (max-width: 991px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  /* On mobile sidebar goes below content */
  .service-layout {
    display: flex;
    flex-direction: column;
  }
  .service-sidebar {
    order: 2;
    width: 100%;
  }
  .service-main {
    order: 1;
  }
}
@media (max-width: 640px) {
  .service-content-card {
    padding: 24px 20px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .dual-img-grid {
    grid-template-columns: 1fr;
  }
  .dual-img-grid img {
    height: 200px;
  }
}

.referral-form-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - MAIN WRAPPER
       ════════════════════════════════════════════════════════ */
.referral-form-wrapper {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.1);
  padding: 48px 44px;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - SECTION HEADERS
       ════════════════════════════════════════════════════════ */
.referral-form__section-header {
  background: var(--primary-dark);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 10px;
  margin-bottom: 28px;
  margin-top: 32px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.referral-form__section-header:first-of-type {
  margin-top: 0;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - FORM GROUPS & ROWS
       ════════════════════════════════════════════════════════ */
.referral-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.referral-form__row--full {
  grid-template-columns: 1fr;
}

.referral-form__group {
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - LABELS
       ════════════════════════════════════════════════════════ */
.referral-form__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.referral-form__label-required {
  color: #e53e3e;
  margin-left: 2px;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - INPUT FIELDS
       ════════════════════════════════════════════════════════ */
.referral-form__input,
.referral-form__select {
  border: 1.5px solid #d6e8f8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background: var(--bg-light);
  width: 100%;
  transition: all 0.3s;
  outline: none;
}

.referral-form__input:focus,
.referral-form__select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
  background: var(--white);
}

.referral-form__input::placeholder {
  color: var(--text-muted);
}

.referral-form__textarea {
  border: 1.5px solid #d6e8f8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background: var(--bg-light);
  width: 100%;
  resize: vertical;
  min-height: 130px;
  transition: all 0.3s;
  outline: none;
}

.referral-form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
  background: var(--white);
}

.referral-form__textarea::placeholder {
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - CHECKBOX & RADIO GROUPS
       ════════════════════════════════════════════════════════ */
.referral-form__checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 12px;
}

.referral-form__checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.referral-form__checkbox-item input[type="checkbox"],
.referral-form__checkbox-item input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.referral-form__checkbox-label {
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - SIGNATURE BOX
       ════════════════════════════════════════════════════════ */
.referral-form__signature-box {
  border: 2px solid #d6e8f8;
  border-radius: 10px;
  background: var(--bg-light);
  max-width: 300px; /* limit size */
  height: 90px;
  margin-top: 12px;
  position: relative;
  cursor: crosshair;
  transition: all 0.3s;
}

.referral-form__signature-box:hover {
  border-color: var(--primary);
  background: var(--white);
}

.referral-form__signature-canvas {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}

.referral-form__signature-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - BUTTONS
       ════════════════════════════════════════════════════════ */
.referral-form__button-group {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  justify-content: center;
}

.referral-form__btn-submit {
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  width: 100%;
}

.referral-form__btn-submit:hover {
  background: transparent;
  color: var(--primary);
}

.referral-form__btn-submit:active {
  transform: scale(0.98);
}

.referral-form__btn-clear {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #e53e3e;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "DM Sans", sans-serif;
  background: #e53e3e;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.referral-form__btn-clear:hover {
  background: transparent;
  color: #e53e3e;
}

.referral-form__btn-clear:active {
  transform: scale(0.98);
}

/* ════════════════════════════════════════════════════════
       REFERRAL FORM - RESPONSIVE DESIGN
       ════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .referral-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .referral-form__checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .referral-form-wrapper {
    padding: 28px 20px;
  }

  .referral-form__row {
    gap: 16px;
  }

  .referral-form__button-group {
    flex-direction: column;
  }

  .referral-form__btn-clear {
    width: 100%;
  }

  .referral-form__section-header {
    margin-top: 24px;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .referral-form__label {
    font-size: 11px;
  }

  .referral-form__input,
  .referral-form__select,
  .referral-form__textarea {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SIMPLE GALLERY SECTION - IMAGES ONLY
   ═══════════════════════════════════════════════════════════════ */

.simple-gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.simple-gallery-section.py-lg-5 {
  padding: 60px 0;
}

@media (min-width: 992px) {
  .simple-gallery-section.py-lg-5 {
    padding: 100px 0;
  }
}

.simple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.simple-gallery-item {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.simple-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.18);
}

.simple-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.simple-gallery-item:hover .simple-gallery-img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════════════
   SIMPLE LIGHTBOX MODAL
   ═══════════════════════════════════════════════════════════════ */

.simple-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.simple-lightbox.active {
  display: flex;
}

.simple-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(4px);
  animation: simpleFadeIn 0.3s ease;
}

@keyframes simpleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.simple-lightbox-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: simpleZoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10000;
}

@keyframes simpleZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.simple-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  animation: simpleImageFade 0.5s ease;
}

@keyframes simpleImageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.simple-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
  padding: 0;
}

.simple-lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.simple-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
  padding: 0;
}

.simple-lightbox-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.simple-lightbox-prev {
  left: 20px;
}

.simple-lightbox-next {
  right: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .simple-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
  }

  .simple-gallery-item {
    height: 240px;
  }

  .simple-lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .simple-lightbox-prev {
    left: 12px;
  }

  .simple-lightbox-next {
    right: 12px;
  }

  .simple-lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .simple-gallery-section {
    padding: 60px 0;
  }

  .simple-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .simple-gallery-item {
    height: 180px;
  }

  .simple-lightbox {
    padding: 12px;
  }

  .simple-lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .simple-lightbox-close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
    font-size: 18px;
  }

}

@media (max-width: 400px) {
  .simple-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simple-gallery-item {
    height: 150px;
  }

  .simple-lightbox-prev {
    left: 4px;
  }

  .simple-lightbox-next {
    right: 4px;
  }
}
.anchor-white-text{
    color:snow !important;
    text-decoration:none !important;
}
.blog_content {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4 {
  font-family: "Playfair Display", serif;
}
.home_how_it_work_icon{
    height:70px;
}
.specialized_icon{
    height:45px;
}
.about_icon{
    height:25px;
}
.google-review-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #4285F4;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.google-review-btn:hover {
  background: #3367D6;
}
.bi .bi-twitter-x{
    display:none;
}
.team-card{
    cursor:pointer;
}
@media (max-width: 1250px) {

  .hiw-steps-row {
        gap: 60px;
}
}
@media (max-width: 800px) {
  .hiw-steps-row {
        gap: 5px;
}
  .home_how_it_work_icon{
    height:40px;
}
}