/* ==========================================================================
   MRMR Service Hub — Homepage Styles
   Brand colours sampled from static/img/logo.jpg
   ========================================================================== */

:root {
  /* Monochromatic scale derived mathematically from the exact logo blue
     (#1f73cb, H 210° S 74%) — only lightness varies, so every shade below
     is genuinely "the logo's blue", not an invented colour. */
  --primary-lighter: #e4effb;
  --primary-tint: #bdd8f5;
  --primary-light: #579ce5;
  --primary: #1f73cb;
  --primary-dark: #175596;
  --primary-darker: #0d3054;
  --primary-darkest: #09213a;

  --ink: #17233a;
  --muted: #5c6b82;
  --muted-light: #8695ab;
  --white: #ffffff;
  --border: #e6edf5;
  --bg-soft: #f5f9fd;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(15, 55, 110, 0.07);
  --shadow: 0 14px 34px rgba(15, 55, 110, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 42, 77, 0.16);

  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }
.reveal-delay-4.in-view { transition-delay: 0.4s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn i { font-size: 0.85em; transition: transform 0.25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(31, 115, 203, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(31, 115, 203, 0.45); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 12px 26px rgba(10, 30, 60, 0.25);
}
.btn-light:hover { background: var(--primary-darker); color: var(--white); }

/* ---------- Section heading ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-lighter);
  padding: 7px 16px;
  border-radius: 50px;
}
.section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 14px 0 12px;
  font-weight: 700;
}
.section-heading p { color: var(--muted); font-size: 1.02rem; }
.section-heading .underline {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 0 auto 16px;
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #1662b6;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-inner > div { display: flex; align-items: center; gap: 8px; }
.topbar-inner i { color: var(--primary-light); }
.topbar-right a { font-weight: 600; color: var(--white); }
.topbar-right a:hover { color: var(--primary-light); }

/* ==========================================================================
   Header / Nav — floating glass pill
   ========================================================================== */
body { padding-top: 150px; }

.site-header {
  position: fixed;
  top: 52px;
  left: 14px;
  right: 14px;
  z-index: 1002;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(10, 30, 58, 0.16);
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}
.site-header.scrolled {
  top: 48px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 44px rgba(10, 30, 58, 0.22);
}
/* backdrop-filter creates a containing block for fixed descendants,
   which traps the mobile nav panel's "top: 0" to this header's own
   box instead of the real viewport — drop it while the panel is open. */
.site-header:has(.main-nav.open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  grid-column: 1;
  justify-self: start;
}
.brand-logo {
  width: 688%;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary-dark);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-text small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.main-nav {
  grid-column: 2;
  justify-self: center;
}
.mobile-nav-header,
.mobile-quick-actions,
.mobile-nav-social { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: center;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  border-radius: 50px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.main-nav a i:not(.dropdown-caret) { font-size: 0.85em; color: var(--primary); }
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(10, 30, 58, 0.1);
}
.dropdown-caret { font-size: 0.6em !important; margin-left: -2px; color: var(--muted-light) !important; }

.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 20;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown a:hover { background: var(--primary-lighter); color: var(--primary); box-shadow: none; }

.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}
.header-phone i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-lighter);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}
.header-actions .login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.header-actions .login-link i { font-size: 0.85em; }
.header-actions .login-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-lighter);
  transform: translateY(-2px);
}
.header-actions .register-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(31, 115, 203, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.header-actions .register-btn i { font-size: 0.85em; }
.header-actions .register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 115, 203, 0.36);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--primary-lighter);
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 480px) {
  body { padding-top: 168px; }
  .site-header { top: 84px; left: 10px; right: 10px; }
  .site-header.scrolled { top: 80px; }
  .header-inner { padding: 7px 16px; }
  .brand-logo { width: 48px; height: 48px; }
}

/* ==========================================================================
   Page hero (interior pages — e.g. About)
   ========================================================================== */
.page-hero {
  width: 100%;
  line-height: 0;
  background: var(--primary-darkest);
}
.page-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.breadcrumb-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}
.breadcrumb-bar a { color: var(--primary); transition: color 0.2s ease; }
.breadcrumb-bar a:hover { color: var(--primary-dark); }
.breadcrumb-bar .sep { font-size: 0.6rem; color: var(--muted-light); }
.breadcrumb-bar .current { color: var(--ink); }

/* ==========================================================================
   Page title band (for pages without a custom hero image — e.g. Contact)
   ========================================================================== */
.page-title-band {
  background: linear-gradient(120deg, var(--primary-darkest), var(--primary-dark) 55%, var(--primary));
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.page-title-band h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-title-band p { color: rgba(255, 255, 255, 0.82); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-section { padding: 90px 0; background: var(--white); }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}
.contact-info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); }
.contact-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 20px rgba(31, 115, 203, 0.3);
}
.contact-info-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.contact-info-card p { color: var(--muted); font-size: 0.9rem; }
.contact-info-card p a { color: var(--primary); font-weight: 600; }
.contact-info-card p a:hover { color: var(--primary-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
}
.contact-form-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 26px; }

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-form-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-lighter);
}
.contact-form-submit { width: 100%; justify-content: center; }
.contact-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 340px;
}
.contact-map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

@media (max-width: 980px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-card { min-height: 280px; }
}
@media (max-width: 560px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
}

/* ==========================================================================
   Search Services page
   ========================================================================== */
.search-services-section { padding: 70px 0 90px; background: var(--white); }

.search-services-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 28px;
}
.search-services-field {
  flex: 1 1 180px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-services-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-services-field .select-wrap { position: relative; }
.search-services-field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 13px 38px 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-services-field select:invalid { color: var(--muted-light); }
.search-services-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-lighter);
}
.search-services-field .select-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-light);
  font-size: 0.72rem;
  pointer-events: none;
}

