:root {
  --bg-deep: #0B1120;
  --teal-1: #38DCBB;
  --teal-2: #00C896;
  --teal-3: #008E6D;
  --teal-4: #56E7CF;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(56, 220, 187, 0.18);
  --glass-hover: rgba(56, 220, 187, 0.08);
  --text-muted-c: rgba(255, 255, 255, 0.45);
  --text-body: rgba(255, 255, 255, 0.72);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sora', sans-serif !important;
  overflow-x: hidden;
}

/* ── HERO SECTION ── */
#hero {
  position: relative;
  min-height: 90vh;
  padding: 80px 0 60px;
  overflow: hidden;
  /* display: flex;
    align-items: center; */
  background: var(--bg-deep);
  color: #fff;
}

/* Background effects */
.hero-glow-l {
  position: absolute;
  top: -120px;
  left: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-r {
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 220, 187, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 220, 187, 0.13) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Top fade edge */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg-deep));
  pointer-events: none;
}

/* ── TRUST BADGE ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  background: rgba(56, 220, 187, 0.07);
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--teal-4);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 6px var(--teal-2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* ── HEADLINE ── */
.hero-h1 {
  /* font-family: 'Syne', sans-serif; */
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-h1 em {
  /* font-style: normal; */
  background: linear-gradient(90deg, var(--teal-1), var(--teal-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.85rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ── CTA BUTTONS ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.btn-primary-teal {
  background: linear-gradient(135deg, var(--teal-3), var(--teal-2));
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 200, 150, 0.3);
}

.btn-primary-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 200, 150, 0.45);
  color: #fff;
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal-1);
  border: 1.5px solid rgba(56, 220, 187, 0.4);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline-teal:hover {
  background: rgba(56, 220, 187, 0.1);
  border-color: var(--teal-1);
  color: var(--teal-1);
}

/* ── FEATURE CHECKLIST ── */
.feat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  animation: fadeUp 0.6s 0.5s ease both;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-body);
}

.feat-ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-ck svg {
  width: 9px;
  height: 9px;
  color: var(--teal-2);
}

/* ── GLASSMORPHISM CARD ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s 0.3s ease both;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 220, 187, 0.4), transparent);
}

/* ── CARD HEADER ── */
.card-head-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-2);
  font-weight: 500;
  margin-bottom: 4px;
}

.card-head-title {
  /* font-family: 'Syne', sans-serif; */
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: #fff;
}

.card-head-title em {
  /* font-style: normal; */
  color: var(--teal-2);
}

.card-head-p {
  font-size: 13px;
  color: var(--text-muted-c);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* ── METRICS GRID ── */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.4rem;
}

.metric-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(56, 220, 187, 0.1);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}

.metric-box:hover {
  border-color: rgba(56, 220, 187, 0.35);
  background: rgba(56, 220, 187, 0.05);
}

.metric-num {
  /* font-family: 'Syne', sans-serif; */
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--teal-2);
  line-height: 1;
  margin-bottom: 3px;
}

.metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.3;
}

.metric-sub {
  font-size: 10px;
  color: var(--text-muted-c);
  margin-top: 2px;
}

/* ── COMPANIES CHECKLIST IN CARD ── */
.co-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.co-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.45;
}

.co-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.co-arrow {
  color: var(--teal-2);
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
  font-weight: 600;
}

.co-name {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

/* ── CARD CTA ── */
.card-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--teal-3), var(--teal-2));
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(0, 200, 150, 0.25);
  margin-top: 1.2rem;
}

.card-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

/* ── TRUST STRIP ── */
/* .trust-strip {
    padding: 1.2rem 0 0;
    animation: fadeUp 0.7s 0.6s ease both;
  }
  .trust-strip-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted-c); margin-bottom: 0.8rem; font-weight: 400;
  }
  .trust-badges {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .trust-pill {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 14px; border-radius: 100px;
    font-size: 11px; color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
  } */

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  #hero {
    padding: 100px 0 60px;
  }

  .glass-card {
    margin-top: 2.5rem;
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary-teal,
  .btn-outline-teal {
    justify-content: center;
  }
}


/* ABOUT */


/* ── SECTION HEADER ── */
.about-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-3);
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.about-h2 {
  /* font-family: 'Syne', sans-serif; */
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-h2 em {
  font-style: normal;
  color: var(--teal-2);
}

.about-desc {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── GLASS CARD ── */
.why-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 200, 150, 0.15);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  cursor: default;
}

/* Top animated border */
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-3), var(--teal-1), var(--teal-4));
  border-radius: 18px 18px 0 0;
  transition: width 0.45s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 200, 150, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.why-card:hover::after {
  width: 100%;
}

