/* ============================================================
   MannpsycheK – Child Development Centre
   Global Stylesheet · style.css
   Covers: index, about, services, gallery, blog, blog-post,
           appointment, contact pages
   ============================================================ */

/* ── CSS VARIABLES premium/corporate. ──────────────────────────────────────────── */
:root {

  /* BACKGROUNDS */
  --bg-main: #f4f8ff;
  --bg-soft: #ffffff;
  --bg-section: #edf4ff;
  --light-bg: #f7faff;

  /* PRIMARY */
  --primary: #1a73e8;
  --primary-light: #4285F4;
  --primary-dark: #174ea6;

  /* ACCENT */
  --accent: #FBBC05;
  --accent-dark: #e2a800;

  /* EXTRA */
  --green: #34A853;
  --red: #EA4335;
  --primary-pale: #D2E3FC;

  /* TEXT */
  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;

  /* BASE */
  --white: #ffffff;
  --border: #d6e4ff;

  /* TYPOGRAPHY */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  /* SHADOWS */
  --shadow-sm: 0 2px 12px rgba(26,115,232,0.25);
  --shadow-md: 0 8px 28px rgba(26,115,232,0.45);
  --shadow-lg: 0 18px 50px rgba(26,115,232,0.55);

  --transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;

  --radius: 16px;
  --radius-sm: 8px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.2;
}

.section {
  padding: 60px 0;
}

.section-sm {
  padding: 40px 0;
}

a { text-decoration: none; }
p { line-height: 1.75; }
img { max-width: 100%; height: auto; }

/* ── TOP BAR ────────────────────────────────────────────────── */
/* =========================
   TOP BAR (UPDATED THEME)
========================= */

.top-bar {
  background: var(--bg-soft); /* light yellow */
  color: var(--primary);
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

/* Links */
.top-bar a {
  color: var(--primary);
  transition: color .2s;
  font-weight: 500;
}

/* Hover */
.top-bar a:hover {
  color: var(--accent);
}

/* Icons */
.top-bar i {
  color: var(--primary);
}

/* Divider (remove white fade) */
.top-bar .text-white-50 {
  color: var(--muted) !important;
}

/* Award badge */
.top-bar .badge-award {
  background: var(--accent);
  color: #1f1f1f;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.75rem;
}

/* Social icons */
.top-bar .bi-facebook,
.top-bar .bi-instagram,
.top-bar .bi-youtube,
.top-bar .bi-linkedin,
.top-bar .bi-twitter-x,
.top-bar .bi-whatsapp
 {
  font-size: 1.2rem;
  color: var(--primary);
  transition: color 0.2s, transform 0.2s;
}

.top-bar .bi-facebook:hover,
.top-bar .bi-instagram:hover,
.top-bar .bi-youtube:hover,
.top-bar .bi-linkedin:hover,
.top-bar .bi-twitter-x:hover,
.top-bar .bi-whatsapp:hover
 {
  font-size: 1.2rem;
  color: var(--accent);
  transform: translateY(-2px);
}
/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {

  background: var(--bg-soft);

  box-shadow: 0 2px 20px rgba(0,0,0,0.08);

  padding: 8px 0;

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  width: 100%;

  z-index: 999999;

  transition: transform 0.3s ease;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,115,232, 0.48);
}

.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.brand-text .tagline {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--primary) !important;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-link:hover::after,
.nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
  background: rgba(200,169,106,0.15);
}

/* Navbar CTA button */
@media(max-width:1399px){

    .nav-link{

        padding: 10px 11px !important;

        font-size: 0.92rem;
    }

    .nav-search-wrap input{

        width: 100px;
    }

    .nav-cta{

        padding: 11px 16px !important;
    }

}
.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 10px !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26,115,232,0.32);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,115,232, 0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Dropdown */
.dropdown-menu {
  border: 0 !important;
  box-shadow: var(--shadow-lg) !important;
  border-radius: 12px !important;
  padding: 8px !important;
  min-width: 220px;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: var(--primary-pale);
  color: var(--primary);
}

/* ── PAGE HERO (shared by inner pages) ─────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 0 40px;
  background: linear-gradient(
      rgba(23, 78, 166, 0.88),
      rgba(23, 78, 166, 0.88)
    );
  color: #fff;
}
.page-hero::after {
  content: '✦';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.page-hero h1,
.page-hero p,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.98) !important;
}
.page-hero .breadcrumb-item.active {
  color: rgba(255,255,255,0.98) !important;
}
.page-hero p { color: rgba(255, 255, 255, 0.75); }

.breadcrumb-item a { color: rgba(255, 255, 255, 0.65); }
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
}

.breadcrumb-item.active {
  color: rgba(255,255,255,0.8);
}

.hero-text {
  max-width: 700px;
}
/* - Top Bar ------------------------------------ */
.top-bar a {
  opacity: 0.9;
}

.top-bar a:hover {
  opacity: 1;
}
/* - About page ------------------------------------ */
.about-page .page-hero,
.service-page .page-hero,
.blog-page .page-hero,
.gallery-page .page-hero,
.contact-page .page-hero {

   background: linear-gradient(
   135deg,
   var(--dark) 0%,
   var(--primary) 100%
   );

   padding-top: 120px;
}

/* MOBILE */

@media(max-width:991px){

  .about-page .page-hero,
  .service-page .page-hero,
  .blog-page .page-hero,
  .gallery-page .page-hero,
  .contact-page .page-hero {

    padding-top: 145px;
  }

}


/* services section */
.services-section {
 padding-top: 28px!important;
}

.services-section .section-label {
  margin-bottom: 6px;
}

.services-section .section-title {
  margin-top: 0;
  margin-bottom: 10px;
}

.services-section .divider-leaf {
  margin: 8px 0 10px;
}

.services-section .section-subtitle {
  margin-top: 0;
}
.services-section .row:first-child {
  margin-top: 0;
}
/* overall p color for all the pages */
.page-hero p,
.dark-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}
/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-section); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-subtitle {
  color: #6b6b6b!important; /* or var(--text-light) */
  font-size: 1.02rem;
  margin-top: 0;
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.divider-leaf {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 12px;
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-leaf span { color: var(--primary); font-size: 1.2rem; }

/* ── HERO SLIDER (index.php) ───────────────────────────────── */
.hero-swiper { width: 100%; height: 92vh; min-height: 560px; }

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
   background: linear-gradient(
    110deg,
    rgba(23,78,166,0.45),
    rgba(66,133,244,0.35),
    transparent
  );
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: var(--accent);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat .lbl {
  font-weight: 800;
  font-size: 1.78rem;
  color: var(--accent);
  margin-top: 2px;
}

/* Swiper overrides */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px !important; }
.swiper-button-next:hover,
.swiper-button-prev:hover { background: rgba(255, 255, 255, 0.3); }
.swiper-pagination-bullet { background: white !important; opacity: 0.5 !important; }
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 22px !important;
  border-radius: 4px !important;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--primary); /* changed */
  padding: 22px 0; /* slightly increased */
  position: relative;
}

