/* ================================================================
   GHATI WEB SOLUTIONS â€” styles.css
   Premium Corporate Template
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES / DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --primary:       #091E3E;
  --primary-light: #0d2a57;
  --primary-dark:  #060f1f;
  --accent:        #DA3D3D;
  --accent-hover:  #c03232;
  --white:         #ffffff;
  --off-white:     #f7f9fc;
  --light-gray:    #eef1f7;
  --mid-gray:      #a0aab8;
  --text-dark:     #111827;
  --text-body:     #374151;
  --text-muted:    #6b7280;

  /* Spacing */
  --section-py:    90px;
  --container-w:   1240px;

  /* Typography */
  --font-head:    'sans-serif';
  --font-sub:     'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(9,30,62,.08);
  --shadow-md:    0 6px 24px rgba(9,30,62,.12);
  --shadow-lg:    0 16px 48px rgba(9,30,62,.18);

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
  --dur:          .3s;

  /* Navbar */
  --nav-h:        72px;
  --topbar-h:     38px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----------------------------------------------------------------
   3. UTILITY CLASSES
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-py { padding: var(--section-py) 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(218,61,61,.08);
  border: 1px solid rgba(218,61,61,.22);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.section-title span { color: var(--accent); }

.section-subtitle {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 12px auto 0;
}

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 13px 28px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,61,61,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   5. TOP BAR
   ---------------------------------------------------------------- */
#topbar {
  background: var(--primary-dark);
  height: var(--topbar-h);
  transition: height var(--dur) var(--ease), opacity var(--dur) var(--ease);
  overflow: hidden;
}
#topbar.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-h);
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  transition: color var(--dur);
}
.topbar-left a:hover { color: var(--white); }
.topbar-left a svg { flex-shrink: 0; }
.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.2);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.topbar-social:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.12);
}

/* ----------------------------------------------------------------
   6. STICKY NAVBAR
   ---------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  overflow: visible;
  /* Only animate background + shadow â€” NOT top (avoids the gap-on-scroll-up bug) */
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  /* Default: push down by topbar height */
  transform: translateY(var(--topbar-h));
}
#navbar.transparent {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(9,30,62,.07);
  transform: translateY(var(--topbar-h));
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(9,30,62,.12);
  transform: translateY(0);
}
/* Keep nav text dark always */
#navbar.transparent .nav-link { color: var(--primary); }
#navbar.transparent .nav-logo-text strong { color: var(--primary); }
#navbar.transparent .nav-logo-text span { color: var(--text-muted); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  overflow: visible; /* let mega-menu escape the nav bar height */
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--dur);
}
.nav-logo-text span {
  font-family: var(--font-sub);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--dur);
}
#navbar.scrolled .nav-logo-text strong { color: var(--primary); }
#navbar.scrolled .nav-logo-text span { color: var(--text-muted); }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: static; /* mega menu is positioned relative to nav */
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sub);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  padding: 0 14px;
  height: var(--nav-h);
  position: relative;
  transition: color var(--dur);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
#navbar.scrolled .nav-link { color: var(--text-dark); }
#navbar.scrolled .nav-link:hover { color: var(--accent); }

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--dur);
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Nav CTA */
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 10px 22px !important;
  height: auto !important;
  margin-left: 12px;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218,61,61,.4);
}

/* ----------------------------------------------------------------
   6a. DROPDOWN (Simple â€” Services)
   ---------------------------------------------------------------- */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 240px;
  background: var(--white);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease),
              visibility var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  z-index: 999;
  /* Invisible bridge to prevent hover gap */
  pointer-events: none;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
/* Invisible hover bridge */
.has-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--dur), color var(--dur), padding-left var(--dur);
}
.dropdown-item a:hover {
  background: var(--off-white);
  color: var(--accent);
  padding-left: 26px;
}
.dropdown-item a svg { flex-shrink: 0; color: var(--accent); }

/* ----------------------------------------------------------------
   6b. MEGA MENU (About) â€” Compact Centered Dropdown
   ---------------------------------------------------------------- */

/* #navbar is position:fixed â†’ mega-menu absolute is relative to it */
.has-mega { position: static; }

.mega-menu {
  position: absolute;
  top: 100%;                    /* sits flush under the navbar bar */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 980px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 60px rgba(9,30,62,.18), 0 4px 16px rgba(9,30,62,.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease),
              visibility var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  z-index: 998;
  pointer-events: none;
  overflow: hidden;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
/* Invisible hover bridge â€” prevents gap-disappear bug */
.has-mega .mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

/* Inner grid: left dark panel + right white panel */
.mega-menu .mega-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 360px;
}

/* â”€â”€ Left panel â”€â”€ */
.mega-left {
  position: relative;
  background: var(--primary);
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 36px 32px;
}
/* Dark overlay so text always reads clearly */
.mega-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,15,31,.92) 0%,
    rgba(9,30,62,.78) 60%,
    rgba(218,61,61,.25) 100%
  );
  z-index: 0;
}
/* Decorative circle rings */
.mega-left::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(218,61,61,.25);
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 0 0 50px rgba(218,61,61,.06);
}
.mega-left > * { position: relative; z-index: 1; }

.mega-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.mega-left-badge::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.mega-left h3 {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.mega-left p {
  font-family: var(--font-sub);
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin-bottom: 22px;
}
/* Mini stats row inside left panel */
.mega-left-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mega-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-stat strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.mega-stat span {
  font-family: var(--font-sub);
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mega-left-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(218,61,61,.25);
  border: 1px solid rgba(218,61,61,.4);
  border-radius: 6px;
  padding: 10px 16px;
  transition: background var(--dur), gap var(--dur), border-color var(--dur);
  width: fit-content;
}
.mega-left-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  gap: 14px;
}
.mega-left-link svg { flex-shrink: 0; }

