body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f8fb;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #0b3c5d;
  color: white;
}

.navbar a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(11,60,93,0.8), rgba(11,60,93,0.8)),
              url('https://images.unsplash.com/photo-1580281657527-47f249e8f4df');
  background-size: cover;
  color: white;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero h1 {
  font-size: 48px;
}

.hero-buttons button {
  background: #e63946;
  color: white;
  border: none;
  padding: 12px 20px;
  margin-right: 10px;
  cursor: pointer;
}

.call-btn {
  background: white;
  color: #0b3c5d;
  padding: 12px 20px;
  text-decoration: none;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  background: white;
  padding: 30px;
}

/* SECTION */
.section {
  padding: 60px;
  text-align: center;
}

/* ABOUT */
.about-container {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-container img {
  width: 300px;
  border-radius: 10px;
}

/* SERVICES */
.services {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 220px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* TESTIMONIAL */
.testimonials {
  background: #0b3c5d;
  color: white;
}

/* CONTACT */
.contact form {
  max-width: 300px;
  margin: auto;
}

.contact input, .contact button {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

/* FOOTER */
footer {
  background: #0b3c5d;
  color: white;
  text-align: center;
  padding: 15px;
}