/* subtle premium top line */
.trust-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; /* increased spacing */
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.92); /* changed for dark bg */
  justify-content: flex-start;   /* changed */
  text-align: left;              /* changed */

  max-width: 220px;              /* controls wrapping */
  margin: 0 auto;                /* keeps grid balanced */
}

/* ICON UPGRADE */
.trust-item i {
    min-width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);
  border-radius: 6px;

  font-size: 14px;

  color: var(--accent); /* FIX: restore theme color */

}

/* Hover subtle effect (refined) */
.trust-item:hover {
  transform: translateY(-2px);
  transition: var(--transition);
}

/* Tablet */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    justify-content: flex-start;
    text-align: left;
  }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-primary:hover {
  background: var(--accent);
  color: #1f1f1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
}

.btn-hero-outline {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
}

.btn-primary-solid {
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-solid:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-green {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-green:hover {
  background: var(--primary);
  color: white;
}

/* CTA section buttons */
.btn-cta {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}
.btn-cta:hover {
  background: var(--accent);
  color: #1f1f1f;
  border: 2px solid var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
/* .service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card:hover::before { transform: scaleX(1); }  */

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--accent);

  transform: translateY(-8px);
  box-shadow: var(--shadow-md);

  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent)
  );

  transform: scaleX(1);
  transform-origin: left;

  transition: transform 0.3s;
}

.service-card:hover {

  transform: translateY(0);

  box-shadow: none;

  border-color: var(--border);
}

.service-card:hover::before {
  transform: scaleX(0);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  border-radius: 18px;
}
.service-card h5 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.2s, gap 0.2s;
}
.service-card:hover .service-link { opacity: 1; }
.service-link:hover { gap: 8px; color: var(--primary); }

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-img-wrap { position: relative; }
.why-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.why-badge .lbl { font-size: 0.75rem; font-weight: 600; margin-top: 2px; }

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.feature-item:hover { background: var(--primary-pale); }

.feature-icon {

  width: 48px;
  height: 48px;

  flex-shrink: 0;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );

  color: #fff;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
  0 10px 24px rgba(26,115,232,0.18);
}

/* FORCE ICON COLOR */
.feature-icon i {

  color: #fff;

  font-size: 20px;

  line-height: 1;
}
.feature-item h6 { margin: 0 0 4px; font-size: 0.95rem; }
.feature-item p { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* ── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.stat-box { text-align: center; position: relative; z-index: 1; }
.stat-box .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-box .num span { color: var(--accent); }
.stat-box .lbl { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin-top: 6px; }
.stat-divider { width: 1px; background: rgba(255, 255, 255, 0.15); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-swiper .swiper-slide {
  height: auto;
}
.test-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; 
  min-height:320px;
}

.test-card:hover {  
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  transform: translateY(-2px); 
}

.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 10px; }
.quote-icon {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 2px;
}
.test-text { color: var(--text); font-size: 0.92rem; line-height: 1.6; font-style: italic; margin-bottom: 15px; margin-top: 5px;flex-grow: 1; }

.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.test-author .name { font-weight: 600; font-size: 0.9rem; }
.test-author .role { font-size: 0.78rem; color: var(--muted); }

/* Google Reviews cards */
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }

.g-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4285F4;
  margin-bottom: 14px;
}
.g-logo span { font-size: 1.1rem; }
.review-text { color: var(--text); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }

.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
}
.reviewer .name { font-weight: 600; font-size: 0.88rem; }
.reviewer .date { font-size: 0.75rem; color: var(--muted); }

.google-rating-box {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  text-align: center;
}
.big-rating {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4285F4;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  margin-top: 14px;
}
.google-btn:hover { background: #3367D6; color: white; transform: translateY(-1px); }

.api-note {
  background: #fff8e8;
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #7a5a00;
}
.api-note code { background: rgba(0,0,0,0.06); padding: 1px 5px; border-radius: 4px; font-size: 0.8rem; }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body { padding: 22px; }
.blog-cat {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.blog-body h5 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body h5 a { color: var(--dark); transition: color 0.2s; }
.blog-card:hover .blog-body h5 a { color: var(--primary); }
.blog-excerpt { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: 0.8rem; color: var(--muted); }
.blog-meta i { color: var(--primary); }

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.read-more:hover { gap: 8px; color: var(--primary); }

/* Featured blog post */
.blog-featured {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  transition: all 0.3s;
}
.blog-featured:hover { box-shadow: 0 16px 50px rgba(26,115,232, 0.5); }
.blog-featured .featured-img { flex: 0 0 45%; overflow: hidden; }
.blog-featured .featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-featured:hover .featured-img img { transform: scale(1.04); }
.blog-featured .featured-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }

.featured-label {
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Blog sidebar */
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-card h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-pale);
}
.sidebar-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-post:last-child { border: none; }
.sidebar-post img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.sidebar-post .title { font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.35; transition: color 0.2s; }
.sidebar-post:hover .title { color: var(--primary); }
.sidebar-post .date { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

.category-badge {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.category-badge:hover,
.category-badge.active { background: var(--primary); color: white; }

.search-box { display: flex; }
.search-box input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font-body);
}
.search-box input:focus { border-color: var(--primary); }
.search-box button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(31,77,58,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:first-child img { height: 100%; min-height: 416px; }

/* Gallery page masonry */
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry::after{
    content:'';
    display:block;
    clear:both;
}
.cta-strip{
    clear: both;
    margin-top: 40px;
}
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 16px; display: block; }
.gallery-masonry .gallery-item img { height: 200px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; align-items: center; }
.filter-btn {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
   z-index: 9999999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.show { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 96%;
  max-height: 72vh;
  border-radius: 14px;
  object-fit: contain;
  pointer-events: none;
}
.lb-close {
  position: fixed;

  top: 72px;

  right: 12px;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(0,0,0,0.55);

  backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 1.4rem;

  cursor: pointer;

  z-index: 99999999;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.25); }