/* â”€â”€ Right panel â”€â”€ */
.mega-right {
  padding: 24px 28px 24px 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 6px;
  align-content: start;
  background: var(--white);
}
.mega-right-header {
  grid-column: 1 / -1;
  font-family: var(--font-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 10px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mega-right-header::after {
  content: '';
  display: inline-block;
  height: 2px;
  width: 28px;
  background: var(--accent);
  border-radius: 2px;
  margin-left: 2px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background var(--dur), transform var(--dur), border-color var(--dur), box-shadow var(--dur);
  cursor: pointer;
  text-decoration: none;
}
.mega-item:hover {
  background: var(--off-white);
  border-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.mega-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(9,30,62,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.mega-item:hover .mega-item-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08);
}
.mega-item-text h4 {
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
  transition: color var(--dur);
}
.mega-item:hover .mega-item-text h4 { color: var(--accent); }
.mega-item-text p {
  font-family: var(--font-body);
  font-size: .73rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ----------------------------------------------------------------
   7. HERO SLIDER
   ---------------------------------------------------------------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slides {
  position: relative;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide.prev   { opacity: 0; z-index: 1; }

/* Slide Backgrounds (gradient overlays) */
.hero-slide:nth-child(1) .hero-bg { background-color: #050d1e; }
.hero-slide:nth-child(2) .hero-bg { background-color: #0a1628; }
.hero-slide:nth-child(3) .hero-bg { background-color: #07111f; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s linear;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,30,62,.88) 0%,
    rgba(9,30,62,.55) 50%,
    rgba(9,30,62,.25) 100%
  );
}

/* Slide geometric accent */
.hero-slide::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 1px solid rgba(218,61,61,.2);
  border-radius: 50%;
  z-index: 3;
}
.hero-slide::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border: 1px solid rgba(218,61,61,.12);
  border-radius: 50%;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease) .1s, transform .5s var(--ease) .1s;
}
.hero-tag span {
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero-slide.active .hero-tag { opacity: 1; transform: none; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s var(--ease) .2s, transform .55s var(--ease) .2s;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-slide.active .hero-title { opacity: 1; transform: none; }

.hero-desc {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease) .3s, transform .55s var(--ease) .3s;
}
.hero-slide.active .hero-desc { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease) .4s, transform .55s var(--ease) .4s;
}
.hero-slide.active .hero-actions { opacity: 1; transform: none; }

/* Slider Controls */
.hero-nav {
  position: absolute;
  bottom: 160px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  transition: border-color var(--dur), background var(--dur);
}
.hero-nav-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
}
.hero-dots {
  position: absolute;
  bottom: 155px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background var(--dur), transform var(--dur);
  cursor: pointer;
}
.hero-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ----------------------------------------------------------------
   8. FLOATING STATS CARDS
   ---------------------------------------------------------------- */
.stats-strip {
  position: relative;
  z-index: 20;
  margin-top: -65px;
  padding-bottom: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.stat-card {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(9, 30, 62, 0.06);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 0 0 16px 16px;
}
.stat-card:hover::before {
  transform: scaleX(1);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(9, 30, 62, 0.12);
  background: var(--white);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(218, 61, 61, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat-card:hover .stat-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(218, 61, 61, 0.25);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-info h3 {
  display: flex;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2px;
}
.stat-info h3 .counter {
  font-size: inherit;
  font-weight: inherit;
}
.stat-info h3 .stat-plus {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 2px;
  transform: translateY(-2px);
  display: inline-block;
  line-height: 1;
}
.stat-info span {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ================================================================
   PART 2 â€” PAGE HEADER (Breadcrumb Hero for Child Pages)
   ================================================================ */

/* ----------------------------------------------------------------
   8b. PAGE HEADER  (.ph)
   ---------------------------------------------------------------- */
.ph {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  /* Push content below the fixed navbar + topbar */
  padding-top: calc(var(--nav-h) + var(--topbar-h) + 60px);
  padding-bottom: 80px;
}

/* Background image */
.ph__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}
.ph:hover .ph__bg { transform: scale(1); }

/* Primary dark gradient overlay */
.ph__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(6,15,31,.96) 0%,
    rgba(9,30,62,.88) 45%,
    rgba(15,35,75,.78) 70%,
    rgba(218,61,61,.18) 100%
  );
  z-index: 1;
}

/* â”€â”€ Decorative geometry â”€â”€ */
.ph__geo {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* Large outer ring â€” top-right */
.ph__geo--circle-1 {
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(218,61,61,.18);
  border-radius: 50%;
  animation: ph-spin 28s linear infinite;
}

/* Smaller inner ring */
.ph__geo--circle-2 {
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border: 1px dashed rgba(218,61,61,.10);
  border-radius: 50%;
  animation: ph-spin 18s linear infinite reverse;
}

/* Vertical accent line â€” left side */
.ph__geo--line-v {
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--accent) 40%,
    rgba(218,61,61,.15) 100%
  );
}

/* Dot-grid pattern â€” bottom right */
.ph__geo--grid {
  right: 52px;
  bottom: 70px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .7;
}

@keyframes ph-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* â”€â”€ Floating accent orb â”€â”€ */
.ph__orb {
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,61,61,.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: ph-pulse 5s ease-in-out infinite;
}
@keyframes ph-pulse {
  0%,100% { transform: scale(1);   opacity: .6; }
  50%      { transform: scale(1.15); opacity: 1;  }
}

/* â”€â”€ Content wrapper â”€â”€ */
.ph__container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: var(--container-w);
}

/* â”€â”€ Badge chip â”€â”€ */
.ph__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(218,61,61,.12);
  border: 1px solid rgba(218,61,61,.3);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  backdrop-filter: blur(6px);
  animation: ph-fade-up .5s var(--ease) both;
}
.ph__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: ph-blink 2s ease infinite;
}
@keyframes ph-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* â”€â”€ Heading â”€â”€ */
.ph__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  animation: ph-fade-up .55s var(--ease) .1s both;
}
.ph__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
/* Underline accent behind the em text */
.ph__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .45;
}

/* â”€â”€ Subtitle â”€â”€ */
.ph__subtitle {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.7;
  animation: ph-fade-up .55s var(--ease) .2s both;
}

/* â”€â”€ Breadcrumb â”€â”€ */
.ph__crumb {
  animation: ph-fade-up .55s var(--ease) .3s both;
}
.ph__crumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.ph__crumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 500;
}
.ph__crumb-item a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  transition: color var(--dur);
}
.ph__crumb-item a:hover { color: var(--accent); }
.ph__crumb-item--active span {
  color: var(--accent);
  font-weight: 700;
}
.ph__crumb-sep {
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
}

/* Shared fade-up entrance */
@keyframes ph-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* â”€â”€ Bottom wave â”€â”€ */
.ph__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 10;
  line-height: 0;
}
.ph__wave svg {
  width: 100%;
  height: 100%;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
  .ph {
    min-height: 320px;
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 64px;
  }
  .ph__title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .ph__geo--circle-1 { width: 300px; height: 300px; right: -80px; }
  .ph__geo--circle-2 { width: 200px; height: 200px; right: -30px; }
  .ph__geo--grid { display: none; }
}

/* ================================================================
   PART 3 â€” ABOUT US, SERVICES, INDUSTRIES
   ================================================================ */

/* ----------------------------------------------------------------
   9. ABOUT US SECTION
   ---------------------------------------------------------------- */

#about { background: var(--white); padding: var(--section-py) 0; overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left: Overlapping Image Block */
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 430px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 270px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-img-sub img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-img-sub:hover img { transform: scale(1.04); }

/* Floating experience badge */
.about-exp-badge {
  position: absolute;
  top: 32px; right: -10px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(218,61,61,.35);
  z-index: 10;
}
.about-exp-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}
.about-exp-badge span {
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

/* Decorative elements */
.about-images::after {
  content: '';
  position: absolute;
  top: -16px; left: 32px;
  width: 100px; height: 4px;
  background: var(--accent);
  border-radius: 4px;
}
.about-dec-ring {
  position: absolute;
  bottom: 24px; left: -24px;
  width: 80px; height: 80px;
  border: 3px solid rgba(218,61,61,.2);
  border-radius: 50%;
}
.about-dec-dots {
  position: absolute;
  bottom: 60px; right: 10px;
  display: grid;
  grid-template-columns: repeat(4,8px);
  gap: 7px;
}
.about-dec-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(9,30,62,.12);
  display: block;
}

/* Right: Content */
.about-content { padding-left: 4px; }

.about-body {
  font-family: var(--font-sub);
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.78;
  margin: 18px 0 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  transition: box-shadow var(--dur), transform var(--dur);
}
.about-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(218,61,61,.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-text h5 {
  font-family: var(--font-sub);
  font-size: .83rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.about-feature-text p {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-ceo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-ceo-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.about-ceo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-ceo-info strong {
  display: block;
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
}
.about-ceo-info span { font-size: .74rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   10. OUR SERVICES SECTION
   ---------------------------------------------------------------- */
#services { background: var(--off-white); padding: var(--section-py) 0; }

.services-header {
  text-align: center;
  margin-bottom: 52px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-num {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(218,61,61,.4);
}
.service-icon-wrap {
  position: absolute;
  bottom: -22px; left: 22px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--dur);
  z-index: 2;
}
.service-card:hover .service-icon-wrap { background: var(--accent); }

.service-card-body {
  padding: 36px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--dur);
}
.service-card:hover .service-card-body h3 { color: var(--accent); }
.service-card-body p {
  font-family: var(--font-sub);
  font-size: .865rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--dur), gap var(--dur);
  align-self: flex-start;
}
.service-readmore:hover { border-color: var(--accent); gap: 12px; }

.services-footer { text-align: center; margin-top: 44px; }

/* ----------------------------------------------------------------
   11. INDUSTRIES WE SERVE SECTION
   ---------------------------------------------------------------- */
#industries {
  background: var(--primary);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
#industries::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
}
#industries::after {
  content: '';
  position: absolute;
  bottom: -90px; left: -90px;
  width: 320px; height: 320px;
  border: 1px solid rgba(218,61,61,.12);
  border-radius: 50%;
}
.industries-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative; z-index: 2;
}
.industries-header .section-title { color: var(--white); }
.industries-header .section-subtitle { color: rgba(255,255,255,.58); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative; z-index: 2;
}
.industry-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  transition: background var(--dur), border-color var(--dur),
              transform var(--dur) var(--ease), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(218,61,61,.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
}
.industry-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(218,61,61,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.industry-card:hover::before { opacity: 1; }

.industry-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: rgba(218,61,61,.12);
  border: 1px solid rgba(218,61,61,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  position: relative; z-index: 1;
  transition: background var(--dur), transform var(--dur);
}
.industry-card:hover .industry-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(-4deg);
}
.industry-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.industry-card p {
  font-family: var(--font-sub);
  font-size: .84rem;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  position: relative; z-index: 1;
}

