/* =========================
   GLOBAL STYLES
========================= */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    #fff4cc,
    #f7c948
  );
  color: #333;
}

/* =========================
   HEADER / NAVBAR
========================= */
header {
  background: linear-gradient(
    to right,
    #6b0f1a,
    #8a1c24
  );
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

header h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 1px;
}

header p {
  margin: 8px 0 0;
  font-size: 16px;
}

nav {
  margin-top: 15px;
}

nav a {
  color: #ffd966;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

/* =========================
   LANGUAGE TOGGLE BUTTON
========================= */
.lang-toggle {
  text-align: right;
  padding: 10px 20px;
}

.lang-toggle button {
  background: #6b0f1a;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

/* =========================
   CONTENT CARDS
========================= */
.section-card {
  background: #ffffff;
  max-width: 1000px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.section-card h2 {
  color: #6b0f1a;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* =========================
   LISTS
========================= */
.section-card ul {
  padding-left: 20px;
}

.section-card li {
  margin-bottom: 8px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  background: #6b0f1a;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 15px;
  font-weight: bold;
}

.btn:hover {
  background: #8a1c24;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #6b0f1a;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 14px;
}

/* =========================
   AUDIO BUTTON
========================= */
#audioControl {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6b0f1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  header h1 {
    font-size: 24px;
  }

  .section-card {
    margin: 15px;
    padding: 20px;
  }

  nav a {
    display: inline-block;
    margin: 6px;
  }
}

/* Copy icon */
.copy-icon {
  cursor: pointer;
  margin-left: 8px;
  font-size: 18px;
}

.copy-icon:hover {
  opacity: 0.7;
}
/* Telugu font styling */
.lang-te {
  font-family: 'Noto Serif Telugu', serif;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

