body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #1a0e2a;
  color: #fff;
}

/* Language Switch */
.lang-switch {
  text-align: right;
  padding: 10px;
  background: #2c1446;
}

.lang-switch button {
  background: #d4af37;
  border: none;
  padding: 6px 14px;
  margin-left: 6px;
  cursor: pointer;
  font-weight: bold;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg,#2b1248,#4a2378);
}

.hero h1 {
  color: #ffd700;
  font-size: 34px;
}

.hero p {
  margin: 15px 0;
  font-size: 18px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #d4af37;
  color: #2b1a00;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

/* Services */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #2c1446;
  border-radius: 16px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #d4af37;
}

.card h3 {
  color: #ffd700;
  margin: 15px 0 8px;
}

.card p {
  padding: 0 15px 20px;
}

/* About & Contact */
.about, .contact {
  padding: 60px 20px;
  text-align: center;
  background: #24123a;
}

footer {
  background: #12091f;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