.lb-nav {
 position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  z-index: 999999;
  color: white; font-size: 1.8rem; cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10001;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-caption {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: white; background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px; border-radius: 20px; font-size: 0.88rem; white-space: nowrap;
}
@media(max-width:768px){

  .lightbox{

    padding: 10px;
  }

  .lb-nav{

    width: 40px;

    height: 40px;

    font-size: 1.1rem;
  }

  .lb-close{

    width: 40px;

    height: 40px;

    font-size: 1.4rem;
  }

  .lb-caption{

    max-width: 92%;

    white-space: normal;

    text-align: center;

    font-size: 0.8rem;
  }

}
/* ── CONTACT / MAP ──────────────────────────────────────────── */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border: none; }
.contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-row strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-row span { font-size: 0.9rem; color: var(--muted); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── APPOINTMENT FORM ───────────────────────────────────────── */
.appt-form {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.appt-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.appt-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 28px 36px;
}
.appt-card-header h3 { color: white; font-size: 1.4rem; margin-bottom: 4px; }
.appt-card-header p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin: 0; }
.appt-card-body { padding: 36px; }

.form-label { font-weight: 600; font-size: 0.85rem; color: var(--dark); margin-bottom: 6px; }
.form-label span { color: #e74c3c; }
textarea.form-control{
  height: auto;
  min-height: 120px;
  resize: none;
  padding-top: 16px;
}
.form-control,
.form-select {
  height: 46px;
  border-radius: 14px;
  /* border: 2px solid #dbe7ff; */
  background: #fff;
  color: var(--dark);
  box-shadow: none !important;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
 
}
.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  outline: none;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 4px rgba(66,133,244,0.10),
    0 10px 24px rgba(66,133,244,0.08) !important;
}
.form-control.error { border-color: #e74c3c; }
.error-msg { color: #e74c3c; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-control.error + .error-msg { display: block; }

.btn-submit {
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  width: 100%;
  font-size: 1rem;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Multi-step form */
.steps-bar { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
.step-dot { display: flex; flex-direction: column; align-items: center; flex: 1; }
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--border);
  color: var(--muted);
  background: white;
  transition: all 0.3s;
  position: relative; z-index: 1;
}
.step-dot.active .step-circle {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(26,115,232, 0.6);
}
.step-dot.done .step-circle {
  background: var(--primary-pale);
  color: var(--primary);
  border-color: var(--primary);
}
.step-label { font-size: 0.72rem; color: var(--muted); margin-top: 5px; text-align: center; font-weight: 500; }
.step-dot.active .step-label { color: var(--primary); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 -1px; position: relative; top: -12px; }
.step-line.done { background: var(--primary); }

.form-section { display: none; }
.form-section.active { display: block; }

.service-selector { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-opt {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
}
.svc-opt:hover { border-color: var(--primary); background: var(--primary-pale); }
.svc-opt.selected { border-color: var(--primary); background: var(--primary-pale); color: var(--primary); font-weight: 600; }
.svc-opt input[type=checkbox] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.svc-opt i { color: var(--primary); flex-shrink: 0; }

.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.time-slot:hover { border-color: var(--primary); color: var(--primary); }
.time-slot.selected { background: var(--primary); color: white; border-color: var(--primary); }

.btn-next, .btn-prev, .btn-submit-final {
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}
.btn-next, .btn-submit-final { background: var(--primary); color: white; }
.btn-next:hover, .btn-submit-final:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-prev { background: var(--light-bg); color: var(--text); }
.btn-prev:hover { background: var(--border); }

/* Appointment success */
.success-screen { display: none; text-align: center; padding: 48px 24px; }
.success-icon {
  width: 80px; height: 80px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-confirm {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  padding: 13px 24px; border-radius: 10px;
  font-weight: 700; transition: all 0.2s;
}
.wa-confirm:hover { background: #1ebe5d; color: white; transform: translateY(-1px); }

/* Appointment sidebar */
.info-card {
  background: white; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); margin-bottom: 20px;
}
.info-card h6 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary);
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-pale);
}
.info-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border: none; }
.info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--primary-pale); color: var(--primary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.info-row strong { display: block; font-size: 0.82rem; margin-bottom: 2px; }
.info-row span { font-size: 0.88rem; color: var(--muted); }
.benefit-badge { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.benefit-badge:last-child { border: none; }
.benefit-badge i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.benefit-badge span { font-size: 0.88rem; }

.wa-sidebar {
  background: linear-gradient(135deg, #075e54, #128c7e);
  border-radius: var(--radius); padding: 22px;
  text-align: center; color: white;
}
.wa-sidebar p { color: rgba(255, 255, 255, 0.85); font-size: 0.88rem; margin-bottom: 14px; }
.wa-btn-sidebar {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  padding: 11px 22px; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; transition: all 0.2s;
}
.wa-btn-sidebar:hover { background: #1ebe5d; color: white; transform: translateY(-1px); }

.review-mini { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.review-mini:last-child { border: none; }
.review-mini .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.review-mini .stars { color: #FBBC04; font-size: 0.75rem; }
.review-mini .name { font-size: 0.82rem; font-weight: 600; }
.review-mini .text { font-size: 0.78rem; color: var(--muted); }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
/* .hero-img-strip { display: flex; gap: 12px; overflow: hidden; height: 220px; margin-top: 30px; }
.hero-img-strip img { height: 220px; flex: 1; object-fit: cover; border-radius: 12px 12px 0 0; filter: brightness(0.7); border-radius: 8px; } */

/* HERO IMAGE STRIP */
.hero-img-strip{

  display: flex;

  gap: 20px;

  overflow: hidden;

  padding-top: 35px;

  position: relative;
}

.hero-img-strip img{

  width: 320px;

  height: 220px;

  object-fit: cover;

  border-radius: 24px;

  flex-shrink: 0;

  box-shadow: var(--shadow-lg);

  border: 4px solid rgba(255,255,255,0.75);

  animation:none;
}

/* DIFFERENT SPEED FEEL */
.hero-img-strip img:nth-child(even){
  margin-top: 25px;
}

/* ANIMATION */
@keyframes heroStripMove{

  0%{
    transform: translateX(-80px);
  }

  50%{
    transform: translateX(80px);
  }

  100%{
    transform: translateX(-80px);
  }

}

/* HOVER PAUSE */
.hero-img-strip:hover img{
  animation-play-state: paused;
}

/* MOBILE */
@media(max-width:768px){

  .hero-img-strip{

    gap: 14px;

    padding-top: 25px;
  }

  .hero-img-strip img{

    width: 220px;

    height: 160px;

    border-radius: 18px;
  }

}

.story-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.story-badge {
  background: var(--accent); color: var(--dark);
  border-radius: var(--radius); padding: 18px 22px;
  text-align: center; box-shadow: var(--shadow-md);
  position: absolute; bottom: -20px; right: -20px;
}
.story-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.story-badge .lbl { font-size: 0.75rem; font-weight: 600; }

.highlight-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin: 4px;
}

.mv-card {
  background: white; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); height: 100%;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.mv-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-icon {
  width: 56px; height: 56px;
  background: var(--primary-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary); margin-bottom: 18px;
}
.mv-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.mv-card p { color: var(--muted); font-size: 0.92rem; }

.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: white;
  transition: all 0.3s; height: 100%;
}
.value-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.value-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.value-item h6 { margin: 0 0 4px; font-size: 0.95rem; }
.value-item p { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* Team */
.team-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all 0.3s; text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img { height: 240px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(15, 41, 38, 0.85));
  opacity: 0; transition: opacity 0.3s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay .socials a { color: white; margin: 0 6px; font-size: 1rem; transition: color 0.2s; }
.team-overlay .socials a:hover { color: var(--accent); }
.team-body { padding: 20px; }
.team-body h5 { font-size: 1.05rem; margin-bottom: 4px; }
.team-body .role { color: var(--primary); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.team-body p { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
.cert-badge {
  display: inline-block; background: var(--primary-pale);
  color: var(--primary); font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; margin: 2px;
}

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -28px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item h6 { font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; }
.timeline-item .year {
  display: inline-block;
  background: var(--accent); color: var(--dark);
  font-size: 0.72rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px; margin-bottom: 6px;
}
.timeline-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ── SERVICES PAGE ──────────────────────────────────────────── */
.service-nav {
  background: white;
  position: sticky;
  top: 82px;
   z-index: 99990;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
  border-bottom: 1px solid var(--border);
  overflow: hidden; /* prevents weird overflow */
}

.service-nav-inner { display: flex; overflow-x: auto; scrollbar-width: none;gap: 8px;  padding-top: 14px;padding-bottom: 14px; }
.service-nav-inner::-webkit-scrollbar { display: none; }
@media(max-width:768px){

  .service-nav{

    top: 135px;

  }

}
.snav-item {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--text);
  font-size: 0.84rem; font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s; flex-shrink: 0;
}
.snav-item:hover, .snav-item.active { color: var(--primary); border-bottom-color: var(--primary); }

.svc-section { padding: 80px 0; scroll-margin-top: 130px; }
.svc-section:nth-child(even) { background: var(--light-bg); }

.svc-icon-lg {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(26,115,232, 0.7);
}
.svc-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; height: auto; }

.condition-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary-pale); color: var(--primary);
  font-size: 0.8rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px; margin: 3px;
  border: 1px solid rgba(26,115,232, 0.45);
}

.process-steps { display: flex; flex-direction: column; gap: 16px; }
.process-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--primary); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.process-step h6 { margin: 0 0 3px; font-size: 0.95rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.benefit-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.benefit-item:last-child { border: none; }
.benefit-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.benefit-item span { font-size: 0.9rem; line-height: 1.5; }

.accordion-button { font-weight: 600; font-size: 0.92rem; background: white !important; color: var(--dark) !important; }
.accordion-button:not(.collapsed) { color: var(--primary) !important; background: var(--primary-pale) !important; }
.accordion-button:focus { box-shadow: none; }
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 8px; overflow: hidden; }
.accordion-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.svc-cta {
  background: linear-gradient(135deg, var(--primary), #0d4d3f);
  border-radius: var(--radius); padding: 36px;
  color: white; text-align: center;
}
.svc-cta h4 { color: white; font-size: 1.4rem; margin-bottom: 8px; }
.svc-cta p { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; margin-bottom: 20px; }

/* ── BLOG POST (article) ────────────────────────────────────── */
.reading-progress {
  position: fixed; top: 72px; left: 0; right: 0;
  height: 3px; background: rgba(0, 0, 0, 0.08); z-index: 999;
}
.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  transition: width 0.1s;
}

.article-hero { position: relative; height: 460px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,30,25,0.3) 0%, rgba(10,30,25,0.85) 100%);
}
.article-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 0; }
.article-cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--dark);
  padding: 5px 14px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.article-hero-content h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  color: white; font-weight: 800; line-height: 1.2; max-width: 740px;
}
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 16px; }
.article-meta span { color: rgba(255,255,255,0.75); font-size: 0.85rem; display: flex; align-items: center; gap: 5px; }

