* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  background: #f5f7fb;
  color: #333;
  line-height: 1.7;
}
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 55px;
  width: auto;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #e63946;
}
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content {
  max-width: 650px;
}
.hero h1 {
  font-size: 55px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #003366;
}
section {
  padding: 70px 0;
}
.title {
  text-align: center;
  margin-bottom: 50px;
}
.title h2 {
  font-size: 38px;
  color: #003366;
  margin-bottom: 10px;
}
.title p {
  color: #777;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card h3 {
  margin-bottom: 15px;
  color: #003366;
}
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.step {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.step h4 {
  color: #e63946;
  margin: 15px 0;
}
.cta {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 25px;
}
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.contact-box h3 {
  color: #003366;
  margin-bottom: 20px;
}
.contact-box p {
  margin-bottom: 15px;
}
.form-group {
  margin-bottom: 15px;
}
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #003366;
  cursor: pointer;
}
button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: #e63946;
  color: #fff;
  cursor: pointer;
}
button:hover {
  background: #003366;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.table th,
.table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.table th {
  background: #003366;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }
  nav.open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 5%;
    gap: 10px;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    padding: 8px 0;
  }
}
