:root {
  --navy: #0a2342;
  --cyan: #00c2d1;
  --cyan-deep: #00a2b0;
  --pink: #ff4fd8;
  --pink-deep: #ff2fb9;
  --ice: #f6f8ff;
  --slate: #203040;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(10, 35, 66, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--slate);
  background: var(--ice);
  line-height: 1.6;
}

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

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

.hero {
  background: linear-gradient(135deg, var(--cyan-deep), var(--pink-deep));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8%;
  gap: 16px;
  background: var(--white);
  color: #16263a;
  box-shadow: 0 8px 24px rgba(10, 35, 66, 0.12);
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.nav-links a {
  color: #16263a;
}

.nav-cta {
  background: linear-gradient(120deg, var(--cyan), var(--pink));
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 110px 8% 90px;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 35, 66, 0.25);
}

.hero-highlights {
  display: grid;
  gap: 10px;
}

.hero-highlights div {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.hero-media {
  display: grid;
  gap: 18px;
  position: relative;
}

.hero-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.6s ease;
}

.hero-card.accent {
  transform: translateY(20px);
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.hero-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f4f9ff' fill-opacity='1' d='M0 64l80-10.7C160 43 320 21 480 16c160-5 320 5 480 26.7C1120 64 1280 96 1360 112l80 16v-8H0z'/%3E%3C/svg%3E")
    no-repeat center/cover;
}

main {
  padding: 60px 8% 80px;
  background: var(--ice);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
  color: #16263a;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 4px solid var(--cyan);
  overflow: hidden;
}

.service-card:nth-child(2) {
  border-top-color: var(--pink);
}

.service-card:nth-child(3) {
  border-top-color: var(--cyan-deep);
}

.service-card:nth-child(4) {
  border-top-color: var(--pink-deep);
}
.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}


.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(10, 35, 66, 0.2);
}

.about {
  margin: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-image img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stats div {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stats h3 {
  font-size: 1.6rem;
  color: #16263a;
}

.cta {
  background: linear-gradient(120deg, var(--cyan), var(--pink));
  color: var(--white);
  padding: 50px 8%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 80px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.contact-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-details {
  margin: 16px 0;
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 16px;
}

.footer {
  text-align: center;
  padding: 24px;
  background: var(--navy);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}