.industries-footer {
  text-align: center;
  margin-top: 46px;
  position: relative; z-index: 2;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 6px;
  padding: 13px 32px;
  transition: background var(--dur), border-color var(--dur),
              transform var(--dur), box-shadow var(--dur);
}
.btn-outline-white:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,61,61,.4);
}

/* ================================================================
   PART 3 â€” CASE STUDIES, WHY US, PARTNERS MARQUEE
   ================================================================ */

/* ----------------------------------------------------------------
   12. CASE STUDIES
   ---------------------------------------------------------------- */
#case-studies { background: var(--white); padding: var(--section-py) 0; }

.case-header {
  text-align: center;
  margin-bottom: 52px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Image with badge overlay */
.case-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.case-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.case-card:hover .case-card-img img { transform: scale(1.06); }

/* Category badge â€” top-left z-indexed over image */
.case-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 5;
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border-radius: 4px;
  padding: 5px 12px;
  box-shadow: 0 4px 12px rgba(218,61,61,.4);
}

/* Dark gradient overlay at bottom of image */
.case-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(9,30,62,.55), transparent);
  z-index: 2;
}

.case-card-body {
  padding: 22px 22px 0;
  flex: 1;
}
.case-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--dur);
}
.case-card:hover .case-card-body h3 { color: var(--accent); }
.case-card-body p {
  font-family: var(--font-sub);
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.case-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.case-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sub);
  font-size: .75rem;
  color: var(--text-muted);
}
.case-meta-item svg { color: var(--accent); flex-shrink: 0; }

/* Card footer: two action buttons */
.case-card-footer {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--light-gray);
  margin-top: auto;
}
.case-card-footer a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 600;
  padding: 14px 12px;
  color: var(--text-muted);
  transition: background var(--dur), color var(--dur);
}
.case-card-footer a:first-child {
  border-right: 1px solid var(--light-gray);
}
.case-card-footer a:hover {
  background: var(--off-white);
  color: var(--accent);
}
.case-card-footer a svg { flex-shrink: 0; }

.case-footer { text-align: center; margin-top: 44px; }

/* ----------------------------------------------------------------
   13. WHY PICK GHATI WEB SOLUTIONS
   ---------------------------------------------------------------- */
#why-us {
  background: var(--off-white);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(218,61,61,.06);
  border-radius: 50%;
  pointer-events: none;
}
#why-us::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border: 1px dashed rgba(218,61,61,.1);
  border-radius: 50%;
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative; z-index: 2;
}

/* Symmetric 3-col layout: benefits | center image | benefits */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 32px;
  align-items: center;
  position: relative; z-index: 2;
}

/* Center image â€” spin ring + subtle pulse */
.why-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
/* Outer slow-spinning dashed ring */
.why-center::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 340px; height: 340px;
  margin-top: -170px; margin-left: -170px;
  border-radius: 50%;
  border: 2px dashed rgba(218,61,61,.25);
  animation: why-ring-spin 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}
/* Inner pulsing glow ring */
.why-center::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 310px; height: 310px;
  margin-top: -155px; margin-left: -155px;
  border-radius: 50%;
  background: rgba(218,61,61,.06);
  animation: why-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes why-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes why-pulse {
  0%,100% { transform: scale(1);   opacity: .6; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.why-center-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 0 0 3px rgba(218,61,61,.2),
              var(--shadow-lg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: why-float-a 6s ease-in-out infinite 0.8s;
}
.why-center-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-center-badge {
  margin-top: -28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(218,61,61,.4);
  position: relative; z-index: 3;
}

/* Left & Right benefit columns */
.why-col { display: flex; flex-direction: column; gap: 28px; }
.why-col-left { align-items: flex-end; text-align: right; }
.why-col-right { align-items: flex-start; text-align: left; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 300px;
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(9,30,62,.08), 0 1px 4px rgba(9,30,62,.05);
  transition: box-shadow var(--dur);
  /* Float via animation â€” each card gets its own via nth-child */
  will-change: transform;
}

/* Unique float keyframes â€” different heights and speeds */
@keyframes why-float-a {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(.4deg); }
}
@keyframes why-float-b {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-7px) rotate(-.3deg); }
}
@keyframes why-float-c {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  40%      { transform: translateY(-12px) rotate(.5deg); }
}
@keyframes why-float-d {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  60%      { transform: translateY(-8px) rotate(-.4deg); }
}

/* Assign a different float to each card */
#why-expertise  { animation: why-float-a 4.2s ease-in-out infinite; }
#why-custom     { animation: why-float-b 5.1s ease-in-out infinite 0.6s; }
#why-support    { animation: why-float-c 4.6s ease-in-out infinite 1.1s; }
#why-transparent{ animation: why-float-d 5.4s ease-in-out infinite 0.3s; }

/* Hover: pause float + lift + stronger shadow */
.why-item:hover {
  animation-play-state: paused;
  box-shadow: 0 20px 48px rgba(9,30,62,.14), 0 4px 12px rgba(218,61,61,.1);
  transform: translateY(-6px) scale(1.015) !important;
  transition: box-shadow .25s, transform .25s;
}
.why-col-left .why-item { flex-direction: row-reverse; }

.why-item-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(9,30,62,.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: background var(--dur), color var(--dur), transform var(--dur);
}
.why-item:hover .why-item-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.why-item-text h4 {
  font-family: var(--font-sub);
  font-size: .92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.why-item-text p {
  font-family: var(--font-sub);
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   14. PARTNERS & TECHNOLOGIES â€” Dual-Row Infinite Marquee
   ---------------------------------------------------------------- */
#partners {
  background: var(--white);
  padding: 72px 0;
  overflow: hidden;
}
.partners-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Row wrapper */
.marquee-section { margin-bottom: 0; }
.marquee-row-label {
  font-family: var(--font-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-align: center;
  margin-bottom: 16px;
}

/* Fade edges */
.marquee-outer {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}
.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

/* The scrolling track â€” items are duplicated in HTML for seamless loop */
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
}

/* RTL (partners row) */
.marquee-rtl .marquee-track {
  animation: marquee-rtl 30s linear infinite;
}
/* LTR (tech row) */
.marquee-ltr .marquee-track {
  animation: marquee-ltr 28s linear infinite;
}

/* Pause on hover */
.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Individual logo card */
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  margin: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sub);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color var(--dur), box-shadow var(--dur),
              color var(--dur), transform var(--dur);
  cursor: default;
}
.marquee-item:hover {
  border-color: rgba(218,61,61,.3);
  box-shadow: var(--shadow-sm);
  color: var(--accent);
  transform: translateY(-2px);
}
.marquee-item svg { flex-shrink: 0; }

/* Tech pills â€” slightly different style for row 2 */
.marquee-tech {
  background: var(--off-white);
  border-color: transparent;
  color: var(--text-muted);
  font-size: .85rem;
}
.marquee-tech:hover {
  background: var(--white);
  border-color: rgba(218,61,61,.25);
  color: var(--primary);
}

