* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #0f0f0f;
  color: #f5f5f5;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../images/krishna-arjuna.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #ffd700;
}

.hero h2 {
  font-size: 2rem;
  margin-top: 10px;
}

.hero p {
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  margin: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.primary {
  background: #ffd700;
  color: #000;
}

.secondary {
  background: transparent;
  border: 1px solid #ffd700;
  color: #ffd700;
}

/* UPDESHA */
.updesha-preview {
  padding: 60px 20px;
  text-align: center;
}

.card {
  max-width: 600px;
  margin: 20px auto;
  background: #1c1c1c;
  padding: 25px;
  border-radius: 10px;
}

/* BATTLE */
.battle {
  padding: 60px 20px;
  background: #151515;
  text-align: center;
}

.battle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.battle-card {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
}

.battle-card:hover {
  background: #ffd700;
  color: #000;
}

/* PLANS */
.plans {
  padding: 60px 20px;
  text-align: center;
}

.plan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.plan {
  width: 260px;
  background: #1c1c1c;
  padding: 25px;
  border-radius: 10px;
}

.plan h4 {
  color: #ffd700;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  padding: 30px;
  background: #000;
  text-align: center;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
.guidance {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}

.guidance .card {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.updesha-preview h4 {
  color: #ffd700;
  margin-bottom: 10px;
}

.gita {
  margin-top: 10px;
  font-style: italic;
  color: #ccc;
}
.lang-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

.lang-toggle button {
  background: #ffd700;
  border: none;
  margin-left: 5px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 5px;
}
