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

body {
  background: #0b0b0b;
  font-family: "Poppins", sans-serif;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  margin-right: 10px;
}

nav a {
  margin: 0 12px;
  color: #ccc;
  cursor: pointer;
}

/* BUTTON */
.apply,
.primary {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.secondary {
  border: 1px solid #d4af37;
  background: transparent;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text span {
  color: #d4af37;
}

.hero-img img {
  width: 500px;
  border-radius: 15px;
}

/* SECTIONS */
.section {
  padding: 80px 60px;
}

.center {
  text-align: center;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px;
}

/* CONTACT QR SECTION */
.contact-section {
  height: 100vh;
  background: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-card {
  background: white;
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  width: 350px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.qr-logo {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  border-radius: 50%;
}

.qr-logo img {
  width: 50px;
}

.qr-card h2 {
  margin-top: 30px;
  font-size: 18px;
  color: black;
}

.link {
  color: #555;
  margin-top: 5px;
}

.sub {
  color: #888;
  font-size: 14px;
}

.qr-img {
  width: 220px;
  margin: 20px 0;
}

.scan {
  color: #aaa;
  font-size: 13px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #0b0b0b;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  animation: fadeIn 0.3s ease;
}

.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.service-card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  width: 180px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.highlight {
  border: 1px solid gold;
}

/* ABOUT MODAL TEXT */
.about-text {
  margin-top: 20px;
  line-height: 1.8;
  color: #ccc;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

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

  .hero-img img {
    width: 100%;
    margin-top: 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .modal-content {
    width: 90%;
    padding: 25px;
  }

  .service-card {
    width: 100%;
  }
}
.footer {
  background: #0b0b0b;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  margin: 5px 0;
  font-size: 14px;
}

.footer .copyright {
  margin-top: 15px;
  font-size: 12px;
  color: #777;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    height: auto;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-img img {
    width: 100%;
    margin-top: 20px;
  }

  /* Sections */
  .section {
    padding: 40px 20px;
  }

  /* Cards */
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  /* QR section */
  .qr-card {
    width: 90%;
  }
}
