* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #082b44;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
}

h2 {
  text-align: center;
  color: #00d5ff;
  margin-bottom: 60px;
}

.hero {
  background: #06283f;
  padding: 80px 0;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.logo {
  width: 170px;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  color: #00d5ff;
  margin-bottom: 40px;
}

.hero-image img,
.contact-image img {
  width: 100%;
  display: block;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #00d5ff;
  border-radius: 50px;
  color: #00d5ff;
  text-decoration: none;
  transition: .3s;
}

.btn:hover {
  background: #00d5ff;
  color: #06283f;
}

.about,
.quote {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.about {
  background: linear-gradient(135deg, #06283f 0%, #0a3a5c 100%);
}

.quote {
  background: linear-gradient(135deg, #0a3a5c 0%, #06283f 100%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 35, .78);
}

.about .container,
.quote .container {
  position: relative;
  z-index: 2;
}

.about p,
.quote h2 {
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.services,
.why,
.testimonials,
.contact {
  padding: 100px 0;
}

.services-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.card,
.testimonial {
  text-align: center;
}

.launch-note {
  max-width: 700px;
  margin: auto;
  text-align: center;
  line-height: 1.8;
  font-size: 1.1rem;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 25px;
}

.card h3,
.feature h3 {
  color: #00d5ff;
  margin-bottom: 15px;
}

.feature {
  text-align: center;
  border: 1px solid rgba(0, 213, 255, .5);
  border-radius: 45px;
  padding: 50px 30px;
}

.feature i {
  font-size: 60px;
  color: #00d5ff;
  margin-bottom: 30px;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial span {
  display: block;
  color: #00d5ff;
  margin: 10px 0 20px;
}

.info {
  margin-top: 50px;
}

.info h4 {
  color: #00d5ff;
  margin-top: 25px;
  margin-bottom: 10px;
}

.social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social a {
  color: #00d5ff;
  font-size: 22px;
}

@media (max-width: 900px) {

  .hero-grid,
  .contact-grid,
  .services-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-image {
    order: -1;
  }

  .services,
  .why,
  .testimonials,
  .contact,
  .about,
  .quote {
    padding: 80px 0;
  }
}