.article-layout { padding: 60px 0; }
.article-content { font-size: 1rem; line-height: 1.85; color: var(--text); }
.article-content p { margin-bottom: 1.4rem; }
.article-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.article-content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.8rem; }
.article-content ul,
.article-content ol { margin-bottom: 1.4rem; padding-left: 1.5rem; }
.article-content ul li,
.article-content ol li { margin-bottom: 0.6rem; line-height: 1.7; }
.article-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-pale);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--text);
}
.article-content blockquote strong { color: var(--primary); font-style: normal; }
.article-content .highlight-box {
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 1.5rem 0;
  border: 1px solid rgba(26,115,232, 0.45);
}
.article-content .highlight-box h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.article-content img { border-radius: var(--radius-sm); box-shadow: var(--shadow-md); width: 100%; margin: 1.5rem 0; }

.share-bar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; transition: all 0.2s;
  cursor: pointer; border: none;
}
.share-btn:hover { transform: scale(1.12); }
.share-btn.fb { background: #1877F2; }
.share-btn.wa { background: #25D366; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.li { background: #0A66C2; }
.share-btn.cp { background: var(--primary); }
.share-label { font-size: 0.7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }

.author-card {
  background: var(--primary-pale);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid rgba(26,115,232, 0.35); margin: 40px 0;
}
.author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.author-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.author-role { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.author-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-top: 6px; }

.tag-cloud a {
  display: inline-block;
  background: var(--primary-pale); color: var(--primary);
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 4px; margin: 3px;
  transition: all 0.2s;
}
.tag-cloud a:hover { background: var(--primary); color: white; }

.related-post { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.related-post:last-child { border: none; }
.related-post img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.related-post .rtitle { font-weight: 600; font-size: 0.9rem; line-height: 1.4; color: var(--dark); transition: color 0.2s; }
.related-post:hover .rtitle { color: var(--primary); }
.related-post .rmeta { font-size: 0.76rem; color: var(--muted); margin-top: 4px; }

/* Blog sidebar CTA */
.cta-sidebar {
  background: linear-gradient(135deg, var(--primary), #0d4d3f);
  border-radius: var(--radius); padding: 24px;
  text-align: center; color: white; margin-bottom: 24px;
}
.cta-sidebar h6 { color: white; font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.cta-sidebar p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 16px; }
.btn-cta-s {
  background: var(--accent); color: var(--dark);
  font-weight: 700; padding: 11px 20px;
  border-radius: 8px; border: none; font-size: 0.88rem;
  transition: all 0.2s; display: inline-block;
}
.btn-cta-s:hover { background: var(--accent-dark); color: var(--dark); transform: translateY(-1px); }

/* ── CTA SECTIONS ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::after {
  content: '✦';
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-size: 18rem; color: rgba(255,255,255,0.03); pointer-events: none;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
.cta-title {
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-strip {
  background: linear-gradient(135deg, var(--primary), #0d4d3f);
  border-radius: var(--radius); padding: 50px;
  text-align: center;
}
.cta-strip h3 { color: white; font-size: 1.8rem; margin-bottom: 10px; }
.cta-strip p { color: rgba(255, 255, 255, 0.75); }

/* ================= CTA STRIP ================= */

.cta-strip{
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(
    135deg,
    #0f172a 0%,
    #174ea6 45%,
    #1a73e8 100%
    );
    border-radius: 28px;
    padding: 40px 24px;
    text-align: center;
    margin-top: 50px;
    box-shadow:
    0 25px 60px rgba(26,115,232,0.18);
    isolation: isolate;
}

/* GLOW EFFECT */
.cta-strip::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:
    radial-gradient(
    rgba(255,255,255,0.08),
    transparent 70%
    );
    top:-120px;
    right:-100px;
    border-radius:50%;
    z-index:-1;
}

/* ICON */

.cta-icon{
    width:90px;
    height:90px;
    margin:0 auto 24px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(
    135deg,
    #fbbc05,
    #ffcf40
    );
    box-shadow:
    0 15px 35px rgba(251,188,5,0.35);
    font-size:38px;
    color:#111827;
}

/* HEADING */

.cta-strip h3{

    color:#ffffff;
    font-size:34px;
    line-height:1.2;
    text-shadow:
    0 2px 12px rgba(0,0,0,0.25);
    font-weight:800;
    margin-bottom:14px;
    font-family:'Playfair Display', serif;
}

/* TEXT */

.cta-strip p{
    color:rgba(255,255,255,0.82);
    max-width:700px;
    margin:0 auto 22px;
    font-size:17px;
    line-height:1.8;
}

/* BUTTON */

.btn-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#ffffff;
    color:#174ea6;
    padding:16px 34px;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:0.3s ease;
    box-shadow:
    0 12px 30px rgba(255,255,255,0.18);
}

.btn-cta:hover{
    transform:translateY(-4px);
    background:#f8fbff;
    color:#0f172a;
}

/* MOBILE */

@media(max-width:768px){

.cta-strip{

    padding:50px 20px;

}

.cta-strip h3{

    font-size:30px;

}

.cta-strip p{
    font-size:15px;
}

.cta-icon{
    width:70px;
    height:70px;
    font-size:30px;
}

}

/* ── AWARDS ─────────────────────────────────────────────────── */
.section .row.g-4 > [class*="col"] {
  display: flex;
}
.award-badge {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 

  height: 100%; /* KEY FIX */
  width: 100%;
  background: white; border: 2px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  text-align: center; transition: all 0.3s;
}
.award-badge small {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.4;
}
.award-badge:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.award-badge i { font-size: 2.2rem; color: var(--accent); margin-bottom: 10px;}

/* ── WHATSAPP FLOATING BUTTON ───────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 95px; right: 18px; z-index: 10000;}
@media(max-width:768px){

  .whatsapp-float{
    bottom: 105px;
  }

}
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: all 0.3s; cursor: pointer; border: none; position: relative;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6); background: #1ebe5d; }
.wa-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite; opacity: 0;
}
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: white; color: var(--dark);
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap; box-shadow: var(--shadow-md);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute; top: 50%; left: 100%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: white;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL TO TOP ──────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary); color: white;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md);
  cursor: pointer; opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 9999999;
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination .page-link {
  color: var(--primary); border-color: var(--border);
  border-radius: 8px; margin: 0 3px; padding: 10px 16px;
}
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.pagination .page-link:hover { background: var(--primary-pale); color: var(--primary); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}
.footer-brand .name { font-family: var(--font-display); font-size: 1.4rem; color: white; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 10px; }

footer h6 {
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--accent); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin-top: 40px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }

.social-links a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.2s;
}
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-2px); }

/* ── MOBILE STICKY BAR ──────────────────────────────────────── */
.sticky-phone-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--primary); z-index: 998;
  padding: 10px 20px;
  z-index: 9999;
}
.sticky-phone-bar a {
  color: white; font-weight: 600;
  display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
}
.sticky-phone-bar .wa-link { background: #25D366; padding: 8px 16px; border-radius: 8px; }
.sticky-phone-bar .call-link { border: 1.5px solid rgba(255,255,255,0.4); padding: 8px 16px; border-radius: 8px; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .gallery-masonry { columns: 3; }
}

@media (max-width: 991px) {
  .hero-swiper { height: 75vh; min-height: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item:first-child img { min-height: auto; height: 200px; }
  .why-badge { bottom: 10px; right: 10px; padding: 12px 16px; }
  .gallery-masonry { columns: 2; }
  .blog-featured { flex-direction: column; }
  .blog-featured .featured-img { height: 220px; flex: none; }
  .share-bar { flex-direction: row; justify-content: center; position: static; margin-bottom: 24px; }
  .article-hero { height: 300px; }
}

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .trust-bar .d-flex { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .trust-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 18px; }
  .sticky-phone-bar { display: flex; align-items: center; justify-content: space-between; }
  .hero-img-strip { height: 160px; }
  .hero-img-strip img { height: 160px; }
  .service-selector { grid-template-columns: 1fr; }
  .stat-box .num { font-size: 2.4rem; }
}

@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .hero-swiper { height: 85vh; }
  .appt-card-body { padding: 20px; }
}

