* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  padding-top: 90px;
}

header {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  transition: 0.3s;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 17px;
  font-weight: 600;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  .hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.hero h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  color: #bbb;
}

button {
  margin-top: 35px;
  padding: 15px 40px;
  background: #d4af37;
  color: black;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

button:hover {
  background: white;
}
body {
  font-family: Poppins, sans-serif;
}

header h1 {
  font-family: Cinzel, serif;
}

.hero {
  background: url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;

  background-position: center;

  position: relative;
}

.overlay {
  position: absolute;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;

  z-index: 2;
}

section {
  padding: 90px 12%;
}

section h2 {
  color: #d4af37;

  font-size: 38px;

  margin-bottom: 25px;
}

.cards {
  display: flex;

  gap: 25px;

  margin-top: 40px;
}

.card {
  background: #1b1b1b;

  padding: 30px;

  border-radius: 15px;

  flex: 1;

  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);

  border: 1px solid #d4af37;
}

footer {
  padding: 70px;

  text-align: center;

  background: #000;
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 20px;
  }

  .cards {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 42px;
  }
}
.about-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 70px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-top: 25px;

  line-height: 1.8;

  color: #ccc;

  font-size: 18px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;

  border-radius: 20px;

  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.stats {
  display: flex;

  gap: 30px;

  margin-top: 45px;
}

.stat {
  background: #1b1b1b;

  padding: 25px;

  border-radius: 15px;

  text-align: center;

  flex: 1;
}

.stat h3 {
  color: #d4af37;

  font-size: 35px;
}

.stat span {
  color: #aaa;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
  }
}
.section-title {
  text-align: center;
  color: #d4af37;
  font-size: 42px;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1b1b1b;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  color: #bfbfbf;
  margin: 15px 0;
}

.service-card span {
  color: #d4af37;
  font-size: 28px;
  font-weight: bold;
}
.whatsapp {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 70px;

  height: 70px;

  background: #25d366;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

  transition: 0.3s;

  z-index: 9999;
}

.whatsapp:hover {
  transform: scale(1.1);
}
.appointment {
  padding: 100px 20px;
  background: #111;
  text-align: center;
}

.appointment h2 {
  color: #d4af37;
  margin-bottom: 40px;
  font-size: 42px;
}

#appointmentForm {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#appointmentForm input,
#appointmentForm select {
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: white;
  font-size: 16px;
}

#appointmentForm button {
  padding: 16px;
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#appointmentForm button:hover {
  transform: scale(1.03);
}