.search-services-submit {
  flex: 0 0 auto;
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(31, 115, 203, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.search-services-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(31, 115, 203, 0.38); }

.search-services-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--primary-lighter);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 900px) {
  .search-services-form { flex-direction: column; align-items: stretch; }
  .search-services-field { flex: 1 1 auto; }
  .search-services-submit { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 72vh;
  max-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background:
    linear-gradient(90deg, rgba(9, 30, 58, 0.88) 0%, rgba(10, 35, 66, 0.68) 45%, rgba(31, 115, 203, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 20, 40, 0.55), transparent 55%); */
}
.hero-content { position: relative; z-index: 3; max-width: 640px; padding-top: 40px; padding-bottom: 40px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--primary-light); }
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.hero-content h1 span { color: #7fc0ff; }
.hero-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-next {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-next:hover { background: var(--primary); transform: translateY(-50%) scale(1.08); }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease;
}
.hero-dots button.active { background: var(--white); width: 26px; border-radius: 6px; }

/* ==========================================================================
   Features strip (overlaps hero)
   ========================================================================== */
.features { position: relative; z-index: 5;
     margin-top: 64px; 
     padding-bottom: 10px; 
    }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}
.feature-card:hover { transform: translateY(-8px); border-bottom-color: var(--primary); }
.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 20px rgba(31, 115, 203, 0.3);
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  margin-top: 90px;
  background: linear-gradient(120deg, var(--primary-darkest), var(--primary-dark) 55%, var(--primary));
  color: var(--white);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-band::before { width: 320px; height: 320px; top: -160px; left: -80px; }
.cta-band::after { width: 220px; height: 220px; bottom: -120px; right: 8%; }
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; max-width: 560px; }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; display: flex; align-items: center; justify-content: center; }
.about-media-blob {
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 42% 58% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(135deg, var(--primary-lighter), var(--primary-tint));
  z-index: 0;
  animation: blobmove 10s ease-in-out infinite;
}
@keyframes blobmove {
  0%, 100% { border-radius: 42% 58% 55% 45% / 45% 40% 60% 55%; }
  50% { border-radius: 58% 42% 45% 55% / 55% 60% 40% 45%; }
}
.about-logo-img {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-badge {
  position: absolute;
  z-index: 2;
  bottom: 6%;
  right: 4%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 22px;
  text-align: center;
  border: 1px solid var(--border);
}
.about-badge strong { display: block; font-size: 1.5rem; color: var(--primary); font-family: var(--font-heading); }
.about-badge span { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

.about-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 14px 0 20px; font-weight: 700; }
.about-content > p { color: var(--muted); margin-bottom: 14px; }
.about-list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.about-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.25s ease, transform 0.25s ease;
}
.about-list li:hover { background: var(--bg-soft); transform: translateX(4px); }
.about-list-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.about-list h4 { font-size: 1rem; margin-bottom: 4px; }
.about-list p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { padding: 0 0 100px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); }
.stat-card i {
    font-size: 1.6rem;
    color: var(--primary);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.stat-label { color: var(--muted); font-weight: 600; font-size: 0.92rem; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 20px 0 100px;
     /* background: var(--bg-soft); */
     }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-lighter);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: rotate(-6deg) scale(1.06);
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   Team
   ========================================================================== */
.team { padding: 100px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar-wrap {
  padding: 34px 0 18px;
  background: linear-gradient(160deg, var(--primary-lighter), var(--primary-tint));
}
.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.team-body { padding: 18px 16px 26px; }
.team-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-body span { color: var(--primary); font-size: 0.85rem; font-weight: 600; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--primary-dark);
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.team-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { padding: 0 0 100px; }
.gallery-slider { position: relative; }
.gallery-viewport { overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item {
  position: relative;
  flex: 0 0 calc((100% - 4 * 16px) / 5);
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10, 30, 58, 0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.gallery-nav:hover { background: var(--primary); color: var(--white); }
.gallery-nav.prev { left: -22px; }
.gallery-nav.next { right: -22px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.gallery-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.gallery-dots span.active { background: var(--primary); width: 22px; border-radius: 5px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { padding: 100px 0; background: var(--bg-soft); }
.testimonials-slider { position: relative; }
.testimonials-viewport { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc((100% - 2 * 24px) / 3);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-quote-icon {
  color: var(--primary-light);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.testimonial-text { color: var(--muted); font-style: italic; margin-bottom: 22px; font-size: 1.05rem; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-person h4 { font-size: 0.98rem; margin-bottom: 2px; }
.testimonial-person span { color: var(--muted); font-size: 0.82rem; }
.testimonial-stars { color: var(--primary); font-size: 0.8rem; margin-top: 4px; }

.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.testimonials-nav:hover { background: var(--primary); color: var(--white); }
.testimonials-nav.prev { left: -22px; }
.testimonials-nav.next { right: -22px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testimonial-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.testimonial-dots span.active { background: var(--primary); width: 22px; border-radius: 5px; }

@media (max-width: 1080px) {
  .gallery-item { flex: 0 0 calc((100% - 2 * 16px) / 3); }
  .testimonial-card { flex: 0 0 100%; }
  .gallery-nav.prev, .testimonials-nav.prev { left: 6px; }
  .gallery-nav.next, .testimonials-nav.next { right: 6px; }
}
@media (max-width: 560px) {
  .gallery-item { flex: 0 0 calc((100% - 16px) / 2); }
  .gallery-nav, .testimonials-nav { width: 38px; height: 38px; font-size: 0.82rem; }
  .testimonial-card { padding: 28px 22px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--primary-darkest);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 76px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 10px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--white); }
.site-footer p { font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; }
.footer-contact i { color: var(--primary-light); margin-top: 3px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-row a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   Service Search Modal
   ========================================================================== */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.service-modal-overlay.show { opacity: 1; visibility: visible; }
.service-modal-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(9, 33, 58, 0.55);
  backdrop-filter: blur(4px);
}
.service-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 40px 40px 36px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
.service-modal-overlay.show .service-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.service-modal-close:hover { background: var(--primary-lighter); color: var(--primary); transform: rotate(90deg); }

.service-modal-header { text-align: center; margin-bottom: 28px; }
.service-modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 26px rgba(31, 115, 203, 0.3);
}
.service-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.service-modal-header p { color: var(--muted); font-size: 0.92rem; }

.service-modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-modal-field { display: flex; flex-direction: column; gap: 6px; }
.service-modal-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-modal-field .select-wrap { position: relative; }
.service-modal-field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 13px 40px 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.service-modal-field select:invalid { color: var(--muted-light); }
.service-modal-field select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-lighter);
}
.service-modal-field .select-wrap i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-light);
  font-size: 0.75rem;
  pointer-events: none;
}

.service-modal-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(31, 115, 203, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-modal-submit:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(31, 115, 203, 0.42); }

@media (max-width: 560px) {
  .service-modal { padding: 32px 22px 26px; border-radius: 20px; }
  .service-modal-form { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -20px;
    height: 100vh;
    height: 100dvh;
    width: min(340px, 86vw);
    background: var(--white);
    box-shadow: -20px 0 50px rgba(10, 30, 58, 0.2);
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .main-nav.open { transform: translateX(0); }

  .mobile-nav-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
  }
  .mobile-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-close:hover { background: var(--primary); color: var(--white); }

  .mobile-nav-body {
    background: var(--primary-lighter);
    padding: 20px;
  }

  .mobile-quick-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--primary-tint);
    border-radius: 50px;
    padding: 10px;
    margin-bottom: 20px;
  }
  .mobile-quick-actions a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .mobile-quick-actions a:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

  .main-nav ul { flex-direction: column; align-items: stretch; gap: 10px; }
  .main-nav a {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 15px 16px;
    font-size: 0.88rem;
  }
  .main-nav a:hover,
  .main-nav a.active { box-shadow: 0 4px 14px rgba(10, 30, 58, 0.14); }

  .mobile-nav-social {
    display: block;
    padding: 20px 20px 30px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  .mobile-nav-social-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 2px solid var(--primary);
  }
  .mobile-nav-social-icons { display: flex; gap: 10px; }
  .mobile-nav-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-social-icons a:hover { background: var(--primary); color: var(--white); }

  .nav-toggle { display: flex; }
  .header-actions .header-phone,
  .header-actions .login-link,
  .header-actions .register-btn { display: none; }
  .dropdown-caret,
  .nav-dropdown { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 46, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    }

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; text-align: center; font-size: 0.78rem; }
  .hero { min-height: 320px; max-height: 400px; }
  .hero-next { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
}
/* =========================================
   FEATURES SECTION
========================================= */

.features-section {
    position: relative;
    padding: 85px 0 95px;
    background:
        radial-gradient(circle at 5% 20%, rgba(8, 119, 201, 0.08), transparent 28%),
        radial-gradient(circle at 95% 80%, rgba(22, 139, 69, 0.08), transparent 28%),
        #f7fbff;
    overflow: hidden;
}

/* Decorative circles */

.features-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(8, 119, 201, 0.05);
    top: -120px;
    left: -100px;
}

