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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f1c2e;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}



.hero {
  position: relative;
  height: 100vh;
  background: url('Assets/background.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,28,46,0.85);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-sub {
  color: #c7d3e6;
  margin-bottom: 40px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  background-color: #2d5282;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #3f6aa8;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.services {
  padding: 120px 0;
  background-color: #111f33;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.services h2 {
  margin-bottom: 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.card {
  background: #16263d;
  padding: 40px;
  border-radius: 20px;
  transition: 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card h3 {
  margin-bottom: 20px;
}

.card p {
  color: #9fb3d1;
}

.reviews {
  padding: 120px 0;
  background: linear-gradient(180deg, #0f1c2e 0%, #111f33 100%);
}

.review-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.review-card p {
  font-style: italic;
  color: #c7d3e6;
  margin-bottom: 15px;
}

.review-card span {
  font-size: 14px;
  color: #8fa4c4;
}

.reviews h2 {
  margin-bottom: 60px;
}

@media (max-width: 768px) {

  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-contact {
    display: inline-block;
  }

}

.contact {
  padding: 120px 0;
  background: linear-gradient(90deg, #111f33 0%, #16263d 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #c7d3e6;
  margin-bottom: 20px;
}

.contact-links span {
  display: block;
  font-size: 14px;
  color: #8fa4c4;
}

.btn-contact {
  display: inline-block;
  padding: 18px 42px;
  background: #2d5282;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 60px;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: #3f6aa8;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

footer {
  padding: 40px 0;
  background-color: #0c1624;
  text-align: center;
}

footer p {
  margin: 0;
  text-align: center;
}
