/* General Page Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdf6e3;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  padding: 40px 20px;
  background-color: #fffef6;
  min-height: 100vh;
}

/* Headings */
h1, h2, h3 {
  color: maroon;
}

/* Intro Section */
.intro p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1.1rem;
  color: #555;
}

.badges span {
  display: inline-block;
  background-color: #ffe0b2;
  padding: 5px 15px;
  margin: 5px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #a00;
}

/* Services */
.services {
  margin-top: 60px;
}

.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border: 1px solid #ffd;
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card h3 {
  margin: 10px 0;
  color: #a00;
}

.card .subtext {
  color: #c44;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background-color: maroon;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #900;
}

.btn.yellow {
  background-color: #ffc107;
  color: #222;
}

.btn.yellow:hover {
  background-color: #e0a800;
}

.btn.whatsapp {
  background-color: green;
  margin-top: 20px;
}

/* WhatsApp Guidance Section */
.immediate-guidance {
  margin-top: 80px;
  padding: 40px 20px;
  background-color: #f0fff4;
  border-top: 2px solid #cfc;
}

.immediate-guidance h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #c00;
}

.immediate-guidance p {
  font-size: 1rem;
  color: #333;
}

/* ===== NEW: Form Styling for Astrology, Muhurtham, Matching ===== */

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: radial-gradient(#ffd, #fff 70%);
}

.form-card {
  background-color: #fff7f0;
  border-radius: 12px;
  padding: 30px 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 1px solid #ffe9d9;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header .icon {
  font-size: 2rem;
}

.form-header h2 {
  color: maroon;
  margin: 10px 0 5px;
}

.form-header p {
  color: #b55;
  font-size: 0.95rem;
}

.astro-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #444;
  text-align: left;
}

.astro-form input,
.astro-form select,
.astro-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.astro-form input:focus,
.astro-form select:focus,
.astro-form textarea:focus {
  outline: none;
  border-color: maroon;
  box-shadow: 0 0 3px maroon;
}

.submit-btn {
  margin-top: 25px;
  width: 100%;
  background-color: orange;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: darkorange;
}

/* Back Button */
.back-button {
  text-align: center;
  margin-bottom: 15px;
}

.back-button a {
  font-size: 0.9rem;
  color: maroon;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid maroon;
  border-radius: 5px;
}

.back-button a:hover {
  background-color: maroon;
  color: white;
}
/* Astrologer Photos Section */
.astrologer-photos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.astro-img {
  width: 100px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #f5e1c0;
}