.features-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(22, 139, 69, 0.05);
    bottom: -100px;
    right: -70px;
}


/* =========================================
   CONTAINER
========================================= */

.features-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* =========================================
   HEADING
========================================= */

.features-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 8px 20px;

    border-radius: 50px;

    background: rgba(8, 119, 201, 0.08);

    color: #0877c9;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.section-label span {
    width: 25px;
    height: 2px;

    background: #0877c9;

    display: inline-block;

    border-radius: 10px;
}

.features-heading h2 {
    margin: 18px 0 12px;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 800;

    color: #142d43;
}

.features-heading h2 span {
    color: #1a6cc4;
}

.features-heading p {
    margin: 0;

    color: #68798b;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   GRID
========================================= */

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}


/* =========================================
   FEATURE CARD
========================================= */

.feature-card {
    position: relative;

    min-height: 300px;

    padding: 34px 28px 28px;

    background: #ffffff;

    border-radius: 22px;

    border: 1px solid rgba(8, 119, 201, 0.08);

    box-shadow:
        0 12px 35px rgba(20, 45, 67, 0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Bottom colored line */

.feature-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background: #0877c9;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}

.feature-card.green-card::after {
    background: #168b45;
}


/* Hover */

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

    box-shadow:
        0 20px 45px rgba(8, 119, 201, 0.15);

    border-color: rgba(8, 119, 201, 0.18);
}

.feature-card:hover::after {
    transform: scaleX(1);
}


/* =========================================
   NUMBER
========================================= */

.feature-number {
    position: absolute;

    top: 20px;
    right: 22px;

    font-size: 48px;

    font-weight: 800;

    line-height: 1;

    color: rgba(8, 119, 201, 0.07);

    transition: color 0.3s ease;
}

.green-card .feature-number {
    color: rgba(22, 139, 69, 0.08);
}

.feature-card:hover .feature-number {
    color: rgba(8, 119, 201, 0.13);
}


/* =========================================
   ICON
========================================= */

.feature-icon {
    width: 64px;
    height: 64px;

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

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #0877c9,
        #075b9a
    );

    color: #ffffff;

    font-size: 24px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 25px rgba(8, 119, 201, 0.22);

    transition:
        transform 0.35s ease,
        border-radius 0.35s ease;
}
.green-card .feature-icon {
    background: linear-gradient(135deg, #086db9, #086fbc);
    box-shadow: 0 10px 25px rgba(22, 139, 69, 0.20);
}

.feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.08);

    border-radius: 50%;
}


/* =========================================
   CONTENT
========================================= */

.feature-content h3 {
    margin: 0 0 12px;

    font-size: 21px;

    font-weight: 750;

    color: #142d43;
}

.feature-content p {
    margin: 0;

    min-height: 55px;

    font-size: 14px;

    line-height: 1.7;

    color: #68798b;
}


/* =========================================
   LINK
========================================= */

.feature-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;

    color: #0877c9;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.green-card .feature-link {
    color: #168b45;
}

.feature-link i {
    font-size: 12px;

    transition: transform 0.3s ease;
}

.feature-link:hover {
    gap: 13px;
}

