/* 🌐 Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* 🌙 Base Styling */
body {
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* 🔹 Header */
header {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.logo span {
  color: #00d4ff;
}

/* 🔹 Buttons */
.btn {
  background: #00d4ff;
  color: #0a0a0a;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #00a3cc;
  transform: scale(1.05);
}

/* 🔹 Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 10%;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}
.hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero-text p {
  max-width: 500px;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.hero-image {
  flex: 1;
  text-align: center;
}
.hero-image img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 0 20px #00d4ff33;
}

/* 🔹 Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #888;
  font-size: 0.9rem;
}

/* 📱 Responsive Design */

/* For tablets and medium screens */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 10% 5%;
  }

  .hero-text h2 {
    font-size: 2.2rem;
  }

  .hero-text p {
    max-width: 90%;
    margin: 0 auto 1.5rem auto;
  }

  .hero-image img {
    width: 80%;
  }

  header {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }
}

/* For mobile screens */
@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-image img {
    width: 100%;
  }

  header {
    padding: 1rem 4%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  footer {
    font-size: 0.8rem;
  }
}

/* For very large screens (TVs or 4K monitors) */
@media (min-width: 1600px) {
  .hero-text h2 {
    font-size: 3.5rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-image img {
    width: 70%;
  }
}