:root {
  --primary: #2563eb; /* modern blue */
  --primary-dark: #1d4ed8; /* deeper blue */
  --accent: #22c55e; /* fresh green accent */
  --accent-2: #facc15;
  --bg: #f3f4f6;
  --bg-alt: #ffffff;
  --charcoal: #020617;
  --muted: #6b7280;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
  --shadow-strong: 0 22px 70px rgba(15, 23, 42, 0.18);
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

body::before {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.55), rgba(34, 197, 94, 0.35), rgba(255, 255, 255, 0));
  animation: ambientBlobA 14s ease-in-out infinite;
  transform: translate3d(-220px, -220px, 0);
}

body::after {
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at 30% 30%, rgba(250, 204, 21, 0.45), rgba(37, 99, 235, 0.28), rgba(255, 255, 255, 0));
  animation: ambientBlobB 18s ease-in-out infinite;
  transform: translate3d(240px, 240px, 0);
}

@keyframes ambientBlobA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(90px, 50px, 0) scale(1.12);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ambientBlobB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-80px, -60px, 0) scale(1.16);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

body {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.55s ease;
}

body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  transition: opacity 0.7s ease var(--reveal-delay, 0ms), transform 0.7s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  body {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* HEADER / NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  border-bottom-color: rgba(226, 232, 240, 0.75);
  background: rgba(255, 255, 255, 0.92);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 2rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.logo-mark {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: contain;
}

.logo-text {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.logo-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  color: #0f172a;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.18s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(248, 250, 252, 0.95);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  display: block;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 0.25rem;
  }

  .nav-links {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 0.55rem 1.25rem 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    flex-direction: column;
    gap: 0.55rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-links a {
    padding: 0.15rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* LAYOUT */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  width: 100%;
}

.section-padding {
  padding: 3.25rem 0;
}

@media (max-width: 600px) {
  .section-padding {
    padding: 2.25rem 0;
  }
}

.section-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.section-title {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.6);
}

.btn:active {
  transform: translateY(2px) scale(0.99);
}

.btn-outline {
  border: 1.5px solid rgba(148, 163, 184, 0.9);
  background: transparent;
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.75);
}

/* HERO */

.hero {
  position: relative;
  min-height: 68vh;
  background: radial-gradient(circle at top left, #eff6ff 0, #ffffff 55%, #e5e7eb 100%);
  color: #0f172a;
  overflow: hidden;
}

.hero-banner-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-banner-slider {
  position: relative;
  border-radius: 0;
  padding: 0;
  background: #0b1220;
  box-shadow: none;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-banner-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.78) 0%,
      rgba(2, 6, 23, 0.62) 38%,
      rgba(2, 6, 23, 0.22) 68%,
      rgba(2, 6, 23, 0.18) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.28), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.22), transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-banner-slider .hero-slide {
  border-radius: 0;
}

.hero-banner-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-slider .hero-slide img {
  filter: saturate(1.08) contrast(1.06);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.25rem;
  padding-top: calc(96px + env(safe-area-inset-top));
  padding-bottom: calc(56px + env(safe-area-inset-bottom));
}

.hero-banner-overlay .container {
  max-width: 1120px;
}

.hero-banner-overlay .hero-text {
  max-width: 46rem;
}

.hero-banner-overlay .hero-title,
.hero-banner-overlay .hero-text,
.hero-banner-overlay .hero-meta {
  color: #f8fafc;
}

.hero-banner-overlay .hero-text {
  color: rgba(226, 232, 240, 0.92);
}

.hero-banner-overlay .hero-meta {
  color: rgba(226, 232, 240, 0.85);
}

.hero-banner-overlay .hero-meta strong {
  color: #ffffff;
}

.hero-banner-overlay .hero-badge {
  background: rgba(15, 23, 42, 0.65);
}

.hero-banner-overlay .btn-outline-light {
  border: 1.5px solid rgba(226, 232, 240, 0.75);
  color: #ffffff;
  background: rgba(2, 6, 23, 0.05);
}

.hero-banner-overlay .btn-outline-light:hover {
  background: rgba(15, 23, 42, 0.55);
}

