* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdfcf9;
  color: #333;
}

/* HEADER */
.header {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo a {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
}

.logo span {
  color: #ffd166;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ffd166;
}

.cta a {
  background: #ffd166;
  color: #003049 !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
}

/* HERO */
.hero {
  height: 90vh;
  background: url('../assets/images/cover-home-page.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 15px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons a {
  white-space: nowrap;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 25px;
}

.btn-primary {
  background: #ffd166;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: #003049;
  margin-right: 10px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
}

/* SERVICES */
.services {
  padding: 80px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  max-width: 300px;
}

.card h3 {
  margin-bottom: 15px;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  color: #0077b6;
  text-decoration: none;
}

/* WHY */
.why {
  background: #e9f7fb;
  padding: 70px 20px;
  text-align: center;
}

.why-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 30px;
}

/* TESTIMONIAL */
.testimonial {
  padding: 70px 20px;
  text-align: center;
  font-style: italic;
}

/* FOOTER */
.footer {
  background: #003049;
  color: white;
  text-align: center;
  padding: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0077b6;
    display: none;
    padding: 20px 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu.active {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .service-grid,
  .why-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

}