/* ================================================================
   PART 4 â€” BLOG, GOOGLE REVIEWS, CONTACT US
   ================================================================ */

/* ----------------------------------------------------------------
   15. BLOG SECTION
   ---------------------------------------------------------------- */
#blogs { background: var(--off-white); padding: var(--section-py) 0; }
.blog-header { text-align: center; margin-bottom: 52px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

/* Category badge top-left */
.blog-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  font-family: var(--font-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  border-radius: 4px;
  padding: 4px 11px;
}

.blog-card-body { padding: 22px 22px 0; flex: 1; display: flex; flex-direction: column; }

/* Author + date meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 7px;
}
.blog-author-img {
  width: 30px; height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-author-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--light-gray);
}
.blog-author-name {
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.blog-meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--mid-gray); }
.blog-date {
  font-family: var(--font-sub);
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-date svg { color: var(--accent); }

.blog-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--dur);
}
.blog-card:hover .blog-card-body h3 { color: var(--accent); }
.blog-card-body p {
  font-family: var(--font-sub);
  font-size: .855rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  margin-bottom: 24px;
  transition: border-color var(--dur), gap var(--dur);
  align-self: flex-start;
}
.blog-readmore:hover { border-color: var(--accent); gap: 12px; }

.blog-footer { text-align: center; margin-top: 44px; }

/* Blog page hero stats strip */
.blog-page-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.blog-page-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.blog-page-stat__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.blog-page-stat__label {
  font-family: var(--font-sub);
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Category filter bar */
.blog-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 36px 0 0;
}
.blog-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  padding: 7px 18px;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.blog-cat-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb, 0,173,246), .06);
}
.blog-cat-btn.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb, 0,173,246), .35);
}
.blog-cat-btn .cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(0,0,0,.1);
  color: inherit;
}
.blog-cat-btn.is-active .cat-count {
  background: rgba(255,255,255,.25);
}

/* Empty state */
.blog-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 24px;
  gap: 16px;
  text-align: center;
}
.blog-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--mid-gray);
}
.blog-empty__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--primary);
}
.blog-empty__text {
  font-family: var(--font-sub);
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 340px;
}

/* ----------------------------------------------------------------
   16. GOOGLE REVIEWS SECTION
   ---------------------------------------------------------------- */
#reviews { background: var(--white); padding: var(--section-py) 0; }
.reviews-header { text-align: center; margin-bottom: 52px; }

/* Overall rating display */
.reviews-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 52px;
  padding: 24px 32px;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid var(--light-gray);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.reviews-overall-score {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.reviews-overall-right { display: flex; flex-direction: column; gap: 5px; }
.reviews-stars { display: flex; gap: 3px; }
.star { color: #F59E0B; font-size: 1.1rem; }
.reviews-overall-count {
  font-family: var(--font-sub);
  font-size: .8rem;
  color: var(--text-muted);
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
}

/* Review grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
  position: relative;
}
.review-card:hover {
  border-color: rgba(218,61,61,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
/* Quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 14px; right: 20px;
  font-family: var(--font-head);
  font-size: 4rem;
  color: rgba(218,61,61,.12);
  line-height: 1;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-stars { display: flex; gap: 3px; }
.review-star { color: #F59E0B; font-size: .9rem; }

/* Google G icon */
.review-google {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.review-text {
  font-family: var(--font-sub);
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}

.review-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--light-gray);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name {
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 1px;
}
.review-date {
  font-size: .73rem;
  color: var(--text-muted);
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sub);
  font-size: .68rem;
  font-weight: 600;
  color: #16A34A;
  background: #DCFCE7;
  border-radius: 50px;
  padding: 3px 9px;
}

/* ----------------------------------------------------------------
   17. CONTACT US SECTION
   ---------------------------------------------------------------- */
#contact {
  background: var(--primary);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border: 1px solid rgba(218,61,61,.12);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  position: relative; z-index: 2;
}

/* Left: Office info panels */
.contact-info-header { margin-bottom: 36px; }
.contact-info-header .section-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.contact-info-header .section-subtitle { color: rgba(255,255,255,.6); margin: 10px 0 0; text-align: left; }

/* Big phone CTA */
.contact-phone-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding: 22px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  text-decoration: none;
  transition: background var(--dur), border-color var(--dur);
}
.contact-phone-cta:hover {
  background: rgba(218,61,61,.18);
  border-color: rgba(218,61,61,.4);
}
.contact-phone-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  animation: phone-ring 2.5s ease-in-out infinite;
}
@keyframes phone-ring {
  0%,100% { transform: rotate(0deg); }
  10%      { transform: rotate(-15deg); }
  20%      { transform: rotate(15deg); }
  30%      { transform: rotate(-10deg); }
  40%      { transform: rotate(10deg); }
  50%      { transform: rotate(0deg); }
}
.contact-phone-text span {
  display: block;
  font-family: var(--font-sub);
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.contact-phone-text strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

/* Office cards */
.contact-offices { display: flex; flex-direction: column; gap: 14px; }
.office-card {
  padding: 20px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  transition: background var(--dur), border-color var(--dur);
}
.office-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(218,61,61,.35);
}
.office-card-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.office-card-name svg { flex-shrink: 0; }
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 7px;
  line-height: 1.5;
}
.office-detail:last-child { margin-bottom: 0; }
.office-detail svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.35); }

/* Right: Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-family: var(--font-sub);
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; position: relative; }
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: .02em;
}
.form-group label span { color: var(--accent); }
.form-control {
  width: 100%;
  font-family: var(--font-sub);
  font-size: .875rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  resize: none;
}
.form-control:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(218,61,61,.1);
}
.form-control.error { border-color: #ef4444; }
.form-control.success { border-color: #22c55e; }
.form-error-msg {
  display: none;
  font-family: var(--font-sub);
  font-size: .73rem;
  color: #ef4444;
  margin-top: 5px;
}
.form-group.has-error .form-error-msg { display: block; }

/* Service select */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,61,61,.35);
}
.form-submit svg { transition: transform var(--dur); }
.form-submit:hover svg { transform: translateX(4px); }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success svg { color: #22c55e; margin-bottom: 12px; }
.form-success h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-success p {
  font-family: var(--font-sub);
  font-size: .875rem;
  color: var(--text-muted);
}

/* ================================================================
   PART 5 â€” FOOTER + RESPONSIVE
   ================================================================ */

/* ----------------------------------------------------------------
   18. RICH FOOTER
   ---------------------------------------------------------------- */
#footer {
  background: var(--primary);
  padding: 72px 0 0;
  border-top: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Col 1: Brand */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span {
  font-family: var(--font-sub);
  font-size: .7rem;
  color: rgba(255,255,255,.45);
}
.footer-desc {
  font-family: var(--font-sub);
  font-size: .845rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--dur), color var(--dur), border-color var(--dur), transform var(--dur);
}
.footer-social:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Cols 2-3: Links */
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-sub);
  font-size: .855rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--dur), gap var(--dur);
}
.footer-links a::before {
  content: 'â†’';
  font-size: .75rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--dur);
}
.footer-links a:hover { color: var(--white); gap: 12px; }
.footer-links a:hover::before { opacity: 1; }

/* Col 4: Newsletter */
.footer-col h4 { color: var(--white); }
.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}
.footer-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: var(--font-sub);
  font-size: .85rem;
  color: var(--white);
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur);
  white-space: nowrap;
}
.footer-newsletter-btn:hover { background: var(--accent-hover); }

/* Contact details in footer */
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-sub);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-copy a { color: var(--accent); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-family: var(--font-sub);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: color var(--dur);
}
.footer-bottom-links a:hover { color: var(--white); }

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(218,61,61,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--dur), visibility var(--dur), transform var(--dur),
              background var(--dur);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-hover); }

