* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #252525;
}

.hero {
  min-height: 100vh;
  padding: 45px;
  background:
  linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
  url("ship.jpg") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-icons {
  position: absolute;
  top: 45px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 25px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.threads {
  background: #000000;
}

.linkedin {
  background: #0077b5;
}

.twitter {
  background: #000000;
}

.whatsapp {
  background: #25d366;
}

.youtube {
  background: #cd201f;
}

.email {
  background: #000000;
}

.hero-content {
  text-align: center;
  color: white;
  animation: fadeUp 1.2s ease;
}

.hero-content h1 {
  font-size: 72px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 35px;
  color: #f0f0f0;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.primary {
  background: #ff6b00;
  color: white;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 20px;
  }

  .social-icons {
    top: 25px;
    gap: 12px;
  }

  .social-icons a {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .buttons {
    flex-direction: column;
  }
}