/* =========================
   🔥 TEXT VISIBILITY FIX
========================= */

/* Section Titles */
.section-title,
.hero-title,
.cta-title,
.page-hero h1 {
  color: #ffffff !important;
}

/* Paragraphs */
.hero-desc,
.page-hero p {
  color: rgba(255,255,255,0.85) !important;
}

/* Headings inside sections */
.section h1,
.section h2,
.section h3,
.section h4,
.section h5 {
  color: var(--primary) !important;
}

/* Service section icons + labels */
.service-card h5,
.service-card p,
.service-link {
  color: var(--primary) !important;
}

/* Specific content you mentioned */
.service-card,
.svc-overview-card,
.feature-item h6,
.feature-item p {
  color: var(--primary);
}

/* Icons */
.service-icon,
.feature-icon {
  color: var(--primary);
}

/* Remove white text from all sections except dark backgrounds */
.section,
.section-alt {
  color: var(--primary);
}

.stats-section,
.cta-section {
  color: white;
}

.stats-section .section-title
{
  color: white;
}

.cta-section .cta-title {
  color: var(--accent) !important;
}

.brand-logo {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius:50%;
  border:1px solid #1f4d3a;
  padding: 1px;
   /* THIS is the key part */
  object-position: center;
}

/* Align logo + text nicely */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .section {
    padding: 40px 0;
  }
}