/* ----------------------------------------------------------------
   19. MOBILE HAMBURGER NAV
   ---------------------------------------------------------------- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1.5px solid rgba(9,30,62,.18);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--dur);
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s, width .3s;
}
/* Hamburger lines: always dark â€” navbar is always white-background */
/* (old white-on-transparent rule removed â€” navbar is no longer transparent) */


/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-menu.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(9,30,62,.18);
  padding: 80px 28px 32px;
  z-index: 997;
  overflow-y: auto;
  animation: slideInRight .3s var(--ease);
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,30,62,.5);
  z-index: 996;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* Close button inside drawer */
.nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

/* ================================================================
   RESPONSIVE â€” ALL BREAKPOINTS
   ================================================================ */

/* â”€â”€ 1100px: Tablets landscape â”€â”€ */
@media (max-width: 1100px) {

  :root { --container-w: 960px; }

  /* Navbar */
  .nav-hamburger { display: flex; }
  .nav-menu { display: none; }

  /* Mega menu hidden on mobile â€” use normal nav links */
  .mega-menu { display: none !important; }
  .nav-chevron { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .about-exp-badge { right: 20px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-col-left,
  .why-col-right { align-items: flex-start; text-align: left; }
  .why-col-left .why-item { flex-direction: row; }
  .why-center { order: -1; }
  .why-center-img { width: 220px; height: 220px; }

  /* Case Studies */
  .case-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* â”€â”€ 768px: Tablets portrait â”€â”€ */
@media (max-width: 768px) {

  :root {
    --topbar-h: 0px;
    --section-py: 60px;
  }

  /* Hide topbar on mobile */
  #topbar { display: none; }

  /* Navbar â€” on mobile topbar is hidden so always snap to very top */
  #navbar { transform: translateY(0) !important; }
  #navbar.scrolled { transform: translateY(0); }

  /* Hero */
  .hero-title { font-size: clamp(1.8rem, 6vw, 3rem); }
  .hero-desc  { font-size: .9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Stats â€” 2x2 grid on tablet */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* About */
  .about-images { height: 300px; }
  .about-img-main { width: 85%; height: 270px; }
  .about-img-sub  { width: 58%; height: 200px; }
  .about-features { grid-template-columns: 1fr; }
  .about-actions  { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Case Studies */
  .case-grid { grid-template-columns: 1fr; }

  /* Partners marquee â€” slow down slightly */
  .marquee-rtl .marquee-track { animation-duration: 22s; }
  .marquee-ltr .marquee-track { animation-duration: 20s; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-overall { flex-direction: column; gap: 12px; text-align: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; }

  /* Section headers */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

/* â”€â”€ 480px: Mobile portrait â”€â”€ */
@media (max-width: 480px) {

  :root { --section-py: 48px; }

  .container { padding: 0 16px; }

  /* Hero */
  .hero-title   { font-size: 1.8rem; line-height: 1.2; }
  .hero-tag     { font-size: .7rem; }
  .hero-actions .btn { padding: 13px 22px; font-size: .85rem; }

  /* Stats â€” keep 2x2 on small phones too (do NOT collapse to 1-col) */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card {
    padding: 20px 14px;
    gap: 12px;
    border-radius: 12px;
  }
  .stat-info h3 { font-size: 1.8rem; }
  .stat-info h3 .stat-plus { font-size: 1.2rem; transform: translateY(-1px); }
  .stat-icon { width: 44px; height: 44px; border-radius: 10px; font-size: 1.2rem; }
  .stat-info span { font-size: .76rem; }

  /* About images collapsed single */
  .about-images { height: 240px; }
  .about-img-main { width: 100%; height: 220px; position: relative; }
  .about-img-sub  { display: none; }
  .about-exp-badge { top: 12px; right: 12px; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-center-img { width: 180px; height: 180px; }

  /* Partners â€” reduce item padding */
  .marquee-item { padding: 10px 18px; font-size: .82rem; }

  /* Contact phone */
  .contact-phone-text strong { font-size: 1.3rem; }

  /* Back to top */
  .back-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}


/* ================================================================
   HERO LAYOUT + FLOATING CARDS
   ================================================================ */

/* Two-column hero layout: content left | float right */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  min-height: inherit;
  padding: 100px 0 40px;
}

/* Base floating card */
.hero-float {
  border-radius: 16px;
  padding: 0;
  animation: float-bob 4s ease-in-out infinite;
  will-change: transform;
  flex-shrink: 0;
}
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* â”€â”€ Slide 1: Code Snippet Card â”€â”€ */
.hero-float-code {
  background: #0f1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  max-width: 360px;
}
.hf-code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1a1d27;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.hf-code-title {
  margin-left: 8px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: .73rem;
  color: rgba(255,255,255,.45);
}
.hf-code-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.hf-code-line {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: .8rem;
  line-height: 1.7;
  color: #a8b3cf;
}
.hf-indent { padding-left: 20px; }
.hf-kw  { color: #c792ea; }
.hf-var { color: #82aaff; }
.hf-key { color: #89ddff; }
.hf-str { color: #c3e88d; }

/* â”€â”€ Slide 2: Marketing Metrics Card â”€â”€ */
.hero-float-metrics {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 22px 24px;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hf-metrics-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hf-metrics-header svg { color: #60efac; }
.hf-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.hf-metric-label { font-family: var(--font-sub); font-size: .78rem; color: rgba(255,255,255,.7); }
.hf-metric-val { font-family: var(--font-sub); font-size: .8rem; font-weight: 700; }
.hf-green { color: #60efac; }
.hf-red   { color: #ff6b6b; }
.hf-metric-bar {
  height: 5px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  margin-bottom: 14px;
  overflow: hidden;
}
.hf-metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #60efac, #00c9ff);
  border-radius: 99px;
}
.hf-fill-red { background: linear-gradient(90deg, #ff6b6b, #ffa552); }
.hf-badge {
  margin-top: 4px;
  font-family: var(--font-sub);
  font-size: .73rem;
  font-weight: 700;
  color: #ffd95a;
  background: rgba(255,217,90,.1);
  border: 1px solid rgba(255,217,90,.2);
  border-radius: 50px;
  padding: 5px 12px;
  display: inline-block;
}

/* â”€â”€ Slide 3: Project Delivery Card â”€â”€ */
.hero-float-project {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 24px;
  max-width: 340px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25), 0 4px 12px rgba(9,30,62,.15);
}
.hf-proj-title {
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.hf-proj-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.hf-proj-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hf-proj-stat {
  background: var(--off-white);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.hf-proj-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}
.hf-proj-stat span {
  font-family: var(--font-sub);
  font-size: .68rem;
  color: var(--text-muted);
}
.hf-proj-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.hf-proj-stack span {
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 600;
  background: rgba(218,61,61,.08);
  color: var(--accent);
  border-radius: 4px;
  padding: 3px 9px;
}
.hf-proj-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}
.hf-proj-avatars { display: flex; }
.hf-proj-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}
.hf-proj-avatars img:first-child { margin-left: 0; }
.hf-proj-team {
  font-family: var(--font-sub);
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Responsive hero layout */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; padding: 80px 0 140px; }
  .hero-float { display: none; }
}

/* ================================================================
   REVIEWS TOP ROW (side-by-side header + rating panel)
   ================================================================ */
.reviews-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light-gray);
}
.reviews-top-row .reviews-header { text-align: left; margin-bottom: 0; }
.reviews-top-row .reviews-header .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.reviews-top-row .section-subtitle { margin-top: 6px; }

.reviews-rating-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding: 18px 24px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  white-space: nowrap;
}
.reviews-rating-panel .reviews-overall-score {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.reviews-rating-panel .reviews-overall-right { display: flex; flex-direction: column; gap: 4px; }
.reviews-rating-panel .reviews-stars { display: flex; gap: 2px; }
.reviews-rating-panel .star { color: #F59E0B; font-size: .95rem; }
.reviews-rating-panel .reviews-overall-count {
  font-family: var(--font-sub); font-size: .73rem; color: var(--text-muted);
}
.reviews-rating-panel .google-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-sub); font-size: .7rem; font-weight: 600; color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
  width: fit-content;
}

@media (max-width: 768px) {
  .reviews-top-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .reviews-rating-panel { width: 100%; justify-content: space-between; }
}

/* ================================================================
   SCROLL-REVEAL ANIMATIONS
   Fast, unique entrance animations via IntersectionObserver
   Usage: add class "reveal" to any element. Optional modifiers:
   reveal-left | reveal-right | reveal-scale | reveal-fade
   Stagger children with data-delay="100" (ms)
   ================================================================ */

/* Pre-animation state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.9) translateY(16px);
  transition: opacity .45s cubic-bezier(.4,0,.2,1), transform .45s cubic-bezier(.4,0,.2,1);
}
.reveal-fade {
  opacity: 0;
  transition: opacity .6s ease;
}

/* Post-animation (triggered by JS adding .in-view) */
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view,
.reveal-fade.in-view {
  opacity: 1;
  transform: none;
}
/* ================================================================
   MOBILE NAV DRAWER  (.mob-nav)
   ================================================================ */
.mob-nav {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 9999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 48px rgba(9,30,62,.18);
  overflow: hidden;
}
.mob-nav.open { transform: translateX(0); }

.mob-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid var(--light-gray);
  flex-shrink: 0;
}
.mob-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mob-nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent); color: var(--white);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mob-nav-logo-text strong { display: block; font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.mob-nav-logo-text span  { font-family: var(--font-sub); font-size: .64rem; color: var(--text-muted); }
.mob-nav-close {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--off-white); border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--primary); flex-shrink: 0;
  transition: background var(--dur), color var(--dur);
}
.mob-nav-close:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.mob-nav-links { flex: 1; overflow-y: auto; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }

.mob-nav-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-sub); font-size: .88rem; font-weight: 600;
  color: var(--primary); text-decoration: none; background: none; border: none;
  cursor: pointer; width: 100%; text-align: left;
  transition: background var(--dur), color var(--dur);
}
.mob-nav-link svg { flex-shrink: 0; color: var(--accent); }
.mob-nav-link:hover,
.mob-nav-link.active { background: rgba(218,61,61,.08); color: var(--accent); }

.mob-nav-accordion { display: flex; flex-direction: column; }
.mob-nav-accord-btn { justify-content: space-between; }
.mob-accord-left { display: flex; align-items: center; gap: 12px; }
.mob-accord-chevron { flex-shrink: 0; color: var(--text-muted) !important; transition: transform .3s var(--ease); }
.mob-nav-accord-btn[aria-expanded="true"] .mob-accord-chevron { transform: rotate(180deg); }
.mob-nav-accord-btn[aria-expanded="true"] { color: var(--accent); background: rgba(218,61,61,.08); }

.mob-nav-panel { overflow: hidden; max-height: 0; transition: max-height .35s cubic-bezier(.4,0,.2,1); display: block !important; }
.mob-nav-panel.panel-open { max-height: 700px; }

.mob-nav-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px 9px 40px; border-radius: 8px;
  font-family: var(--font-sub); font-size: .83rem; font-weight: 500;
  color: var(--text-body); text-decoration: none;
  transition: background var(--dur), color var(--dur), padding-left var(--dur);
}
.mob-nav-sub-link svg { flex-shrink: 0; color: var(--accent); opacity: .7; }
.mob-nav-sub-link:hover { background: rgba(218,61,61,.06); color: var(--accent); padding-left: 46px; }

.mob-nav-footer {
  flex-shrink: 0; padding: 14px 14px 18px;
  border-top: 1px solid var(--light-gray); background: var(--off-white);
  display: flex; flex-direction: column; gap: 12px;
}
.mob-nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 20px;
  background: var(--accent); color: var(--white);
  font-family: var(--font-sub); font-size: .88rem; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  transition: background var(--dur), transform var(--dur);
}
.mob-nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.mob-nav-cta svg { transition: transform var(--dur); }
.mob-nav-cta:hover svg { transform: translateX(3px); }

.mob-nav-contact-info { display: flex; flex-direction: column; gap: 5px; }
.mob-nav-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sub); font-size: .76rem; color: var(--text-muted);
  text-decoration: none; transition: color var(--dur);
}
.mob-nav-contact-item svg { flex-shrink: 0; color: var(--accent); }
.mob-nav-contact-item:hover { color: var(--accent); }

.mob-nav-socials { display: flex; gap: 8px; }
.mob-nav-social {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.mob-nav-social:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

@media (min-width: 1101px) {
  .nav-hamburger { display: none !important; }
  .mob-nav       { display: none !important; }
  .nav-overlay   { display: none !important; }
}


/* ================================================================
   9. SERVICE DETAIL PAGE  (.sd-*)
   ================================================================ */

/* ---------------------------------------------------------------
   9a. Overview / Hero Section
--------------------------------------------------------------- */
.sd-overview {
  background: var(--white);
}
.sd-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image block */
.sd-overview__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sd-overview__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.sd-overview__img-wrap:hover img { transform: scale(1.04); }

/* Floating quality badge */
.sd-overview__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  box-shadow: 0 8px 32px rgba(9,30,62,.18);
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
}
.sd-overview__badge i {
  font-size: 1.1rem;
  color: var(--accent);
}

/* Decorative ring behind the image */
.sd-overview__ring {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(218,61,61,.15);
  z-index: -1;
}

/* Text block */
.sd-overview__lead {
  font-family: var(--font-sub);
  font-size: 1.08rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.sd-overview__body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-top: 16px;
}

.sd-overview__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   9b. Technology / Tool Stack Chips
--------------------------------------------------------------- */
.sd-tech-stack {
  margin-top: 28px;
}
.sd-tech-stack__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.sd-tech-stack__label i { color: var(--accent); font-size: 1rem; }

.sd-tech-stack__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sd-tech-chip {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: .76rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 5px 14px;
  transition: background var(--dur), border-color var(--dur), color var(--dur), transform var(--dur);
}
.sd-tech-chip:hover {
  background: rgba(218,61,61,.08);
  border-color: rgba(218,61,61,.3);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------
   9c. Sub-Service Item Cards  (alternating layout)
--------------------------------------------------------------- */
.sd-items {
  background: var(--off-white);
}
.sd-items__header {
  margin-bottom: 64px;
}
.sd-items__grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* One item card */
.sd-item-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sd-item-card--reverse {
  direction: rtl; /* flip columns */
}
.sd-item-card--reverse > * {
  direction: ltr; /* restore text */
}

/* Image side */
.sd-item-card__img-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sd-item-card__img-inner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 5s ease;
}
.sd-item-card__img-inner:hover img { transform: scale(1.05); }

/* Step number overlay */
.sd-item-card__num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(218,61,61,.45);
}

