* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f8;
  color: #333;
}

/* HEADER */
header {
  background: #0b6fa4;
  color: rgb(255, 255, 255);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

nav a {
  color: rgb(76, 59, 139);
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #79bae7, #12d8fa);
  color: rgb(33, 11, 73);
}

/* BLURRED LOGO BACKGROUND */
.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background-image: url("https://i.postimg.cc/XJZpQ9Js/51630864-d4b9-4be1-ab2c-d73547109920.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  filter: blur(8px);
  opacity: 0.18;
  z-index: 1;
}

/* AIRPLANE ANIMATION */
.airplane {
  position: absolute;
  top: 40px;
  left: -100px;
  font-size: 50px;
  animation: fly 12s linear infinite;
  opacity: 0.9;
  z-index: 2;
}

@keyframes fly {
  0% {
    left: -100px;
    transform: scaleX(1);
  }
  49% {
    left: 100%;
    transform: scaleX(1);
  }
  50% {
    left: 100%;
    transform: scaleX(-1);
  }
  100% {
    left: -100px;
    transform: scaleX(-1);
  }
}

/* HERO CONTENT ON TOP */
.hero h2,
.hero p,
.hero .hero-buttons {
  position: relative;
  z-index: 2;
}

/* HERO BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  font-weight: bold;
}

.call {
  background: white;
  color: #043277;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.email {
  background: #ff9800;
  color: white;
}

/* SECTIONS */
.section {
  padding: 60px 40px;
  text-align: center;
  background: rgb(183, 218, 103);
}

.section.gray {
  background: #e9f2f8;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #000;
  color: #fff;
  padding: 25px;
  width: 260px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.checklist {
  list-style: none;
}

.checklist li {
  margin: 10px 0;
}

footer {
  background: #0c82e2;
  color: white;
  text-align: center;
  padding: 15px;
}

.one-stop {
  color: #000000;   /* black text */
  font-weight: 600;
}