img {
  max-width: 100%;
}

.hero-service-card {
  display: block; /* IMPORTANT */
  text-decoration: none;
}

.glass-box {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  height: 100%;
  transition: all 0.3s ease;
}

.glass-box .icon {
  font-size: 1.6rem;
  color: var(--accent); /* gold theme */
}

.glass-box .label {
  color: white;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* 🔥 HOVER EFFECT */
.hero-service-card:hover .glass-box {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.services-btn{
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.services-btn:hover{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(66,133,244,0.18);
}

.services-btn i{
  transition: transform 0.3s ease;
}

.services-btn:hover i{
  transform: translateX(4px);
}
/* FOUNDER SECTION */
.founder-section{
  background: var(--bg-main);
}

.founder-content p{

  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
}

.founder-image-wrapper{

  margin: 50px 0 35px;

  position: relative;
}

.founder-full-image{

  width: 100%;
  height: 520px;

  object-fit: cover;

  border-radius: 28px;

  box-shadow: var(--shadow-lg);

  border: 6px solid rgba(255,255,255,0.9);
}

.founder-quote-box{

  background: linear-gradient(
    135deg,
    rgba(66,133,244,0.08),
    rgba(251,188,5,0.08)
  );

  border-left: 5px solid var(--primary);

  padding: 40px;

  border-radius: 24px;

  margin-bottom: 40px;
}

.founder-quote-box i{

  font-size: 2.5rem;

  color: var(--primary);

  display: inline-block;

  margin-bottom: 18px;
}

.founder-quote-box p{

  font-size: 1.35rem;

  line-height: 1.9;

  font-style: italic;

  color: var(--dark);

  margin-bottom: 18px;
}

.founder-quote-box span{

  font-weight: 700;

  color: var(--primary);

  font-size: 1rem;
}

.founder-tags{

  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 40px;
}

.founder-tags span{

  background: rgba(66,133,244,0.08);

  border: 1px solid rgba(66,133,244,0.14);

  color: var(--primary);

  padding: 10px 18px;

  border-radius: 40px;

  font-size: 0.9rem;

  font-weight: 600;
}

@media(max-width:991px){

  .founder-full-image{
    height: 320px;
  }

  .founder-quote-box{
    padding: 28px;
  }

  .founder-quote-box p{
    font-size: 1.08rem;
  }

}

/* CONTACT MAP */
.contact-map-wrap{

  overflow: hidden;

  border-radius: 28px;

  box-shadow: var(--shadow-lg);

  border: 1px solid var(--border);
}

.contact-map-wrap iframe{

  width: 100%;

  height: 500px;

  border: 0;

  display: block;
}

/* REVIEW MINI CARD */
.review-card-mini{

  background: var(--white);

  border-radius: 22px;

  padding: 28px;

  height: 100%;

  border: 1px solid var(--border);

  transition: all 0.3s ease;
}

.review-card-mini:hover{

  transform: translateY(-6px);

  box-shadow: var(--shadow-md);
}

.review-card-mini p{

  margin: 0;

  color: var(--text);

  line-height: 1.8;

  font-size: 0.95rem;
}

.review-card-mini .name{

  font-weight: 700;

  color: var(--dark);
}

.review-card-mini .stars{

  color: #fbbc05;

  font-size: 0.9rem;
}

/* MAP CARD */
.map-card{

  position: relative;

  border-radius: 32px;

  overflow: hidden;

  transition: all 0.45s ease;
}

/* GLOW BG */
.map-glow{

  position: absolute;

  inset: -2px;

  background: linear-gradient(
    135deg,
    rgba(66,133,244,0.35),
    rgba(251,188,5,0.22),
    rgba(52,168,83,0.22)
  );

  filter: blur(24px);

  opacity: 0;

  transition: all 0.45s ease;

  z-index: 0;
}

/* MAP WRAP */
.contact-map-wrap{

  position: relative;

  overflow: hidden;

  border-radius: 30px;

  border: 1px solid rgba(66,133,244,0.14);

  box-shadow: var(--shadow-lg);

  z-index: 2;

  transition: all 0.45s ease;

  background: #fff;
}

/* MAP */
.contact-map-wrap iframe{

  width: 100%;

  height: 520px;

  border: 0;

  display: block;

  transition: transform 0.7s ease-in-out;
}

/* HOVER */
.map-card:hover .contact-map-wrap{

  transform: translateY(-6px);

  box-shadow:
    0 24px 60px rgba(66,133,244,0.18);

  border-color: rgba(66,133,244,0.25);
}

/* ZOOM EFFECT */
.map-card:hover iframe{

  transform: scale(1.01);
}

/* GLOW ON HOVER */
.map-card:hover .map-glow{

  opacity: 1;
}

/* MOBILE */
@media(max-width:768px){

  .contact-map-wrap iframe{

    height: 380px;
  }

}

/* ACCREDITATION SECTION */
.accreditation-section{

  background: linear-gradient(
    180deg,
    var(--bg-main),
    #fff
  );

  overflow: hidden;
}

/* SLIDER */
.accreditation-slider{

  position: relative;

  overflow: hidden;

  width: 100%;

  padding: 10px 0 20px;
}

/* TRACK */
.accreditation-track{

  display: flex;

  align-items: center;

  gap: 28px;

  width: max-content;

  animation: accreditationMove 40s linear infinite;
}

/* ITEM */
.accreditation-item{

  width: 220px;
  height: 140px;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(10px);

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  border: 1px solid rgba(66,133,244,0.12);

  box-shadow: var(--shadow-sm);

  transition: all 0.4s ease;

  flex-shrink: 0;
}

/* IMAGE */
.accreditation-item img{

  max-width: 100%;
  max-height: 70px;

  object-fit: contain;

  transition: all 0.4s ease;

  filter: grayscale(10%);
}

/* HOVER */
.accreditation-item:hover{

  transform: translateY(-8px);

  border-color: rgba(66,133,244,0.22);

  box-shadow:
    0 18px 40px rgba(66,133,244,0.14);

  background: #fff;
}

.accreditation-item:hover img{

  transform: scale(1.06);

  filter: grayscale(0%);
}

/* ANIMATION */
@keyframes accreditationMove{

  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(-50%);
  }

}

/* PAUSE ON HOVER */
.accreditation-slider:hover .accreditation-track{

  animation-play-state: paused;
}

/* MOBILE */
@media(max-width:768px){

  .accreditation-item{

    width: 170px;
    height: 110px;

    padding: 18px;
  }

  .accreditation-item img{

    max-height: 55px;
  }

}
.navbar-nav{

    gap: 6px;
}

/* NAV SEARCH */
.nav-search-wrap{

    height: 36px;

    min-width: 120px;

    max-width: 120px;

    background: rgba(66,133,244,0.05);

    border: 1px solid rgba(66,133,244,0.12);

    border-radius: 999px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    transition: all 0.3s ease;
}

/* HOVER */
.nav-search-wrap:hover{

    border-color: rgba(66,133,244,0.22);

    background: rgba(66,133,244,0.08);
}

/* FOCUS */
.nav-search-wrap:focus-within{

    background: #fff;

    border-color: var(--primary);

    box-shadow:
      0 0 0 4px rgba(66,133,244,0.10);
}

/* SEARCH ICON */
.nav-search-wrap i{

    color: #5f8fe9;

    font-size: 0.8rem;

    flex-shrink: 0;

    transition: all 0.3s ease;
}

.nav-search-wrap:focus-within i{

    color: var(--primary);
}

/* INPUT */
.nav-search-wrap input{

    border: none;

    background: transparent;

    outline: none;

    width: 100%;

    font-size: 0.88rem;

    font-weight: 500;

    color: var(--dark);
}

/* PLACEHOLDER */
.nav-search-wrap input::placeholder{

    color: #576072;

    font-size: 0.58rem;

    font-weight: 500;
}
.wa-title{
  background: #ffffff;
  color: var(--accent) !important;
  padding: 2px 4px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.08rem !important;
}

/* MOBILE VIEWPORT FIX */

html,
body{
  overflow-x:hidden;
  width:100%;
}

.sticky-phone-bar{

  position: fixed;

  left: 0;
  right: 0;

  bottom: env(safe-area-inset-bottom, 0);

  z-index: 9999;

  transform: translateZ(0);
}

.whatsapp-float{

  position: fixed;

  right: 18px;

  bottom: 90px;

  z-index: 10000;

  transform: translateZ(0);
}

/* =========================================
   MOBILE STICKY NAVBAR FIX
========================================= */

html,
body{
  overflow-x:hidden;
}

body{
  position:relative;
}

/* TOPBAR NORMAL */
.top-bar{
  position:relative;
  z-index:99999;
}

/* NAVBAR */
.navbar{

  background: var(--bg-soft);

  box-shadow: 0 2px 20px rgba(0,0,0,0.08);

  padding: 8px 0;

  position: fixed;

  left: 0;

  right: 0;

  width: 100%;

  z-index: 999999;

  transition:
  transform .3s ease,
  top .3s ease;
}

/* DESKTOP HERO FIX */

@media(min-width:992px){

  .hero-swiper{

    margin-top: 105px;
  }

}

/* MOBILE */
@media(max-width:991px){

  .navbar{

    top:0;
  }

  .navbar-collapse{

    background: var(--bg-soft);

    max-height: calc(100vh - 80px);

    overflow-y:auto;

    padding-bottom:20px;
  }

}



/* SWIPER FIX */
.swiper,
.swiper-wrapper,
.swiper-slide{

  z-index:1 !important;
}

/* NAVBAR ALWAYS ABOVE */
.navbar {

  z-index:999999 !important;
}

/* =========================================
   MOBILE HERO FIX
========================================= */

@media(max-width:991px){

  .navbar{

    top:0;
  }

  .navbar-collapse{

    background: var(--bg-soft);

    max-height: calc(100vh - 80px);

    overflow-y:auto;

    padding-bottom:20px;
  }

  .hero-swiper{

    margin-top: 74px;

    height: calc(100vh - 74px);

    min-height: 620px;

    z-index:1;
  }

  .hero-content{

    padding-top: 90px;
  }

  .hero-title{

    font-size: 2.4rem;

    line-height: 1.08;
  }

  .hero-desc{

    font-size: 1rem;

    line-height: 1.6;
  }

  .hero-actions{

    margin-top: 18px;
  }

  .hero-stats{

    margin-top: 24px;
  }
}

/* CONTENT PAGES */

.content-page{

  padding-top: 90px;
}

@media(max-width:991px){

  .content-page{

    padding-top: 120px;
  }

}

img{
  max-width:100%;
  height:auto;
}

/* Accessibility: Hides element visually but keeps it available for Screen Readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* buttons view all for gallery and blog */
.galleryBlog-btn{

  display:inline-flex;
  align-items:center;
  gap:6px;

  padding:12px 22px;

  background:transparent !important;

  color:var(--primary) !important;

  border:2px solid var(--primary) !important;

  border-radius:12px;

  font-weight:600;

  text-decoration:none;

  transition:all .3s ease;

}

/* HOVER */
.galleryBlog-btn:hover{

  background:var(--primary) !important;

  color:#fff !important;

  border-color:var(--primary) !important;

  transform:translateY(-2px);

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

/* ICON */
.galleryBlog-btn i{

  transition:transform .3s ease;

}

/* FIXED TYPO HERE */
.galleryBlog-btn:hover i{

  transform:translateX(4px);

}

/*------ stars ----- */
.stars{
  color:#f4b400;
  font-size:14px;
}

/* SWIPER FIX */
.testimonial-swiper .swiper-wrapper{
  align-items: stretch;
}

.testimonial-swiper .swiper-slide{
  width:auto !important;
  flex-shrink:0;
  height:auto;
}

/* SAFE OVERFLOW FIX */
html{
  overflow-x:hidden;
}

body{
  overflow-x:clip;
}

/* SWIPER FIX */
.swiper{
  overflow:hidden;
}
/* FORCE TESTIMONIAL SLIDER LAYOUT */
.testimonial-swiper{
  width:100%;
  overflow:hidden;
}

.testimonial-swiper .swiper-wrapper{
  display:flex !important;
}

.testimonial-swiper .swiper-slide{

  width:calc((100% - 48px) / 3) !important;

  margin-right:24px !important;

  flex-shrink:0 !important;
}

/* TABLET */
@media(max-width:1199px){

  .testimonial-swiper .swiper-slide{
    width:calc((100% - 24px) / 2) !important;
  }

}

/* MOBILE */
@media(max-width:767px){

  .testimonial-swiper .swiper-slide{
    width:100% !important;
    margin-right:0 !important;
  }

}

/* =========================================
   COMPACT FOUNDER INTRO
========================================= */

.founder-intro-section{

  position:relative;

  margin-top:-38px;

  z-index:20;

  padding-bottom:10px;
}

/* BOX */
.founder-intro-box{

  max-width:980px;

  margin:auto;

  background:#fff;

  border-radius:18px;

  padding:26px 34px;

  border:1px solid rgba(26,115,232,0.08);

  box-shadow:
  0 8px 30px rgba(15,23,42,0.05);

}

/* ROW */
.founder-intro-box{

  display:flex;

  align-items:flex-start;

  gap:22px;
}

/* ICON */
.quote-icon{

  flex-shrink:0;

  width:52px;
  height:52px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(26,115,232,0.08);

  color:var(--primary);

  font-size:24px;

}

/* CONTENT */
.founder-intro-content{

  flex:1;
}

/* TEXT */
.founder-intro-text{

  font-size:1.02rem;

  line-height:1.9;

  color:#24324a;

  margin-bottom:10px;

  font-weight:500;
}

/* AUTHOR */
.founder-intro-author{

  font-size:.95rem;

  font-weight:700;

  color:var(--primary);

}

/* MOBILE */
@media(max-width:768px){

  .founder-intro-section{

    margin-top:-28px;
  }

  .founder-intro-box{

    padding:22px 18px;

    gap:15px;

    border-radius:16px;
  }

  .quote-icon{

    width:44px;
    height:44px;

    font-size:20px;
  }

  .founder-intro-text{

    font-size:.95rem;

    line-height:1.75;
  }

}

/* =========================================
   FOUNDER PREVIEW
========================================= */

.founder-preview-section{

  padding:70px 0;
}

/* BOX */
.founder-preview-box{

  background:#fff;

  border-radius:26px;

  padding:34px;

  display:flex;

  align-items:center;

  gap:40px;

  border:1px solid rgba(26,115,232,0.08);

  box-shadow:
  0 12px 40px rgba(15,23,42,0.06);

}

/* IMAGE */
.founder-preview-image{

  width:240px;

  flex-shrink:0;
}

.founder-preview-image img{

  width:100%;

  border-radius:22px;

  object-fit:cover;

  aspect-ratio:1 / 1.15;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.08);
}

/* CONTENT */
.founder-preview-content{

  flex:1;
}

.founder-preview-content h2{

  font-size:2.4rem;

  margin-bottom:8px;
}

/* ROLE */
.founder-role{

  color:var(--primary);

  font-weight:600;

  margin-bottom:18px;

  line-height:1.7;
}

/* TEXT */
.founder-preview-content p{

  font-size:1.02rem;

  line-height:1.9;

  color:#445068;

  margin-bottom:24px;

  max-width:760px;
}

/* BUTTON */
.founder-btn{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:13px 24px;

  border-radius:14px;

  background:var(--primary);

  color:#fff;

  text-decoration:none;

  font-weight:600;

  transition:.3s ease;
}

.founder-btn:hover{

  transform:translateY(-2px);

  color:#fff;

  box-shadow:
  0 10px 25px rgba(26,115,232,0.25);
}

.founder-btn i{

  transition:.3s ease;
}

.founder-btn:hover i{

  transform:translateX(4px);
}

/* MOBILE */
@media(max-width:991px){

  .founder-preview-box{

    flex-direction:column;

    text-align:center;

    padding:28px 22px;
  }

  .founder-preview-image{

    width:190px;
  }

  .founder-preview-content h2{

    font-size:2rem;
  }

}

/* =========================================
   FINAL SERVICES CTA
========================================= */

.services-final-cta{

  padding:20px 0 90px;
}

.services-final-box{

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #0f2f6f,
    #1a73e8
  );

  border-radius:34px;

  padding:60px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:50px;

  box-shadow:
  0 25px 60px rgba(26,115,232,0.18);
}

/* GLOW */
.services-final-box::before{

  content:"";

  position:absolute;

  width:380px;
  height:380px;

  border-radius:50%;

  background:rgba(255,255,255,0.06);

  top:-160px;
  right:-120px;
}

/* CONTENT */
.services-final-content{

  position:relative;

  z-index:2;

  max-width:760px;
}

.services-final-content .section-label{

  color:#fff;

  background:rgba(255,255,255,0.1);

  margin-bottom:18px;
}

.services-final-content h2{

  color:#fff;

  font-size:clamp(2rem,4vw,3.1rem);

  margin-bottom:18px;
}

.services-final-content p{

  color:rgba(255,255,255,0.82);

  font-size:1.05rem;

  line-height:1.9;

  margin-bottom:30px;
}

/* POINTS */
.services-final-points{

  display:grid;

  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:16px;
}

.services-final-points div{

  display:flex;

  align-items:center;

  gap:12px;

  color:#fff;

  font-weight:500;
}

.services-final-points i{

  color:#ffd24c;

  font-size:1rem;
}

/* ACTIONS */
.services-final-actions{

  position:relative;

  z-index:2;

  display:flex;

  flex-direction:column;

  gap:16px;

  min-width:260px;
}

.services-final-actions .btn-cta,
.services-final-actions .btn-cta-outline{

  justify-content:center;
}

/* MOBILE */
@media(max-width:991px){

  .services-final-box{

    padding:40px 28px;

    flex-direction:column;

    align-items:flex-start;

    border-radius:26px;
  }

  .services-final-actions{

    width:100%;
  }

  .services-final-actions a{

    width:100%;
  }

  .services-final-points{

    grid-template-columns:1fr;
  }

}

/* FOOTER FOUNDER */
.footer-founder{

  margin-top:18px;

  font-size:.92rem;

  color:rgba(255,255,255,.72);

  line-height:1.7;
}

.footer-founder a{

  color:#fff;

  font-weight:700;

  text-decoration:none;
}

.footer-founder a:hover{

  color:var(--accent);
}