/* ── ICON ── */
.wi-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0, 200, 150, 0.08);
  border: 1.5px solid rgba(0, 200, 150, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.wi-icon-wrap i {
  font-size: 1.3rem;
  color: var(--teal-2);
  transition: color 0.32s ease;
}

/* ── CARD TEXT ── */
.wi-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.wi-desc {
  font-size: 13.5px;
  color: #6b7a8d;
  line-height: 1.7;
  margin: 0;
}

/* ── DIVIDER LINE ── */
.about-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal-4));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}







/* SERVICES */
#services {
  background: var(--bg-deep);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow bg */
#services::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 200, 150, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── LABEL BADGE ── */
.services-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-2);
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
}

.teal-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal-4));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

/* ── SERVICE CARD ── */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

/* Top animated border */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-3), var(--teal-1), var(--teal-4));
  z-index: 2;
  transition: width 0.45s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 220, 187, 0.4);
  box-shadow:
    0 0 0 1px rgba(56, 220, 187, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 200, 150, 0.08);
}

.service-card:hover::before {
  width: 100%;
}

/* ── IMAGE AREA ── */
.card-img-area {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  filter: brightness(0.75) saturate(0.9);
}

.service-card:hover .card-img-area img {
  transform: scale(1.06);
}

/* Bluish gradient overlay on image */
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 17, 32, 0.1) 0%,
      rgba(0, 80, 60, 0.3) 60%,
      rgba(11, 17, 32, 0.85) 100%);
}

/* Neon glow on image bottom edge */
.card-img-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-2), transparent);
  opacity: 0.6;
}

/* ── SPAN BADGE (top-left of card) ── */
.card-span-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 200, 150, 0.25);
  border: 1px solid rgba(56, 220, 187, 0.4);
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ── CARD BODY ── */
.card-body-inner {
  padding: 1.4rem 1.5rem 1.5rem;
}

/* ── TAGS ── */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.9rem;
}

.card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--teal-4);
  background: rgba(56, 220, 187, 0.07);
  border: 1px solid rgba(56, 220, 187, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── CARD DIVIDER ── */
.card-divider {
  border: none;
  height: 1px;
  background: rgba(56, 220, 187, 0.1);
  margin: 0.9rem 0;
}

/* ── CTA LINK ── */
.services-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-2);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.services-card-cta:hover {
  color: var(--teal-1);
  gap: 10px;
}

/* ── COMPANY BADGE (right side of CTA row) ── */
.company-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted-c);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}




/* ── LABEL BADGE ── */
.companies-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-3);
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
}

/* ── DIVIDER ── */
.teal-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal-4));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

/* ── COMPANY CARD ── */
.company-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(0, 200, 150, 0.15);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

/* Faded number background */
.company-card .card-num {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(0, 200, 150, 0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Top animated border — left to right */
.company-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-3), var(--teal-1), var(--teal-4));
  border-radius: 20px 20px 0 0;
  transition: width 0.45s ease;
}

.company-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 200, 150, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05);
  border-color: transparent;
}

.company-card:hover::after {
  width: 100%;
}

/* ── TAG BADGE ── */
.company-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-3);
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.18);
  padding: 3px 12px;
  border-radius: 100px;
}

/* ── CARD DIVIDER ── */
.card-line {
  border: none;
  height: 1px;
  background: rgba(0, 200, 150, 0.15);
  margin: 1rem 0;
}


/* ── SERVICE LIST ── */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: block;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.5;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* Old arrow no longer needed */
.service-list li .arrow {
  display: none;
}

/* ── COVERAGE BADGE ── */
.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-3);
  background: rgba(0, 200, 150, 0.07);
  border: 1px solid rgba(0, 200, 150, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
}



.service-block {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 200, 150, 0.10);
  border-left: 3px solid var(--teal-2);
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}

/* Hover elevation */
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 200, 150, 0.10);
  border-color: rgba(0, 200, 150, 0.18);
  background: #fff;
}

/* Icon box */
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 150, 0.08);
  color: var(--teal-3);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 200, 150, 0.12);
}


/* ════════════════════════════════════════
       GROUP PANEL
    ════════════════════════════════════════ */
.group-panel {
  height: 100%;
  border-radius: 20px;
  border: 1.5px solid var(--glass-border);
  background: linear-gradient(145deg,
      rgba(0, 28, 22, 0.82) 0%,
      rgba(0, 18, 14, 0.90) 60%,
      rgba(0, 40, 30, 0.85) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

/* Top border — starts at 0, expands on hover */
.group-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-3), var(--teal-1), var(--teal-4));
  border-radius: 20px 20px 0 0;
  transition: width 0.45s ease;
}

.group-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 200, 150, 0.16), 0 4px 16px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.group-panel:hover::after {
  width: 100%;
}