/* Content side */
.sd-item-card__subtitle {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(218,61,61,.08);
  border: 1px solid rgba(218,61,61,.22);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.sd-item-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.sd-item-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Jodit-generated rich content blocks */
.sd-item-card__rich {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.sd-item-card__rich div {
  background: var(--white) !important;
  border: 1px solid var(--light-gray) !important;
  border-radius: 12px !important;
  padding: 18px 20px !important;
  transition: box-shadow var(--dur), border-color var(--dur), transform var(--dur);
}
.sd-item-card__rich div:hover {
  box-shadow: var(--shadow-sm) !important;
  border-color: rgba(218,61,61,.25) !important;
  transform: translateX(4px);
}
.sd-item-card__rich h3 {
  font-family: var(--font-sub) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 8px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-item-card__rich h3::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.sd-item-card__rich p {
  font-family: var(--font-body) !important;
  font-size: .92rem !important;
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* ---------------------------------------------------------------
   9d. Why Choose Us (service-specific)
--------------------------------------------------------------- */
.sd-why {
  background: var(--white);
}
.sd-why__header {
  margin-bottom: 56px;
}
.sd-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sd-why-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
  position: relative;
  overflow: hidden;
}
.sd-why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.sd-why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(218,61,61,.2);
}
.sd-why-card:hover::before { transform: scaleX(1); }

.sd-why-card__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
}
.sd-why-card__icon {
  font-size: 1.8rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: transform var(--dur), color var(--dur);
}
.sd-why-card:hover .sd-why-card__icon {
  transform: scale(1.12) rotate(6deg);
  color: var(--accent-hover);
}
.sd-why-card__icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(218,61,61,.18);
  background: rgba(218,61,61,.07);
}
.sd-why-card__title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px;
}
.sd-why-card__desc {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------------------------------------------------------------
   9e. CTA Banner
--------------------------------------------------------------- */
.sd-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0f2347 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.sd-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.sd-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(218,61,61,.08);
  pointer-events: none;
}
.sd-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.sd-cta__kicker {
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.sd-cta__heading {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  max-width: 560px;
}
.sd-cta__heading span {
  color: var(--accent);
}
.sd-cta__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.sd-cta__btn {
  white-space: nowrap;
  font-size: .95rem;
  padding: 15px 32px;
}
.sd-cta__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color var(--dur);
}
.sd-cta__phone:hover { color: var(--white); }
.sd-cta__phone i { color: var(--accent); }