@media (max-width: 900px) {
  .hero-banner-overlay {
    padding-top: calc(92px + env(safe-area-inset-top));
    padding-bottom: calc(52px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 768px) {
  .hero-banner-overlay {
    text-align: center;
    align-items: center;
    padding-top: calc(84px + env(safe-area-inset-top));
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }

  .hero-banner-overlay .hero-text,
  .hero-banner-overlay .hero-meta {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-banner-overlay .hero-cta-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-banner-overlay .hero-title {
    line-height: 1.08;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0 4rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2.75rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
  gap: 0.4rem;
}

.hero-badge span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 2.5vw + 1.4rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.hero-highlight {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.45rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.hero-meta strong {
  color: #0f172a;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 2.75rem 0 3.25rem;
    text-align: center;
  }

  .hero-text,
  .hero-meta {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background-image: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.92)),
    url("https://images.pexels.com/photos/4475929/pexels-photo-4475929.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f9fafb;
}

.page-hero h1 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.4vw + 1rem, 2.6rem);
  margin-bottom: 0.4rem;
}

.page-hero p {
  max-width: 40rem;
  color: rgba(226, 232, 240, 0.9);
}

/* HERO SLIDER */

.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #e5edff);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 260px;
}

.hero-slide-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(8%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: 14px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slider-nav {
  position: absolute;
  inset: auto 1.6rem 1.6rem auto;
  display: flex;
  gap: 0.5rem;
}

.hero-slider-dot-row {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  display: flex;
  gap: 0.35rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: transparent;
  opacity: 0.7;
}

.hero-dot.active {
  background: #e5e7eb;
  opacity: 1;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e5e7eb;
  font-size: 1.05rem;
}

.icon-btn:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* BACKGROUND SECTIONS */

.bg-gradient-hero {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #e5e7eb;
}

.bg-background {
  background: var(--bg);
}

.gradient-subtle {
  background: radial-gradient(circle at top, #e0f2fe 0, #ffffff 40%, #e5e7f5 100%);
}

 .cta-section {
  padding: 2.5rem 0;
 }

 @media (max-width: 600px) {
  .cta-section {
    padding: 2rem 0;
  }
 }

/* MILESTONES */

.milestones-strip {
  width: 100%;
  padding-bottom: 0.25rem;
}

.milestones-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding: 0 0 0.25rem;
}

.milestone-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.3), rgba(15, 23, 42, 0.96));
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.75);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease, border-color 0.28s ease, background 0.25s ease;
}

.milestone-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.milestone-item:hover {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
  border-color: rgba(251, 191, 36, 0.95);
}

.milestone-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", system-ui;
  font-weight: 600;
  font-size: 0.9rem;
  color: #e5e7eb;
  background: radial-gradient(circle at 30% 0, rgba(251, 191, 36, 0.9), rgba(30, 64, 175, 0.98));
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.95);
}

.milestone-text {
  font-size: 0.9rem;
  color: #e5e7eb;
  max-width: 15rem;
}

.milestone-item:nth-child(1) {
  transition-delay: 0.05s;
}

.milestone-item:nth-child(2) {
  transition-delay: 0.1s;
}

.milestone-item:nth-child(3) {
  transition-delay: 0.15s;
}

.milestone-item:nth-child(4) {
  transition-delay: 0.2s;
}

.milestone-item:nth-child(5) {
  transition-delay: 0.25s;
}

.milestone-item:nth-child(6) {
  transition-delay: 0.3s;
}

.milestone-item:nth-child(odd) {
  transform: translateX(-32px) translateY(18px) scale(0.96);
}

.milestone-item:nth-child(even) {
  transform: translateX(32px) translateY(18px) scale(0.96);
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .milestones-strip {
    overflow-x: auto;
    margin: 0 -1.25rem;
  }

  .milestones-row {
    display: inline-flex;
    flex-wrap: nowrap;
    padding: 0 1.25rem 0.25rem;
    min-width: max-content;
  }
}

@keyframes milestone-float {
  0% {
    transform: translateY(0) scale(1.01);
  }
  50% {
    transform: translateY(-5px) scale(1.015);
  }
  100% {
    transform: translateY(0) scale(1.01);
  }
}

.milestone-item.is-visible.floating {
  animation: milestone-float 6s ease-in-out infinite;
}

/* GRID HELPERS */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-number {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 1rem;
}

/* CARDS */

.card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 1.85rem 1.7rem;
  transition: box-shadow 0.25s ease, transform 0.12s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.25s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(37, 99, 235, 0.55);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
}

.card:hover::before {
  opacity: 1;
}