.feature-link:hover i {
    transform: translateX(3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .features-section {
        padding: 70px 0 75px;
    }

    .features-heading h2 {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .features-section {
        padding: 60px 0 65px;
    }

    .features-section .container {
        padding: 0 16px;
    }

    .features-heading {
        margin-bottom: 35px;
    }

    .features-heading h2 {
        font-size: 29px;
    }

    .features-heading p {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .feature-card {
        min-height: auto;

        padding: 28px 24px 25px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;

        font-size: 21px;

        margin-bottom: 20px;
    }

    .feature-content h3 {
        font-size: 19px;
    }

    .feature-number {
        font-size: 40px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .features-heading h2 {
        font-size: 26px;
    }

    .section-label {
        font-size: 10px;

        padding: 7px 15px;
    }

    .feature-card {
        border-radius: 18px;
    }

}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.about-section .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* =========================================
   GRID
========================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    align-items: center;
    gap: 75px;
}


/* =========================================
   LEFT VISUAL
========================================= */

.about-visual {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Background circles */

.about-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-one {
    width: 410px;
    height: 410px;
    background: #eef7ff;
}

.circle-two {
    width: 300px;
    height: 300px;
    background: rgba(22, 139, 69, 0.07);
    transform: translate(65px, 45px);
}


/* =========================================
   LOGO CARD
========================================= */

.about-logo-card {
    position: relative;
    z-index: 3;

    width: 330px;
    height: 330px;

    padding: 20px;

    background: #ffffff;

    border-radius: 35px;

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

    box-shadow:
        0 25px 60px rgba(20, 45, 67, 0.14);

    border: 1px solid rgba(8, 119, 201, 0.08);
}


/* Glow */

.logo-glow {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(8, 119, 201, 0.08);

    filter: blur(5px);

    z-index: -1;
}


/* Logo */

.about-logo-img {
    width: 235px;
    height: 235px;

    object-fit: contain;

    border-radius: 20px;

    display: block;
}


/* Caption */

.logo-caption {
    display: none;
}


/* =========================================
   AWARD BADGE
========================================= */

.about-award {
    position: absolute;

    z-index: 5;

    right: 25px;
    top: 155px;

    min-width: 145px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 15px 35px rgba(20, 45, 67, 0.14);

    border: 1px solid rgba(8, 119, 201, 0.08);
}

.award-icon {
    width: 42px;
    height: 42px;

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

    border-radius: 12px;

    background: #eaf4ff;

    color: #0877c9;

    font-size: 18px;
}

.about-award strong {
    display: block;

    font-size: 20px;

    line-height: 1;

    color: #0877c9;
}

.about-award span {
    display: block;

    margin-top: 5px;

    font-size: 10px;

    color: #718096;

    white-space: nowrap;
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.about-experience {
    position: absolute;

    z-index: 5;

    left: 18px;
    top: 125px;

    width: 115px;
    height: 115px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #0877c9,
        #075b9a
    );

    color: #ffffff;

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

    text-align: center;

    box-shadow:
        0 15px 35px rgba(8, 119, 201, 0.25);

    border: 7px solid #ffffff;
}

.about-experience strong {
    font-size: 25px;
    font-weight: 800;
}

.about-experience span {
    font-size: 10px;
    line-height: 1.4;
}


/* =========================================
   FLOATING SERVICE BADGES
========================================= */

.service-float {
    position: absolute;

    z-index: 6;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    background: #ffffff;

    border-radius: 50px;

    box-shadow:
        0 12px 30px rgba(20, 45, 67, 0.13);

    font-size: 12px;
    font-weight: 700;

    color: #142d43;
}

.service-float i {
    width: 28px;
    height: 28px;

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

    border-radius: 50%;

    background: #eaf4ff;

    color: #0877c9;
}

.electrical-float {
    left: 5px;
    bottom: 185px;
}

.plumbing-float {
    right: 5px;
    bottom: 220px;
}

.plumbing-float i {
    background: #eaf7ef;
    color: #168b45;
}


/* =========================================
   DECORATIVE DOTS
========================================= */

.about-dots {
    position: absolute;

    width: 90px;
    height: 90px;

    opacity: 0.5;

    background-image: radial-gradient(
        #0877c9 1.5px,
        transparent 1.5px
    );

    background-size: 12px 12px;
}

.dots-top {
    top: 20px;
    left: 15px;
}

.dots-bottom {
    right: 5px;
    bottom: 80px;

    background-image: radial-gradient(
        #168b45 1.5px,
        transparent 1.5px
    );
}


/* =========================================
   ABOUT STATS
========================================= */

.about-stats {
    position: absolute;

    z-index: 7;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    width: 90%;

    padding: 18px 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(20, 45, 67, 0.13);

    border: 1px solid rgba(8, 119, 201, 0.07);
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 5px 10px;
}

.about-stat:first-child {
    border-right: 1px solid #e8eef4;
}

.about-stat > i {
    width: 40px;
    height: 40px;

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

    border-radius: 12px;

    background: #edf6ff;

    color: #0877c9;

    font-size: 16px;
}

.about-stat strong {
    display: block;

    font-size: 17px;

    color: #142d43;
}

.about-stat span {
    display: block;

    margin-top: 2px;

    font-size: 10px;

    color: #718096;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.about-content {
    position: relative;
}


/* Section tag */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 17px;

    border-radius: 50px;

    background: #edf6ff;

    color: #0877c9;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.section-tag i {
    font-size: 7px;
}


/* Heading */

.about-content h2 {
    margin: 18px 0 15px;

    max-width: 650px;

    font-size: 42px;

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -1px;

    color: #142d43;
}

.about-content h2 span {
    color: #0766ad;
}


/* Heading line */

.heading-line {
    width: 60px;
    height: 4px;

    margin-bottom: 25px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #0877c9,
        #168b45
    );
}


/* Paragraph */

.about-content > p {
    margin: 0 0 18px;

    color: #63758a;

    font-size: 14px;

    line-height: 1.8;
}

.about-content .about-intro {
    color: #52677d;
}


/* =========================================
   SERVICE LIST
========================================= */

.about-list {
    margin-top: 28px;

    display: flex;
    flex-direction: column;

    gap: 13px;
}


/* Service */

.about-service {
    position: relative;

    display: grid;

    grid-template-columns: 42px 48px 1fr 38px;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    background: #f5faff;

    border: 1px solid #e4f0fa;

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.about-service:hover {
    transform: translateX(7px);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(8, 119, 201, 0.10);
}


/* Green item */

.green-service {
    background: #f3faf6;
    border-color: #e0f1e7;
}

.green-service:hover {
    box-shadow:
        0 12px 30px rgba(22, 139, 69, 0.10);
}


/* Number */

.service-number {
    width: 38px;
    height: 38px;

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

    border-radius: 11px;

    background: #dceeff;

    color: #0877c9;

    font-size: 11px;

    font-weight: 800;
}

.green-service .service-number {
    background: #dff4e8;
    color: #168b45;
}


/* Icon */

.service-icon {
    width: 45px;
    height: 45px;

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

    border-radius: 13px;

    color: #ffffff;

    font-size: 17px;
}

.blue-icon {
    background: linear-gradient(
        135deg,
        #0877c9,
        #075b9a
    );
}

.green-icon {
    background: linear-gradient(
        135deg,
        #168b45,
        #08783b
    );
}


/* Service text */

.service-text h4 {
    margin: 0 0 5px;

    color: #142d43;

    font-size: 15px;

    font-weight: 800;
}

.service-text p {
    margin: 0;

    color: #6b7e92;

    font-size: 12px;

    line-height: 1.6;
}


/* Arrow */

.service-arrow {
    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: #ffffff;

    color: #0877c9;

    border: 1px solid #dcebf7;

    font-size: 11px;

    transition: all 0.3s ease;
}

.green-service .service-arrow {
    color: #168b45;
    border-color: #d9eee2;
}

.about-service:hover .service-arrow {
    transform: translateX(4px);
}


/* =========================================
   TRUST ITEMS
========================================= */

.about-trust {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 28px;
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 9px;
}

.trust-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: #edf6ff;

    color: #0877c9;

    font-size: 15px;
}

.green-trust {
    background: #eaf7ef;
    color: #168b45;
}

.trust-item strong {
    display: block;

    font-size: 11px;

    color: #142d43;
}

.trust-item span {
    display: block;

    margin-top: 2px;

    font-size: 9px;

    color: #7a8999;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .about-grid {
        gap: 45px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-visual {
        transform: scale(0.92);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-visual {
        min-height: 560px;

        max-width: 600px;

        width: 100%;

        margin: auto;
    }

    .about-content h2 {
        max-width: 750px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-section {
        padding: 65px 0;
    }

    .about-section .container {
        padding: 0 16px;
    }

    .about-visual {
        min-height: 460px;

        transform: none;
    }

    .about-bg-circle {
        width: 300px;
        height: 300px;
    }

    .circle-two {
        width: 230px;
        height: 230px;
    }

    .about-logo-card {
        width: 260px;
        height: 260px;

        border-radius: 28px;
    }

    .about-logo-img {
        width: 195px;
        height: 195px;
    }

    .about-award {
        right: 0;
        top: 115px;

        min-width: 125px;

        padding: 11px 13px;
    }

    .about-experience {
        left: 0;
        top: 95px;

        width: 90px;
        height: 90px;
    }

    .about-experience strong {
        font-size: 20px;
    }

    .about-experience span {
        font-size: 8px;
    }

    .service-float {
        display: none;
    }

    .about-stats {
        width: 100%;

        bottom: 0;

        padding: 14px 8px;
    }

    .about-stat {
        gap: 7px;
        padding: 4px;
    }

    .about-stat > i {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .about-stat strong {
        font-size: 14px;
    }

    .about-stat span {
        font-size: 8px;
    }

    .about-content h2 {
        font-size: 29px;

        letter-spacing: -0.5px;
    }

    .about-content > p {
        font-size: 13px;

        line-height: 1.75;
    }

    .about-service {
        grid-template-columns: 34px 42px 1fr;

        gap: 10px;

        padding: 14px;
    }

    .service-number {
        width: 34px;
        height: 34px;

        font-size: 9px;
    }

    .service-icon {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .service-text h4 {
        font-size: 13px;
    }

    .service-text p {
        font-size: 10px;
    }

    .service-arrow {
        display: none;
    }

    .about-trust {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .about-visual {
        min-height: 410px;
    }

    .about-logo-card {
        width: 225px;
        height: 225px;
    }

    .about-logo-img {
        width: 170px;
        height: 170px;
    }

    .about-award {
        right: -5px;
        top: 100px;
    }

    .about-experience {
        left: -5px;
        top: 80px;
    }

    .about-content h2 {
        font-size: 26px;
    }

}
/* =========================================
   FLOATING ANIMATIONS
========================================= */

/* Award Badge */
.about-award {
    animation: awardFloat 3.5s ease-in-out infinite;
    will-change: transform;
}

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

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

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


/* =========================================
   EXPERIENCE BADGE
========================================= */

.about-experience {
    animation: experienceFloat 4s ease-in-out infinite;
    will-change: transform;
}

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

    50% {
        transform: translateY(-12px) rotate(2deg);
    }

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


/* =========================================
   SERVICE FLOAT CARDS
========================================= */

.service-float {
    animation: serviceFloat 3s ease-in-out infinite;
    will-change: transform;
}


/* Electrical */
.electrical-float {
    animation-delay: 0s;
}


/* Plumbing */
.plumbing-float {
    animation-delay: 1.2s;
}


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

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

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


/* =========================================
   ICON ANIMATION
========================================= */

.about-award .award-icon i {
    animation: trophyPulse 2.5s ease-in-out infinite;
}

@keyframes trophyPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}


/* =========================================
   SERVICE ICON PULSE
========================================= */

.service-float i {
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}


/* =========================================
   HOVER
========================================= */

.about-award:hover,
.about-experience:hover,
.service-float:hover {
    animation-play-state: paused;
}


/* =========================================
   REDUCE MOTION FOR ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .about-award,
    .about-experience,
    .service-float,
    .about-award .award-icon i,
    .service-float i {
        animation: none;
    }
}


/* =========================================================
   STATS / OUR IMPACT
========================================================= */

.stats {
    position: relative;
    width: 100%;
    padding: 60px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 25%,
            #ffffff 0%,
            #f4faff 48%,
            #e6f5ff 100%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.stats .container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
    padding: 0 35px;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND CIRCLES
========================================================= */

.stats-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.stats-circle-left {
    width: 520px;
    height: 520px;

    left: -330px;
    top: -100px;

    background: rgba(74, 164, 235, 0.12);

    animation: statsBgFloat 8s ease-in-out infinite;
}

.stats-circle-right {
    width: 480px;
    height: 480px;

    right: -250px;
    top: 70px;

    background: rgba(71, 163, 235, 0.10);

    animation: statsBgFloat 10s ease-in-out infinite reverse;
}

@keyframes statsBgFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}


/* =========================================================
   DOTS
========================================================= */

.stats-dots {
    position: absolute;

    width: 115px;
    height: 90px;

    background-image: radial-gradient(
        #65c0dc 2px,
        transparent 2px
    );

    background-size: 14px 14px;

    opacity: .45;

    z-index: 1;
}

.stats-dots-left {
    left: 20px;
    bottom: 110px;
}

.stats-dots-right {
    right: 25px;
    top: 0;

    opacity: .30;
}


/* =========================================================
   HEADING
========================================================= */

.stats-heading {
    position: relative;
    z-index: 5;

    text-align: center;

    max-width: 950px;

    margin: 0 auto 38px;
}


/* Heading Tag */

.stats-tag {
    display: inline-flex;

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

    gap: 8px;

    padding: 8px 18px;

    border-radius: 50px;

    background: #edf7ff;

    color: #0874d1;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 8px 25px rgba(29, 120, 200, .07);
}

.stats-tag i {
    font-size: 13px;
}


/* Main Heading */

.stats-heading h2 {
    margin: 14px 0 10px;

    color: #12346c;

    font-size: clamp(28px, 3.2vw, 38px);

    line-height: 1.15;

    font-weight: 850;

    letter-spacing: -1px;
}

.stats-heading h2 span {
    color: #2684d8;
}


/* Subtitle */

.stats-heading p {
    margin: 0 auto;

    max-width: 850px;

    color: #60799b;

    font-size: 15px;

    line-height: 1.6;
}


/* Heading line */

.stats-heading-line {
    display: flex;

    width: 90px;
    height: 4px;

    margin: 14px auto 0;

    overflow: hidden;

    border-radius: 50px;
}

.stats-heading-line span {
    width: 50%;
    background: #2382d7;
}

.stats-heading-line b {
    width: 50%;
    background: #2684d8;
}


/* =========================================================
   GRID
========================================================= */

.stats-grid {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.stat-card {
    position: relative;

    min-width: 0;
    height: 278px;

    padding: 22px 18px 65px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: #ffffff;

    border-radius: 22px;

    border: 3px solid rgba(255,255,255,.95);

    box-shadow:
        0 18px 45px rgba(38, 112, 170, .13);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* Hover */

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

    box-shadow:
        0 28px 60px rgba(38, 112, 170, .20);
}


/* =========================================================
   TOP BADGE
========================================================= */

.stat-top-badge {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 10;

    display: flex;

    flex-direction: row-reverse;

    align-items: center;

    gap: 5px;

    width: 100px;

    padding: 6px 9px;

    border-radius: 50px;

    background: #e9f5ff;

    color: #0875d1;

    box-sizing: border-box;

    box-shadow:
        0 7px 20px rgba(35, 130, 215, .08);

    animation: badgeFloat 4s ease-in-out infinite;
}

.stat-green .stat-top-badge {
    background: #e7f8ef;
    color: #078b4d;
}

.stat-top-badge i {
    flex: 0 0 auto;

    font-size: 13px;
}

.stat-top-badge span {
    font-size: 8px;

    font-weight: 800;

    line-height: 1.2;

    text-align: left;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

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


/* =========================================================
   MAIN ICON
========================================================= */

.stat-icon {
    position: relative;
    z-index: 5;

    width: 96px;
    height: 96px;

    flex: 0 0 96px;

    margin-top: 6px;
    margin-bottom: 10px;

    display: flex;

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

    border-radius: 50%;

    background: #dcecff;

    color: #ffffff;

    font-size: 32px;

    box-sizing: border-box;

    animation: statIconFloat 4s ease-in-out infinite;

    transition:
        transform .35s ease;
}


/* Inner circle */

.stat-icon::before {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #2d8de1,
        #126bc7
    );

    box-shadow:
        0 10px 25px rgba(19,116,205,.25);
}


/* Green version */

.stat-green .stat-icon {
    background: #d9f5e8;
}

.stat-green .stat-icon::before {
    background: linear-gradient(
        145deg,
        #11a762,
        #078a4e
    );

    box-shadow:
        0 10px 25px rgba(5,139,77,.23);
}


/* Icon */

.stat-icon i {
    position: relative;
    z-index: 3;
}


/* Floating icon */

@keyframes statIconFloat {

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

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


/* =========================================================
   NUMBER
========================================================= */

.stat-num {
    position: relative;
    z-index: 8;

    display: block;

    width: 100%;

    margin: 0;

    color: #126dcc;

    font-size: clamp(34px, 3vw, 44px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -1.5px;

    white-space: nowrap;

    font-variant-numeric: tabular-nums;

    box-sizing: border-box;
}

.stat-green .stat-num {
    color: #078b4d;
}


/* =========================================================
   LABEL
========================================================= */

.stat-label {
    position: relative;
    z-index: 8;

    display: block;

    width: 100%;

    margin-top: 6px;

    padding: 0 5px;

    color: #12346c;

    font-size: 14px;

    font-weight: 750;

    line-height: 1.3;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   BOTTOM WAVE
========================================================= */

.stat-bottom-wave {
    position: absolute;

    left: -5%;
    bottom: -2px;

    z-index: 2;

    width: 110%;
    height: 50px;

    background: #e1efff;

    border-radius: 50% 50% 0 0;

    pointer-events: none;
}

.stat-green .stat-bottom-wave {
    background: #e0f7eb;
}


/* Wave overlay */

.stat-bottom-wave::before {
    content: "";

    position: absolute;

    left: -5%;
    top: -9px;

    width: 60%;
    height: 25px;

    border-radius: 50%;

    background: rgba(255,255,255,.75);

    transform: rotate(-3deg);
}

.stat-bottom-wave::after {
    content: "";

    position: absolute;

    right: -5%;
    top: -11px;

    width: 65%;
    height: 28px;

    border-radius: 50%;

    background: rgba(255,255,255,.72);

    transform: rotate(3deg);
}


/* =========================================================
   ARROW
========================================================= */

.stat-arrow {
    position: absolute;

    left: 50%;
    bottom: 10px;

    z-index: 20;

    width: 42px;
    height: 42px;

    display: flex;

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

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #3f96e5;

    color: #1675d1;

    font-size: 16px;

    transform: translateX(-50%);

    box-sizing: border-box;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.stat-green .stat-arrow {
    border-color: #25a86a;
    color: #078b4d;
}


/* Arrow hover */

.stat-card:hover .stat-arrow {
    transform:
        translateX(-50%)
        translateY(-4px);

    background: #1675d1;

    color: #ffffff;
}

.stat-green:hover .stat-arrow {
    background: #078b4d;
}


/* =========================================================
   SHINE EFFECT
========================================================= */

.stat-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    z-index: 15;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .8s ease;

    pointer-events: none;
}

.stat-card:hover::before {
    left: 140%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .stats .container {
        max-width: 1100px;
        padding: 0 25px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

    .stat-card {
        height: 340px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .stats {
        padding: 65px 0 75px;
    }

    .stats .container {
        padding: 0 16px;
    }

    .stats-heading {
        margin-bottom: 35px;
    }

    .stats-tag {
        padding: 8px 17px;
        font-size: 11px;
    }

    .stats-heading h2 {
        font-size: 32px;
        letter-spacing: -.8px;
    }

    .stats-heading p {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;

        max-width: 420px;

        margin: 0 auto;

        gap: 18px;
    }

    .stat-card {
        height: 320px;

        min-height: 320px;

        border-radius: 24px;

        padding-top: 28px;
    }

    .stat-icon {
        width: 108px;
        height: 108px;

        flex-basis: 108px;

        margin-top: 15px;
    }

    .stat-icon::before {
        width: 80px;
        height: 80px;
    }

    .stat-num {
        font-size: 50px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-top-badge {
        width: 92px;

        top: 12px;
        right: 12px;

        padding: 5px 8px;
    }

    .stat-top-badge span {
        font-size: 7.5px;
    }

    .stat-arrow {
        width: 46px;
        height: 46px;

        bottom: 10px;
    }

    .stats-dots-left,
    .stats-dots-right {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .stats-heading h2 {
        font-size: 28px;
    }

    .stats-heading p {
        font-size: 13px;
    }

    .stat-card {
        height: 305px;
        min-height: 305px;
    }

    .stat-icon {
        width: 98px;
        height: 98px;

        flex-basis: 98px;
    }

    .stat-icon::before {
        width: 73px;
        height: 73px;
    }

    .stat-num {
        font-size: 45px;
    }

    .stat-label {
        font-size: 15px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stat-icon,
    .stat-top-badge,
    .stats-circle-left,
    .stats-circle-right {
        animation: none;
    }

    .stat-card::before {
        display: none;
    }
}
/* ==========================================================
   MRMR OFFERINGS SECTION
   Completely unique class names
========================================================== */

.mrmr-offerings {
    position: relative;
    overflow: hidden;
    padding: 70px 0 75px;

}


/* ==========================================================
   BACKGROUND
========================================================== */

/* .mrmr-offerings-bg {
    position: absolute;

    width: 650px;
    height: 650px;

    top: -300px;
    right: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35, 132, 216, .13),
            rgba(35, 132, 216, 0)
        );

    pointer-events: none;

    animation: mrmrBgFloat 10s ease-in-out infinite;
} */


.mrmr-offerings::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(14, 164, 100, .10),
            transparent 70%
        );

    pointer-events: none;
}


@keyframes mrmrBgFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 30px);
    }
}


/* ==========================================================
   CONTAINER
========================================================== */

.mrmr-offerings-container {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 50px));

    margin: auto;
}


/* ==========================================================
   HEADING
========================================================== */

.mrmr-offerings-head {
    max-width: 800px;

    margin: 0 auto 40px;

    text-align: center;
}


/* Label */

.mrmr-offerings-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 16px;

    border-radius: 50px;

    color: #1475c5;

    background: #e6f3ff;

    border: 1px solid #d5eaff;

    font-size: 10.5px;

    font-weight: 800;

    letter-spacing: 1.2px;

    box-shadow:
        0 8px 25px rgba(29, 118, 193, .08);
}


.mrmr-offerings-label i {
    font-size: 12px;
}


/* Heading */

.mrmr-offerings-head h2 {

    margin: 14px 0 10px;

    color: #142f62;

    font-size: clamp(27px, 3.2vw, 37px);

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1px;
}


.mrmr-offerings-head h2 span {
    color: #1681d6;
}


/* Description */

.mrmr-offerings-head p {

    max-width: 690px;

    margin: auto;

    color: #667c9b;

    font-size: 14px;

    line-height: 1.7;
}


/* Divider */

.mrmr-offerings-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 16px;
}


.mrmr-offerings-divider span {

    width: 32px;
    height: 3px;

    border-radius: 10px;

    background: #197ed2;
}


.mrmr-offerings-divider span:last-child {
    background: #0da064;
}


.mrmr-offerings-divider i {

    color: #1c81d4;

    font-size: 7px;
}


/* ==========================================================
   GRID
========================================================== */

.mrmr-offerings-list {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* ==========================================================
   CARD
========================================================== */

.mrmr-offer-box {

    position: relative;

    min-height: 260px;

    padding: 22px 22px 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .94);

    border: 1px solid rgba(24, 117, 191, .08);

    box-shadow:
        0 15px 45px rgba(32, 103, 160, .09);

    overflow: hidden;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Top blue line */

.mrmr-offer-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #147bd1,
            #21a36b
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;
}


/* Hover */

.mrmr-offer-box:hover {

    transform: translateY(-10px);

    border-color:
        rgba(25, 126, 211, .20);

    box-shadow:
        0 25px 60px rgba(26, 105, 166, .17);
}


.mrmr-offer-box:hover::before {
    transform: scaleX(1);
}


/* ==========================================================
   CARD TOP
========================================================== */

.mrmr-offer-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 23px;
}


/* Number */

.mrmr-offer-count {

    color: #d8eaf9;

    font-size: 46px;

    line-height: 1;

    font-weight: 900;

    transition:
        color .3s ease,
        transform .3s ease;
}


.mrmr-offer-box:hover .mrmr-offer-count {

    color: #c8e5f9;

    transform: translateX(4px);
}


/* ==========================================================
   ICON
========================================================== */

.mrmr-offer-symbol {

    width: 66px;
    height: 66px;

    display: flex;

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

    border-radius: 20px;

    color: #1679d0;

    background:
        linear-gradient(
            145deg,
            #edf8ff,
            #dcefff
        );

    box-shadow:
        0 10px 25px rgba(24, 119, 203, .10);

    font-size: 26px;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        box-shadow .4s ease;
}


.mrmr-offer-box:hover .mrmr-offer-symbol {

    transform:
        rotate(-7deg)
        scale(1.08);

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #2388d8,
            #1269ba
        );

    box-shadow:
        0 15px 30px rgba(23, 119, 204, .23);
}


/* ==========================================================
   TEXT
========================================================== */

.mrmr-offer-text {
    min-height: 130px;
}


.mrmr-offer-text h3 {

    margin: 0 0 11px;

    color: #172f5d;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 800;
}


.mrmr-offer-text p {

    margin: 0;

    color: #6d809d;

    font-size: 13.5px;

    line-height: 1.7;
}


/* ==========================================================
   FOOTER
========================================================== */

.mrmr-offer-footer {

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 9px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 17px;

    border-top:
        1px solid #edf2f7;
}


.mrmr-offer-footer span {

    color: #8a9bb2;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .3px;
}


/* Arrow */

.mrmr-offer-footer a {

    width: 37px;
    height: 37px;

    display: flex;

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

    border-radius: 50%;

    color: #197ed1;

    background: #eef7ff;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.mrmr-offer-footer a i {
    font-size: 12px;
}


.mrmr-offer-box:hover .mrmr-offer-footer a {

    transform:
        rotate(45deg);

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #197fd3,
            #116bb9
        );
}


/* ==========================================================
   SUBTLE CARD ANIMATION
========================================================== */

.mrmr-offer-box:nth-child(1) {
    animation: mrmrOfferFloat 7s ease-in-out infinite;
}

.mrmr-offer-box:nth-child(2) {
    animation: mrmrOfferFloat 7s ease-in-out .4s infinite;
}

.mrmr-offer-box:nth-child(3) {
    animation: mrmrOfferFloat 7s ease-in-out .8s infinite;
}

.mrmr-offer-box:nth-child(4) {
    animation: mrmrOfferFloat 7s ease-in-out 1.2s infinite;
}

.mrmr-offer-box:nth-child(5) {
    animation: mrmrOfferFloat 7s ease-in-out 1.6s infinite;
}

.mrmr-offer-box:nth-child(6) {
    animation: mrmrOfferFloat 7s ease-in-out 2s infinite;
}

.mrmr-offer-box:nth-child(7) {
    animation: mrmrOfferFloat 7s ease-in-out 2.4s infinite;
}

.mrmr-offer-box:nth-child(8) {
    animation: mrmrOfferFloat 7s ease-in-out 2.8s infinite;
}

.mrmr-offer-box:nth-child(9) {
    animation: mrmrOfferFloat 7s ease-in-out 3.2s infinite;
}


@keyframes mrmrOfferFloat {

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

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

}


/* Don't combine float + hover */

.mrmr-offer-box:hover {

    animation-play-state: paused;

    transform: translateY(-10px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .mrmr-offerings-list {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .mrmr-offerings {

        padding: 70px 0 80px;
    }


    .mrmr-offerings-container {

        width: calc(100% - 30px);
    }


    .mrmr-offerings-head {

        margin-bottom: 40px;
    }


    .mrmr-offerings-head h2 {

        font-size: 32px;

        letter-spacing: -.8px;
    }


    .mrmr-offerings-head p {

        font-size: 14px;
    }


    .mrmr-offerings-list {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .mrmr-offer-box {

        min-height: 320px;

        padding: 27px 24px 23px;

        border-radius: 22px;
    }


    .mrmr-offer-symbol {

        width: 61px;
        height: 61px;

        border-radius: 18px;

        font-size: 24px;
    }


    .mrmr-offer-count {

        font-size: 40px;
    }


    .mrmr-offer-text h3 {

        font-size: 19px;
    }


    .mrmr-offer-text p {

        font-size: 13px;
    }


    .mrmr-offer-footer {

        left: 24px;
        right: 24px;

        bottom: 21px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 400px) {

    .mrmr-offerings-head h2 {

        font-size: 28px;
    }


    .mrmr-offer-box {

        min-height: 315px;
    }

}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .mrmr-offer-box,
    .mrmr-offerings-bg {

        animation: none !important;
    }

}

/* ==========================================================================
   Service flip cards (Services page)
   ========================================================================== */
.service-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-flip-card {
  perspective: 1400px;
  height: 340px;
  cursor: pointer;
  outline: none;
}

.service-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

/* Hover flip on devices that actually support hover */
@media (hover: hover) {
  .service-flip-card:hover .service-flip-inner { transform: rotateY(180deg); }
}
/* Keyboard focus + tap-to-flip fallback (touch devices, and keyboard users) */
.service-flip-card:focus-visible .service-flip-inner,
.service-flip-card.is-flipped .service-flip-inner {
  transform: rotateY(180deg);
}

.service-flip-front,
.service-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-flip-front {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.service-flip-front img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.service-flip-label {
  flex-shrink: 0;
  padding: 16px 12px;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.02rem;
  background: var(--white);
}

.service-flip-back {
  transform: rotateY(180deg);
  background: var(--primary-darkest);
  color: var(--white);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}
.service-flip-back h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.service-flip-back ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 20px;
}
.service-flip-back li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 9px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  break-inside: avoid;
}
.service-flip-back li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

@media (max-width: 980px) {
  .service-flip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-flip-grid { grid-template-columns: 1fr; }
  .service-flip-card { height: 300px; }
  .service-flip-back ul { columns: 1; }
}