/* ---------------------------------------------------------------
   9f. Responsive overrides â€” service detail
--------------------------------------------------------------- */
@media (max-width: 1024px) {
  .sd-overview__inner { grid-template-columns: 1fr; gap: 48px; }
  .sd-overview__img-wrap img { height: 380px; }

  .sd-item-card { grid-template-columns: 1fr; gap: 32px; }
  .sd-item-card--reverse { direction: ltr; }

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

  .sd-cta__inner { flex-direction: column; text-align: center; }
  .sd-cta__heading { max-width: 100%; }
  .sd-cta__right { align-items: center; }
}

@media (max-width: 640px) {
  .sd-overview__img-wrap img { height: 260px; }
  .sd-item-card__img-inner img { height: 240px; }
  .sd-why__grid { grid-template-columns: 1fr; }
  .sd-overview__actions { flex-direction: column; align-items: stretch; }
  .sd-overview__actions .btn { justify-content: center; }
  .sd-cta { padding: 48px 0; }
}

/* ===============================================================
   10. INDUSTRIES & DETAILS PAGE (.ind-*)
=============================================================== */

/* Explore link inside industry cards on hover */
.industry-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
  transition: gap var(--dur);
}
.industry-readmore-btn svg {
  flex-shrink: 0;
  transition: transform var(--dur);
}
.industry-card:hover .industry-readmore-btn {
  gap: 10px;
}
.industry-card:hover .industry-readmore-btn svg {
  transform: translateX(2px);
}

/* Industry detail container */
.ind-detail {
  padding: 80px 0;
  background: var(--off-white);
}

.ind-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Main Content Area */
.ind-main {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.ind-main__title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Rich text container for Jodit raw HTML elements */
.ind-rich-content {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}
.ind-rich-content p {
  margin-bottom: 20px;
}
.ind-rich-content h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}
.ind-rich-content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-dark);
}
.ind-rich-content ul, .ind-rich-content ol {
  margin: 16px 0 24px 20px;
}
.ind-rich-content li {
  margin-bottom: 8px;
}
.ind-rich-content img {
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

/* Sidebar styling */
.ind-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ind-sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}
.ind-sidebar-widget h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
  position: relative;
}
.ind-sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* Industries Navigation in Sidebar */
.ind-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ind-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--light-gray);
  transition: all var(--dur) var(--ease);
}
.ind-nav-link i {
  color: var(--mid-gray);
  transition: color var(--dur), transform var(--dur);
}
.ind-nav-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(4px);
}
.ind-nav-link:hover i {
  color: var(--white);
  transform: translateX(2px);
}
.ind-nav-link--active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.ind-nav-link--active i {
  color: var(--white);
}

/* Quote Form Widget inside Sidebar */
.ind-quote-widget {
  background: var(--primary);
  color: var(--white);
  border: none;
}
.ind-quote-widget h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.1);
}
.ind-quote-widget h4::after {
  background: var(--accent);
}
.ind-quote-widget p {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Trust Cards Grid */
.ind-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
}
.ind-why-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--light-gray);
  transition: all var(--dur) var(--ease);
}
.ind-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(218,61,61,.3);
  box-shadow: var(--shadow-sm);
}
.ind-why-card i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}
.ind-why-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.ind-why-card p {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Industry Details Consultation CTA */
.ind-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.ind-cta::before {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(218,61,61,.2);
  pointer-events: none;
}
.ind-cta__content {
  flex: 1;
}
.ind-cta__content h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.ind-cta__content p {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.ind-cta .btn {
  background: var(--accent);
  color: var(--white);
}
.ind-cta .btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(218,61,61,.4);
}

/* Responsive details layout */
@media (max-width: 992px) {
  .ind-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ind-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .ind-why-grid {
    grid-template-columns: 1fr;
  }
  .ind-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .ind-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .ind-main {
    padding: 24px;
  }
  .ind-main__title {
    font-size: 1.6rem;
  }
}

/* ================================================================
   AWARDS PAGE
   ================================================================ */

/* â”€â”€ Page section â”€â”€ */
.awards-page-section {
  background: var(--off-white);
  padding: 80px 0 100px;
}

.awards-page-header {
  margin-bottom: 56px;
}
.awards-page-header .section-subtitle {
  max-width: 680px;
  margin: 0 auto;
}

/* â”€â”€ Stats strip â”€â”€ */
.awards-page-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  padding: 24px 40px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.awards-page-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.awards-page-stat__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.awards-page-stat__label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* â”€â”€ Awards Grid â”€â”€ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* â”€â”€ Award Card â”€â”€ */
.award-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(218,61,61,.3);
}

/* Card image */
.award-card__img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  flex-shrink: 0;
}
.award-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.award-card:hover .award-card__img {
  transform: scale(1.06);
}
.award-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.25);
}

/* Shine / gloss effect on hover */
.award-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    transparent 40%,
    rgba(255,255,255,.12) 50%,
    transparent 60%
  );
  background-size: 200% 200%;
  background-position: 200% 200%;
  transition: background-position .6s ease;
  pointer-events: none;
}
.award-card:hover .award-card__shine {
  background-position: -10% -10%;
}

/* Card body */
.award-card__body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.award-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0;
}
.award-card__subtitle {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.award-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}
.award-card__date svg { flex-shrink: 0; }

.award-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
  transition: gap var(--dur);
}
.award-card:hover .award-card__cta { gap: 10px; }

/* â”€â”€ Empty state â”€â”€ */
.awards-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.awards-empty svg {
  margin: 0 auto 16px;
  opacity: .35;
}
.awards-empty p {
  font-family: var(--font-sub);
  font-size: 0.95rem;
}

/* â”€â”€ Award Detail Modal â”€â”€ */
.award-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,30,62,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInOverlay .2s ease;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.award-modal {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(9,30,62,.35);
  animation: slideUpModal .25s var(--ease);
}
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.award-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(9,30,62,.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 2;
  transition: background var(--dur);
}
.award-modal__close:hover { background: rgba(218,61,61,.12); color: var(--accent); }

.award-modal__img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  flex-shrink: 0;
}
.award-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.award-modal__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.2);
}

.award-modal__body {
  padding: 32px 36px 40px;
}

.award-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(218,61,61,.09);
  border: 1px solid rgba(218,61,61,.2);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.award-modal__title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin: 0 0 10px;
}