/* Subtle glow blob — purely decorative */
.group-panel::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Panel Eyebrow ── */
.panel-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-4);
  margin: 0;
}

/* ── Colorful heading ── */
.panel-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  background: linear-gradient(135deg,
      #ffffff 0%,
      var(--teal-4) 30%,
      var(--teal-2) 55%,
      var(--teal-1) 75%,
      #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.panel-sub {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* ── Stat Grid ── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-align: center;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.stat-box:hover {
  background: var(--glass-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 200, 150, 0.15);
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--teal-4), var(--teal-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted-c);
  margin-top: 4px;
}

/* ── Pillars ── */
.panel-card-line {
  border: none;
  height: 1px;
  background: var(--glass-border);
  margin: 0;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
}

.pillar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-4), var(--teal-2));
  flex-shrink: 0;
}


#contact {
  background: #f0f4f3;
  padding: 5rem 0;
}

/* ── LEFT SIDE ── */
.contact-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-3);
  margin-bottom: 1rem;
}

.contact-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-heading span {
  color: var(--teal-2);
}

.contact-body {
  font-size: 15px;
  color: #5a6a7a;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2rem;
}

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 200, 150, 0.12);
  border: 1.5px solid rgba(0, 200, 150, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-2);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 2px;
}

.check-sub {
  font-size: 13px;
  color: #7a8a9a;
  margin: 0;
}

/* ══════════════════════════════════════
       FORM CARD
    ══════════════════════════════════════ */
.form-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* ── Card Header ── */
.form-card-header {
  background: linear-gradient(135deg, var(--teal-3) 0%, var(--teal-2) 60%, var(--teal-1) 100%);
  padding: 1.6rem 2rem;
  text-align: center;
}

.form-card-header h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.form-card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

/* ── Trust Strip ── */
.trust-strip {
  background: rgba(0, 200, 150, 0.07);
  border-bottom: 1px solid rgba(0, 200, 150, 0.15);
  padding: 10px 2rem;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── Form Body ── */
.form-body {
  padding: 1.8rem 2rem 2rem;
}

.form-label-custom {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6b7a8d;
  margin-bottom: 6px;
}

.form-control-custom {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #0d1b2a;
  background: #fafbfc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  outline: none;
}

.form-control-custom::placeholder {
  color: #b0bac8;
}

.form-control-custom:focus {
  border-color: var(--teal-2);
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12);
  background: #fff;
}

/* Phone row */
.phone-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fafbfc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.phone-wrap:focus-within {
  border-color: var(--teal-2);
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-right: 1.5px solid #e2e8f0;
  font-size: 13.5px;
  font-weight: 600;
  color: #0d1b2a;
  background: #f1f5f3;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.phone-input {
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  color: #0d1b2a;
  background: transparent;
  flex: 1;
  min-width: 0;
}

.phone-input::placeholder {
  color: #b0bac8;
}

select.form-control-custom {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' 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;
  padding-right: 36px;
  cursor: pointer;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 90px;
}

/* ── Submit Button ── */
.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-3) 0%, var(--teal-2) 60%, var(--teal-1) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 150, 0.30);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ── Field group spacing ── */
.field-group {
  margin-bottom: 1rem;
}

.field-group:last-of-type {
  margin-bottom: 1.4rem;
}






#reach_us {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

#reach_us::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SECTION LABEL ── */
.reach_us-section-label {
  /* display: inline-block; */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-3);
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
}

.reach_us-teal-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-2), var(--teal-4));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

/* ── INFO BLOCK ── */
.reach_us-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,200,150,0.15);
  border-left: 3px solid var(--teal-2);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.reach_us-info-block:hover {
  border-left-color: var(--teal-1);
  box-shadow: 0 6px 24px rgba(0,200,150,0.12);
  transform: translateX(4px);
}

.reach_us-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,200,150,0.12), rgba(56,220,187,0.08));
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-3);
  font-size: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.reach_us-info-block:hover .reach_us-info-icon {
  background: linear-gradient(135deg, var(--teal-3), var(--teal-2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,200,150,0.25);
}

.reach_us-info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-3);
  margin-bottom: 3px;
}

.reach_us-info-value {
  font-size: 14px;
  font-weight: 500;
  color: #1a2e45;
  line-height: 1.5;
  margin: 0;
}

.reach_us-info-value a {
  color: #1a2e45;
  text-decoration: none;
  transition: color 0.2s;
}

.reach_us-info-value a:hover {
  color: var(--teal-2);
}

/* ── MAP WRAPPER ── */
.map-wrapper {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.06),
    0 2px 10px rgba(15, 23, 42, 0.04);
  height: 100%;
  min-height: 380px;
  position: relative;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: none;

  /* REMOVE DARK FILTER */
  filter: none;
}