.sevenr-section .card {
  padding-top: 1.65rem;
}

.sevenr-section .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(34, 197, 94, 0.85), rgba(250, 204, 21, 0.85));
  opacity: 0.85;
}

.sevenr-section .card:hover {
  transform: translateY(-5px);
}

.card:hover .card-icon-circle {
  background: rgba(34, 197, 94, 0.16);
  color: var(--accent);
}

.card-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.9rem;
  font-size: 1.6rem;
  color: var(--primary);
  transition: background 0.18s ease, color 0.18s ease;
}

.card-title {
  font-family: "Poppins", system-ui;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card-title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.card-title-with-icon .title-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(34, 197, 94, 0.14));
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.card-title-with-icon .title-icon svg {
  width: 22px;
  height: 22px;
}

/* LEGACY PAGE */

.legacy-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2rem;
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fafb, #eef2ff);
}

.legacy-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-radius: 10px;
  border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.legacy-timeline-year {
  font-family: "Poppins", system-ui;
  font-weight: 600;
  font-size: 0.85rem;
  color: #111827;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #e5edff;
}

.legacy-timeline-item p {
  font-size: 0.95rem;
  color: #4b5563;
}

.legacy-timeline-year {
  min-width: 120px;
  text-align: center;
}

.legacy-timeline-item:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .legacy-timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.legacy-milestones-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.legacy-milestone-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: baseline;
  font-size: 0.95rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.legacy-milestone-year {
  font-family: "Poppins", system-ui;
  font-weight: 600;
  color: #facc15;
}

.legacy-milestone-text {
  color: #e5e7eb;
}

.legacy-milestone-row:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {
  .legacy-milestones-list {
    padding: 1rem 0.7rem;
  }

  .legacy-milestone-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }
}

.newsroom-press-section {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.newsroom-press-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.25rem 2.3rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.newsroom-press-content .section-title {
  margin-bottom: 0.75rem;
}

.newsroom-press-content .section-text {
  max-width: 32rem;
}

.newsroom-press-details {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(148, 163, 184, 0.45);
}

.newsroom-press-details .section-text {
  margin: 0;
  font-weight: 500;
}

.newsroom-press-details strong {
  color: #facc15;
  font-weight: 600;
}

@media (max-width: 768px) {
  .newsroom-press-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.75rem 1.5rem;
    gap: 1.5rem;
  }

  .newsroom-press-details {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.45);
    padding-top: 1.25rem;
  }
}

.vertical-card {
  border-color: rgba(37, 99, 235, 0.5);
  background: #ffffff;
}

