:root {
  color-scheme: light;
  --navy: #0b1b39;
  --blue: #1e40af;
  --sky: #60a5fa;
  --light: #f8fafc;
  --muted: #64748b;
  --accent: #0ea5e9;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--navy);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

ul {
  padding-left: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
}

.logo span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo small {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  #color: var(--navy);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
}

.nav-cta {
  padding: 0.65rem 1.2rem;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 0.4rem;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 99px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  align-items: center;
}

.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.primary-btn {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.35);
  cursor: pointer;
}

.ghost-btn {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(30, 64, 175, 0.4);
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-metrics strong {
  display: block;
  font-size: 1.6rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-slider {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.slides {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  transition: opacity 0.4s ease;
}

.slide.is-active {
  display: block;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.slider-meta h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.slider-meta p {
  color: var(--muted);
  font-size: 0.9rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 2rem;
}

.about-grid,
.service-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.about-card,
.service-card,
.team-card,
.story-card {
  background: var(--card);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.team-card h3 {
  margin-bottom: 0.2rem;
}

.team-role {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.12);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.story-card ul {
  margin-top: 1rem;
  color: var(--muted);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-card {
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(120deg, #0f172a, #1e3a8a);
  color: #fff;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
}

.partners .section-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.marquee {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.2rem 0;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.08);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 1.5rem 5rem;
}

.contact {
  background: #f1f5f9;
  border-radius: 30px;
  margin: 0 auto 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-details h3 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.contact-highlight {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 1.5rem;
    background: var(--card);
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .home-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3rem;
  }

  .slider-controls {
    flex-direction: column;
    text-align: center;
  }
}