.award-modal__subtitle {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.award-modal__date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(218,61,61,.07);
  border: 1px solid rgba(218,61,61,.15);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.award-modal__desc {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

/* â”€â”€ Awards Page Responsive â”€â”€ */
@media (max-width: 1024px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .awards-grid { grid-template-columns: 1fr; }
  .awards-page-stats { gap: 28px; padding: 20px 24px; }
  .awards-page-stat__num { font-size: 1.6rem; }
  .award-modal { border-radius: 16px; }
  .award-modal__img-wrap { height: 220px; border-radius: 16px 16px 0 0; }
  .award-modal__body { padding: 24px 22px 32px; }
  .award-modal__title { font-size: 1.3rem; }
}

/* ================================================================
   TEAMS SECTION
   ================================================================ */

/* â”€â”€ Section wrapper â”€â”€ */
.team-section {
  background: var(--white);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,61,61,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* â”€â”€ Section Header â”€â”€ */
.team-section__header {
  margin-bottom: 56px;
}
.team-section__header .section-subtitle {
  max-width: 620px;
  margin: 0 auto;
}

/* â”€â”€ Team Grid â”€â”€ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* â”€â”€ Team Card â”€â”€ */
.team-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(218,61,61,.3);
}

/* Photo wrap */
.team-card__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary) 0%, hsl(220,70%,28%) 100%);
  flex-shrink: 0;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s var(--ease);
}
.team-card:hover .team-card__photo { transform: scale(1.06); }

/* Avatar fallback */
.team-card__avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(
    135deg,
    hsl(var(--tm-hue), 55%, 28%) 0%,
    hsl(calc(var(--tm-hue) + 30), 60%, 38%) 100%
  );
  transition: transform .55s var(--ease);
}
.team-card:hover .team-card__avatar { transform: scale(1.04); }

/* Gradient overlay â€” reveals text at bottom */
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,30,62,.55) 0%, transparent 55%);
  transition: opacity var(--dur);
}

/* Social pills â€” hidden by default, slide up on card hover */
.team-card__socials {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.team-card:hover .team-card__socials {
  transform: translateY(0);
  opacity: 1;
}
.team-social-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pill-color, #da3d3d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--dur), box-shadow var(--dur);
  flex-shrink: 0;
}
.team-social-pill:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* Card body */
.team-card__body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.team-card__designation {
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}
.team-card__short {
  font-family: var(--font-sub);
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
  transition: gap var(--dur);
}
.team-card:hover .team-card__cta { gap: 10px; }

/* â”€â”€ Empty state â”€â”€ */
.team-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.team-empty svg {
  margin: 0 auto 16px;
  opacity: .3;
}
.team-empty p {
  font-family: var(--font-sub);
  font-size: .95rem;
}

/* â”€â”€ Team Profile Modal â”€â”€ */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9,30,62,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInOverlay .2s ease;
}

.team-modal {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 740px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(9,30,62,.35);
  animation: slideUpModal .25s var(--ease);
}

.team-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(9,30,62,.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 2;
  transition: background var(--dur);
}
.team-modal__close:hover { background: rgba(218,61,61,.12); color: var(--accent); }

/* Header: photo + meta side-by-side */
.team-modal__header {
  display: flex;
  gap: 0;
}

.team-modal__photo-wrap {
  width: 260px;
  min-height: 320px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--primary) 0%, hsl(220,70%,28%) 100%);
  border-radius: 24px 0 0 0;
  overflow: hidden;
}
.team-modal__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-modal__avatar {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(
    135deg,
    hsl(var(--tm-hue), 55%, 28%) 0%,
    hsl(calc(var(--tm-hue) + 30), 60%, 38%) 100%
  );
}

.team-modal__meta {
  flex: 1;
  padding: 36px 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, var(--primary) 0%, hsl(220,60%,20%) 100%);
  border-radius: 0 24px 0 0;
}

.team-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 5px 14px;
  width: fit-content;
}

.team-modal__name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.team-modal__designation {
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.team-modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.team-modal__contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sub);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--dur);
}
.team-modal__contact-link:hover { color: var(--white); }
.team-modal__contact-link i { font-size: 1rem; color: rgba(255,255,255,.5); }

.team-modal__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.team-modal__social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 600;
  color: #fff;
  background: var(--pill-color, #da3d3d);
  border-radius: 50px;
  padding: 6px 14px;
  text-decoration: none;
  transition: transform var(--dur), box-shadow var(--dur), opacity var(--dur);
}
.team-modal__social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.team-modal__social-btn i { font-size: .95rem; }

/* Body: full description */
.team-modal__body {
  padding: 32px 36px 40px;
  border-top: 1px solid var(--light-gray);
}
.team-modal__section-label {
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.team-modal__desc {
  font-family: var(--font-sub);
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.8;
}
.team-modal__desc p {
  margin-bottom: 1rem;
  white-space: pre-line;
}

/* â”€â”€ Teams Responsive â”€â”€ */
@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-modal__photo-wrap { width: 200px; min-height: 260px; }
  .team-modal__meta { padding: 28px 28px 24px 24px; }
  .team-modal__name { font-size: 1.5rem; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-modal__header { flex-direction: column; }
  .team-modal__photo-wrap {
    width: 100%;
    min-height: 240px;
    border-radius: 24px 24px 0 0;
  }
  .team-modal__avatar { min-height: 240px; }
  .team-modal__meta {
    border-radius: 0;
    padding: 24px 22px 20px;
  }
  .team-modal__body { padding: 24px 22px 32px; }
  .team-modal__name { font-size: 1.4rem; }
}

/* ================================================================
   TEAMS DEDICATED PAGE
   ================================================================ */

.teams-page-section {
  background: var(--off-white);
  padding: 80px 0 100px;
}

.teams-page-header {
  margin-bottom: 56px;
}
.teams-page-header .section-subtitle {
  max-width: 680px;
  margin: 0 auto;
}

.teams-page-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  padding: 24px 40px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.teams-page-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.teams-page-stat__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.teams-page-stat__label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .teams-page-stats { gap: 24px; padding: 20px 22px; }
  .teams-page-stat__num { font-size: 1.6rem; }
}

/* ================================================================
   MISSION & VISION SECTION
   ================================================================ */

/* -- Section wrapper -- */
.mv-section {
  background: var(--off-white);
  padding: 80px 0 100px;
}

/* -- Mission / Vision card grid -- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}

/* -- Individual M/V card -- */
.mv-card {
  position: relative;
  border-radius: 24px;
  padding: 44px 40px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Mission — dark navy gradient */
.mv-card--mission {
  background: linear-gradient(145deg, var(--primary) 0%, hsl(220,65%,22%) 100%);
  color: var(--white);
}
/* Vision — deep accent gradient */
.mv-card--vision {
  background: linear-gradient(145deg, hsl(0,64%,25%) 0%, var(--accent) 100%);
  color: var(--white);
}

/* Decorative background ring */
.mv-card__ring {
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,.05);
  pointer-events: none;
}

/* Icon circle */
.mv-card__icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Label */
.mv-card__label {
  font-family: var(--font-sub);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* Heading */
.mv-card__title {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

/* Body copy */
.mv-card__text {
  font-family: var(--font-sub);
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin: 0;
}

/* Pillar list */
.mv-card__pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mv-card__pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.mv-card__pillar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  flex-shrink: 0;
}

/* -- Core Values -- */
.mv-values__header {
  margin-bottom: 48px;
}
.mv-values__header .section-subtitle {
  max-width: 640px;
  margin: 0 auto;
}

.mv-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Value card */
.mv-value-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.mv-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(218,61,61,.25);
}

/* Icon */
.mv-value-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(218,61,61,.08);
  border: 1px solid rgba(218,61,61,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.mv-value-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.mv-value-card__text {
  font-family: var(--font-sub);
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* -- Responsive -- */
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mv-card { padding: 32px 24px; }
  .mv-card__title { font-size: 1.3rem; }
  .mv-values-grid { grid-template-columns: 1fr; }
}