.vertical-card::before {
  /* content: "Construction"; */
  position: absolute;
  top: 1.15rem;
  right: 1.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(135deg, #dbeafe, #bbf7d0);
}

.vertical-card:hover {
  border-color: rgba(37, 99, 235, 0.9);
  background: #f9fbff;
}

.legacy-action-section .section-center {
  max-width: 720px;
  text-align: left;
}

.legacy-action-section .section-title {
  margin-bottom: 0.9rem;
}

.legacy-action-section .section-text {
  margin-bottom: 0.75rem;
}

/* CONTACT SECTION */

.contact-section {
  background: #ffffff;
  padding: 4rem 0;
}

.contact-section .container {
  max-width: 700px;
}

#contactForm {
  margin-top: 1.5rem;
  background: #f9fafb;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d4d4d8;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.success-msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FOOTER */

footer {
  background: #020617;
  color: #e5e7eb;
  padding: 1.75rem 0 0;
  margin-top: auto;
}

.cta-section + footer {
  margin-top: 1.75rem;
}

.people-purpose-section + footer {
  margin-top: 1.75rem;
}

.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

footer .footer-brand h3 {
  margin: 0;
  color: #0f172a;
}

footer .footer-brand .footer-logo {
  width: 64px;
  height: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(160px, 0.8fr) minmax(160px, 0.85fr) minmax(280px, 1.35fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-map {
  width: 100%;
  height: 150px;
  display: block;
  border: 0;
  border-radius: 14px;
  margin-top: 0.75rem;
}

footer .footer-grid > div:first-child p {
  margin: 0.65rem 0 0;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid p {
  margin-top: 0.35rem;
  max-width: 32rem;
}

.footer-grid > div:last-child p {
  margin: 0 0 0.6rem;
}

.footer-grid h3,
.footer-grid h4 {
  line-height: 1.2;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

footer h3,
footer h4 {
  font-family: "Poppins", system-ui;
  margin-bottom: 0.6rem;
}

footer p,
footer a {
  font-size: 0.9rem;
  color: #cbd5f5;
}

footer a {
  display: inline-block;
  line-height: 1.8;
}

.footer-grid a {
  width: fit-content;
}

footer a:hover {
  color: #e5e7eb;
}

.milestones-image-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.milestones-image-section {
  background: #ffffff !important;
}

.milestones-image-section.bg-gradient-hero {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #0f172a;
}

.milestones-image-section .section-title {
  color: #0f172a;
}

.milestones-image-section .section-text {
  color: #475569 !important;
}

.milestones-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.google-testimonials-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.google-testimonials-section {
  background: #ffffff !important;
}

.google-testimonials-section.bg-gradient-hero {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #0f172a;
}

.google-testimonials-section {
  position: relative;
  overflow: hidden;
}

.google-testimonials-section::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.16), rgba(34, 197, 94, 0.12), rgba(255, 255, 255, 0));
  filter: blur(40px);
  opacity: 0.8;
  transform: translate3d(0, 0, 0);
  animation: testimonialsGlow 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.google-testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.google-testimonials-section .section-title {
  color: #0f172a;
}

.google-testimonials-section .section-text {
  color: #475569 !important;
}

.google-rating-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  min-width: 240px;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0f172a;
}

.google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: #ffffff;
  color: #1d4ed8;
  font-weight: 800;
}

.google-rating-score {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: #0f172a;
}

.google-rating-score strong {
  font-size: 1.6rem;
  line-height: 1;
}

.google-rating-outof {
  color: #475569;
  font-weight: 600;
}

.google-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #facc15;
  font-size: 1rem;
  line-height: 1;
}

.google-stars .star-dim {
  color: rgba(250, 204, 21, 0.35);
}

.google-reviews-btn {
  margin-top: 0.25rem;
}

.google-reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: reviewFadeUp 0.7s ease both;
  position: relative;
  overflow: hidden;
}

.google-review-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -120%;
  width: 70%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.google-review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.google-review-card:hover::after {
  opacity: 1;
  animation: cardSheen 1.05s ease forwards;
}

.google-review-card:hover .google-stars {
  animation: starShimmer 1.1s ease-in-out;
}

@keyframes testimonialsGlow {
  0% {
    transform: translate3d(-30px, -10px, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, 25px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-30px, -10px, 0) scale(1);
  }
}

@keyframes cardSheen {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}

@keyframes starShimmer {
  0% {
    filter: brightness(1);
    transform: translateY(0);
  }
  50% {
    filter: brightness(1.15);
    transform: translateY(-1px);
  }
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }
}

.google-reviews-strip .google-review-card:nth-child(1) {
  animation-delay: 0.05s;
}

.google-reviews-strip .google-review-card:nth-child(2) {
  animation-delay: 0.14s;
}

.google-reviews-strip .google-review-card:nth-child(3) {
  animation-delay: 0.23s;
}

@keyframes reviewFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-testimonials-section::before {
    animation: none;
  }

  .google-review-card {
    animation: none;
    transition: none;
  }

  .google-review-card::after {
    display: none;
  }

  .google-review-card:hover {
    transform: none;
  }
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.review-name {
  font-weight: 700;
  color: #0f172a;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.review-time {
  color: rgba(71, 85, 105, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.review-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .google-testimonials-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-rating-box {
    width: 100%;
    justify-items: start;
  }

  .google-reviews-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }

  .google-review-card {
    scroll-snap-align: start;
  }
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.social-row .social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5f5;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.social-row .social-icon-link svg {
  width: 18px;
  height: 18px;
}

.social-row .social-icon-link:hover {
  background: rgba(148, 163, 184, 0.22);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.2rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.85rem;
  color: #9ca3af;
}

/* WHATSAPP FLOATING BUTTON */

.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* RESPONSIVE TWEAKS */

@media (max-width: 600px) {
  .hero-text {
    max-width: 100%;
  }

  #contactForm {
    padding: 1.5rem;
  }

  .logo-mark {
    width: 80px;
    height: 80px;
  }

  .section-padding {
    padding: 3.25rem 0;
  }

  .hero-inner {
    padding: 3.25rem 0 3rem;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
