body {
  margin:  0;
  padding: 0;
  height: 100vh;
  background: radial-gradient(#0b0b0b, #000000);
  font-family: 'Segoe UI', sans-serif;
  color: #f5f5f5;
  overflow-x: hidden;
}


/* -------------------------------------------------------------------------- */

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #d4af3766;
  border-radius: 12px;
  padding: 10px 20px;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d4af37;
  text-shadow: 0 0 10px #d4af3799;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s;
}

.nav-links li a:hover {
  color: #d4af37;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: #d4af37;
  cursor: pointer;
}

/* Mobile Responsive for nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 180px;
    gap: 1rem;
  }

  .nav-links.show {
    display: flex;
  }
}


/* ---------------------------------------------------------------------- */



/* hero */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80vh;
  padding: 0 5%;
  box-sizing: border-box;
}

.left-content {
  max-width: 40%;
  z-index: 2;
}

.heading {
  font-size: 4rem;
  font-weight: bold;
  color: #f5f5f5;
  text-shadow:
    0 0 10px #d4af37cc,
    0 0 20px #d4af3770;
  letter-spacing: 3.5px;
  padding-top: 10px;
  margin-bottom: 5px;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.enquire-btn {
  border-radius: 35px;
  padding: 8px 30px;
  font-size: 1rem;
  color: #d4af37;
  background: transparent;
  border: 2px solid #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #d4af3766;
}

.enquire-btn:hover {
  background-color: #d4af37;
  color: #000000;
  box-shadow: 0 0 20px #d4af37;
}

model-viewer {
  width: 50vw;
  height: 80vh;
  background-color: transparent;
}

/* ------- */

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
    /*  This flips the order */
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
  }

  model-viewer {
    width: 95vw;
    height: 50vh;

  }

  .left-content {
    max-width: 90%;
    text-align: center;
    margin-bottom: 1px;
  }

  .heading {
    font-size: 2.8rem;
  }

  .subheading {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .enquire-btn {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
}

/* ------------- */

@media (max-width: 480px) {
  .heading {
    font-size: 2.2rem;
  }

  .subheading {
    font-size: 1.6rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .enquire-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  model-viewer {
    width: 95vw;
    height: 50vh;
  }
}

/* --------- */


/* ----------------------------------------------------------------------- */



/* CARDS */

/* cards heading */
.card-heading {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  margin-bottom: -20px;
}

.card-text {
  font-size: 2.8rem;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  font-weight: 600;
  letter-spacing: 2px;
}

/* -- */

.card-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 60px 5%;
  background-color: #050505;
}

.card {
  background-color: #121212;
  border: 1px solid #d4af37;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  padding: 20px;
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 32%;
  text-align: center;
  color: #f5f5f5;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-60px);
  box-shadow: 0 0 25px rgba(255, 207, 48, 0.4);
}

.card model-viewer {
  width: 100%;
  height: 250px;
  background-color: transparent;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card h3 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

/* Responsive: Stack Cards */
@media (max-width: 768px) {
  .card-section {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }

  .card:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 25px rgba(255, 207, 48, 0.4);
  }
}


/* ---------------------------------------------------------------------- */





/* INFO  */

.info_heading {
  font-size: 2.4rem;
  font-weight: 900;
  color: #f5f5f5;
  text-shadow:
    0 0 10px #d4af37cc,
    0 0 20px #d4af3770;
  letter-spacing: 3.0px;
  padding-top: 10px;
  margin-bottom: 5px;
}

.info_description {
  font-size: 1.1rem;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  font-weight: 400;
  letter-spacing: 2px;
  text-align: left;
}

.info_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 100vh; */
  padding: 0 5%;
  padding-bottom: 5%;
  box-sizing: border-box;

}
/* info wheel */
.wheel-model {
  width: 600px;
  height: 300px;
  max-width: 100%;
  background-color: transparent;
}


/* INFO MEDIA */

/* wheel */
@media (max-width: 768px) {
  .wheel-model {
    width: 200px;
    height: 220px;
  }
}


@media (max-width: 768px) {
  .info_container {
    flex-direction: column;
    /*  This flips the order */
    justify-content: flex-end;
    align-items: center;
    padding-top: 0px;
  }

  model-viewer {
    width: 95vw;
    height: 50vh;

  }

  .left-content {
    max-width: 90%;
    text-align: center;
    margin-bottom: 1px;
  }

  .heading {
    font-size: 2.8rem;
  }

  .subheading {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .enquire-btn {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
}




/* --------------------------------------------------------- */
/* FOOTER----- */
.site-footer {
  background-color: #0b0b0b;
  color: #f5f5f5;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #d4af37;
  font-size: 1.4rem;
}

.site-footer a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 900;
}

.site-footer a:hover {
  color: #ffffff;
}

.social-icons {
  margin-top: 19px;
}

.social-icons a {
  margin: 0 10px;
  color: #d4af37;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}
@media (max-width: 480px) {
  .social-icons a {
    font-size: 1.5rem;
  }
}

