* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", serif;
}

/* Top bar */
.top-bar {
  background: #24135f;
  color: #ff4cff;
  text-align: center;
  padding: 8px 20px;
  font-size: 18px;
}

/* Navbar */
.navbar {
  background: #24135f;
  padding: 18px 0;
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  color: white;
}

.logo-symbol {
  font-size: 28px;
  letter-spacing: 4px;
}

.logo-text {
  font-size: 14px;
  letter-spacing: 3px;
  margin-top: 4px;
}

/* Menu */
.menu {
  /* display: flex;
  gap: 35px;
  align-items: center; */
  display: flex;
  gap: 30px;
}

.menu a {
  /* text-decoration: none;
  color: white;
  font-size: 18px;
  position: relative; */
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.menu a.active {
  color: #ff4cff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  /* display: none;
  position: absolute;
  top: 32px;
  left: 0;
  background: #2f1a75;
  padding: 10px 0;
  min-width: 200px;
  border-radius: 6px; */
    display: none;
  position: absolute;
  top: 100%;              /* IMPORTANT */
  left: 0;
  width: 280px;
  background: white;
  color: black;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  overflow: visible;
}

.dropdown-menu a {
  /* display: block;
  padding: 10px 20px;
  color: white;
  font-size: 16px; */
  display: block;
  padding: 18px 20px;
  color: black;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #e6e6e6;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  /* background: rgba(255,255,255,0.1); */
  background: #f5f5f5;
}

/* SUBMENU */
.dropdown-sub {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 260px;
  background: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.dropdown-sub:hover .submenu {
  display: block;
}

/* SHOW MAIN DROPDOWN */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ARROWS */
.arrow {
  font-size: 14px;
  margin-left: 6px;
}

.arrow-right {
  float: right;
  font-size: 22px;
}

  /* SHOW DROPDOWN */
/* .dropdown:hover .dropdown-menu {
  display: block;
} */

/* Hover dropdown (desktop) */
/* .dropdown:hover .dropdown-menu {
  display: block;
} */








/* ================= FOOTER ================= */

.footer {
  background: #4b1b7d;
  padding: 30px 0;
  color: white;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  text-align: left;
}

.footer-section {
  text-align: center;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-section p {
  font-size: 15px;
  margin: 4px 0;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }
}




/* ================= PAGE HEADER ================= */

.page-header {
  padding: 40px 60px 20px;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumb-brand {
  background: #f39c12;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-current {
  background: #111;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  margin: 40px 60px;
  padding: 60px 80px;
  background: #ff5ce6;
  text-align: center;
  background-image: url("media/Welcome-To-Your-EduX\ \(1\).png"); /* change image here */
  min-height: 60vh;
  position: relative;
   background-size: cover;

}

.hero-content h2 {
  color: white;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero-text {
  color: white;
  font-size: 26px;
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto 40px;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #6f42c1;
  color: white;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.hero-btn:hover {
  background: #5a32a3;
}

/* ================= HEALING INTRO ================= */

.healing-intro {
  padding: 60px 80px;
  text-align: center;
}

.healing-intro h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.healing-intro p {
  color: #7a5ac8;
  font-size: 32px;
  line-height: 1.4;
  max-width: 1200px;
  margin: auto;
  font-weight: 500;
}





/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 80px 60px;
  background: linear-gradient(180deg, #d39be6 0%, #7c4ac9 100%);
}

.about-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Left text */
.about-text p {
  color: #111;
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

/* Right image */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    margin: 0 auto;
  }
}





/* =========================
   HOME CTA SECTION
========================= */

.home-cta {
  position: relative;
  background-image: url("images/zodiac-bg.jpg"); /* replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 60px 80px;
  color: #ffffff;
}

/* Dark overlay */
.home-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.home-cta-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.home-cta-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.home-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: #7b3fe4; /* purple button */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #632fd1;
}





/* ================= MARRIAGE SECTION ================= */

.marriage-section {
  padding: 100px 60px;
  background: #ffffff;
}

.marriage-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Tagline */
.marriage-tagline {
  display: block;
  color: #7a5ac8;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Main heading */
.marriage-container h2 {
  color: #4b1b7d;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Description */
.marriage-container p {
  color: #7a5ac8;
  font-size: 24px;
  line-height: 1.6;
  max-width: 1000px;
  margin: auto;
}










/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 100px 60px;
  background: #ffffff;
}

.services-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Card */
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 25px;
}

.service-card h3 {
  color: #4b1b7d;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.service-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  text-align: center;
}





/* ================= LITERATURE SECTION ================= */

.literature-section {
  padding: 100px 60px;
  background: #ffffff;
}

.literature-container {
  max-width: 1400px;
  margin: auto;
}

/* Header */
.literature-header {
  text-align: center;
  margin-bottom: 70px;
}

.literature-header h2 {
  color: #4b1b7d;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.literature-header p {
  color: #7a5ac8;
  font-size: 18px;
}

/* Cards Grid */
.literature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Card */
.literature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.literature-card h3 {
  color: #4b1b7d;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.literature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  text-align: center;
}

@media (max-width: 992px) {
  .literature-cards {
    grid-template-columns: 1fr;
  }

  .literature-card img {
    height: auto;
  }
}




/* ================= PAGE HEADER ================= */

.page-header {
  padding: 40px 60px 30px;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumb-brand {
  background: #f39c12;
  color: white;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-current {
  background: #222;
  color: white;
  padding: 8px 14px;
  font-size: 14px;
}





/* ================= CONTACT BANNER ================= */

.contact-banner {
  margin: 40px 60px;
  height: 280px;
  background-image: url("images/contact-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.contact-banner-overlay h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-banner-overlay p {
  font-size: 20px;
  max-width: 700px;
  line-height: 1.5;
}




/* FORM LAYOUT */
.appointment-section {
  padding: 100px 60px;
  background: url("images/mandala-light.png") center/600px no-repeat #fff;
}

.appointment-container {
  max-width: 900px;
  margin: auto;
}

.appointment-container h2 {
  text-align: center;
  color: #7a5ac8;
  font-size: 30px;
  margin-bottom: 50px;
}

.form-row {
  display: flex;
  gap: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.full-width {
  width: 100%;
}

label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.required {
  color: red;
}

input,
textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #bbb;
  border-radius: 2px;
  outline: none;
}

/* ERROR STATE */
.form-group.error input,
.form-group.error textarea {
  border: 2px solid #ff3b3b;
}

.error-msg {
  display: none;
  color: #ff3b3b;
  font-size: 13px;
  margin-top: 6px;
}

.form-group.error .error-msg {
  display: flex;
  align-items: center;
}

.form-group.error .error-msg::before {
  content: "⚠";
  margin-right: 6px;
}

/* SUBMIT */
.submit-btn {
  background: #1e73be;
  color: white;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #155a96;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}





/* ================= PAGE BANNER ================= */

.page-banner {
  margin: 40px 60px;
  height: 200px;
  background: linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("images/sanskaars-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.page-banner h2 {
  color: white;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}




/* ================= SANSKAARAS INTRO ================= */

.sanskaars-intro {
  padding: 80px 60px;
  background: #ffffff;
}

.sanskaars-container {
  max-width: 1200px;
  margin: auto;
}

.sanskaars-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 30px;
  text-align: left;
}




/* ================= 16 SACRAMENTS SECTION ================= */

.sacraments-section {
  padding: 80px 60px;
  background: #ffffff;
}

.sacraments-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.sacraments-text h2 {
  color: #4b1b7d;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
}

.sacraments-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 25px;
}

/* Image */
.sacraments-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .sacraments-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .sacraments-image img {
    margin: 0 auto;
  }
}





/* ================= SANSKAARAS GRID ================= */

.sanskaars-grid-section {
  padding: 100px 60px;
  background: #ffffff;
}

.sanskaars-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Card */
.sanskaar-card {
  text-align: center;
}

.sanskaar-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.sanskaar-card h3 {
  color: #4b1b7d;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sanskaar-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

/* Center last card */
.center-card {
  grid-column: 2 / 3;
}

/* Responsive */
@media (max-width: 992px) {
  .sanskaars-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    grid-column: auto;
  }
}




/* ================= HOMAM & HAVAN BANNER ================= */

.homam-banner {
  margin: 40px 60px;
  height: 220px;
  background: linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("images/homam-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.homam-banner h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
}




/* ================= HOMAM DETAIL SECTION ================= */

.homam-detail-section {
  padding: 100px 60px;
  background: url("images/mandala-light.png") center/700px no-repeat #ffffff;
}

.homam-detail-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.homam-text h2 {
  color: #ff5cf4;
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 600;
}

.homam-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 20px;
}

/* Image */
.homam-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* Note */
.homam-note {
  margin-top: 60px;
  text-align: center;
  color: #4b1b7d;
  font-size: 18px;
  font-weight: 600;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .homam-detail-container {
    grid-template-columns: 1fr;
  }

  .homam-text h2 {
    font-size: 32px;
  }
}




/* ================= VASTU INFO SECTION ================= */

.vastu-info-section {
  padding: 80px 60px 100px;
  background: #ffffff;
}

.vastu-info-container {
  max-width: 1200px;
  margin: auto;
}

/* Headings */
.vastu-info-container h2 {
  color: #6a3dc8;
  font-size: 34px;
  font-weight: 600;
  margin: 50px 0 20px;
}

/* Bullet list */
.vastu-info-container ul {
  margin-left: 25px;
  margin-bottom: 40px;
}

.vastu-info-container li {
  font-size: 18px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 12px;
}




/* ================= BENEFITS SECTION ================= */

.benefits-section {
  padding: 80px 60px;
  background: #ffffff;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
}

.purple-heading {
  font-size: 36px;
  color: #6a2bbf;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: disc;
  padding-left: 30px;
}

.benefits-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #111;
}




/* ================= MRITYUNJAYA SHANTI ================= */

.mrityunjaya-section {
  padding: 90px 60px;
  background: #fff;
  background-image: url("images/spiritual-pattern.png"); /* optional watermark */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mrityunjaya-container {
  max-width: 1200px;
  margin: auto;
}

.pink-heading {
  font-size: 42px;
  color: #ff4fd8;
  margin-bottom: 20px;
}

.purple-subheading {
  font-size: 32px;
  color: #6a2bbf;
  margin: 40px 0 15px;
}

.intro-text,
.mantra-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #111;
}

.mantra-box {
  margin: 25px 0;
  font-size: 20px;
  line-height: 1.9;
  font-style: italic;
  color: #000;
}

.mantra-box p {
  margin-bottom: 10px;
}

.auspicious-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 20px;
}

.auspicious-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
}




.homam-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: "Segoe UI", serif;
  line-height: 1.7;
}

.homam-title {
  color: #ff4fe1; /* same pink as screenshot */
  font-size: 42px;
  font-weight: 600;
  margin: 50px 0 20px;
}

.homam-section p {
  font-size: 18px;
  color: #000;
  margin-bottom: 18px;
}




.mantra-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  font-family: "Segoe UI", serif;
}

.mantra-title {
  font-size: 36px;
  color: #6a1bb9; /* purple like screenshot */
  font-weight: 600;
  margin-bottom: 30px;
}

.mantra-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 14px;
}





/* ================= PAGE HEADER ================= */
.page-header {
  padding: 40px 60px 20px;
}

.page-header h1 {
font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumb-brand {
  background: #f39c12;
  color: white;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-current {
  background: #222;
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
}

/* ================= HERO BANNER ================= */
.vedic-banner {
  margin: 40px 60px;
  height: 220px;
  background: linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("images/homam-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}


.homam-banner h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
}




/* ================= VEDIC SECTIONS ================= */
.vedic-section {
  padding: 80px 20px;
}

.vedic-container {
  max-width: 1200px;
  margin: auto;
}

.vedic-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.vedic-title {
  font-size: 38px;
  margin-bottom: 25px;
}

.vedic-title.orange {
  color: #ff7a18;
}

.vedic-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.vedic-image img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin-left: auto;
}

/* NOTE */
.vedic-note {
  max-width: 900px;
  margin: 40px auto 20px;
  text-align: center;
  color: #ff7a18;
  font-weight: 600;
}

/* EXTRA INFO */
.vedic-extra {
  max-width: 1200px;
  margin: auto;
}

.vedic-extra p {
  margin-bottom: 15px;
}

.vedic-extra ul {
  padding-left: 20px;
}

.vedic-extra li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vedic-two-col {
    grid-template-columns: 1fr;
  }

  .vedic-image img {
    margin: 0 auto;
  }
}




.vedic-subtitle {
  font-size: 30px;
  margin: 25px 0 20px;
  font-weight: 600;
}

.orange {
  color: #ff7a18;
}





.two-column {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.vedic-text {
  flex: 1;
}

.vedic-image {
  flex: 1;
  text-align: right;
}

.vedic-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}





/* .single-column {
  max-width: 1200px;
}

.vedic-subtitle {
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 15px;
}

.mantra-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mantra-text.sanskrit {
  font-size: 20px;
  font-family: "Noto Serif Devanagari", serif;
} */





/* COMMON SECTION WIDTH (matches other sections) */
.section-wrapper {
  width: 100%;
  background-color: #fff;
  position: relative;
}

.section-container {
  max-width: 1200px;   /* SAME as Kaal Sarp section */
  margin: 0 auto;
  padding: 60px 20px;
}

/* HEADINGS */
.section-container h2 {
  color: #ff6a13;
  font-size: 36px;
  margin-bottom: 16px;
}

.section-container h3 {
  color: #ff6a13;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 10px;
}

/* TEXT */
.section-container p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 14px;
}

/* SANSKRIT TEXT */
.mantra-sanskrit {
  font-size: 18px;
  margin-top: 6px;
  color: #000;
}





.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-box h3 {
  color: #ff7a18;
  font-size: 30px;
  margin-bottom: 18px;
}

.info-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .three-col-grid {
    grid-template-columns: 1fr;
  }
}







.horoscope-section {
  padding: 80px 0;
}

.horoscope-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.horoscope-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.horoscope-content h2 {
  color: #ff7a18;
  font-size: 40px;
  margin-bottom: 20px;
}

.horoscope-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.bullet-list {
  margin: 15px 0 20px 20px;
}

.bullet-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.horoscope-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .horoscope-grid {
    grid-template-columns: 1fr;
  }

  .horoscope-image img {
    margin: 30px auto 0;
  }
}





/* ================= PAGE HEADER ================= */

.page-header {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Tabs */
.page-tabs {
  display: flex;
  gap: 15px;
}

.tab {
  padding: 12px 20px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.tab.active {
  background: #f57c00;
  color: #fff;
}

/* ================= HERO ================= */

.inner-hero {
  position: relative;
  background-image: url("media/Welcome-To-Your-EduX\ \(1\).png"); /* replace */
  background-size: cover;
  background-position: center;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.inner-hero h2 {
  position: relative;
  color: #fff;
  font-size: 36px;
  z-index: 2;
}






/* ================= FESTIVAL CONTENT ================= */

.festival-content {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.festival-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #6a4bc4; /* purple tone like screenshot */
  text-align: center;
  margin-bottom: 40px;
}

.festival-list {
  list-style-type: circle;
  padding-left: 40px;
}

.festival-list li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 8px;
}




/* ================= PAGE TITLE ================= */

.page-title {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  gap: 15px;
}

.tab {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #f57c00;
}

.tab.dark {
  background: #222;
}

.tab.active {
  background: #f57c00;
}

/* ================= HERO BANNER ================= */

.inner-hero {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.vehicle-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/vehicle-pooja-bg.jpg") center/cover no-repeat;
}





/* ================= PAGE TITLE ================= */

.page-title {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  gap: 15px;
}

.tab {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #f57c00;
}

.tab.dark {
  background: #222;
}

.tab.active {
  background: #f57c00;
}

/* ================= HERO BANNER ================= */

.inner-hero {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.vehicle-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/vehicle-pooja-bg.jpg") center/cover no-repeat;
}

/* ================= CONTENT ================= */

.content-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}



/* ================= VEHICLE POOJA CONTENT ================= */

.section-heading {
  font-size: 30px;
  color: #6a1bb1; /* purple like screenshot */
  margin-bottom: 15px;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.text-content p,
.stacked-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Stacked sections below */
.stacked-section {
  max-width: 800px;
  margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .image-content {
    order: -1;
  }
}




/* griha */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

/* PAGE HEADER */
.page-header {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 20px;
}

.page-header h1 {
  font-family: "Times New Roman", serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 10px;
}

.breadcrumb-primary {
  background: #f57c00;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-secondary {
  background: #222;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
}

/* HERO BANNER */
.hero-banner {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  padding-left: 8%;
  margin-top: 30px;
}

.hero-banner h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Times New Roman", serif;
  line-height: 1.2;
}

/* SPECIFIC BACKGROUND */
.griha-banner {
  background: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("media/Welcome-To-Your-EduX\ \(1\).png") center/cover no-repeat;
}




.content-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

.content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

.content-wrapper p:first-of-type {
  color: #5a2ca0; /* blue / purple shade */
}




.pre-pooja-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 0;
}

.pre-pooja-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pre-pooja-title {
  text-align: center;
  font-size: 36px;
  color: #5b2bbd; /* purple */
  margin-bottom: 50px;
}

.pre-pooja-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.pre-pooja-icon {
  font-size: 26px;
  min-width: 40px;
  margin-top: 5px;
}

.pre-pooja-content h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

.pre-pooja-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .pre-pooja-item {
    flex-direction: column;
  }

  .pre-pooja-icon {
    margin-bottom: 5px;
  }

  .pre-pooja-title {
    font-size: 30px;
  }
}





/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* PAGE HEADER */
.page-header {
  width: 100%;
  background: #fff;
  padding: 40px 0 20px;
}

.page-header-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* TITLE */
.page-title {
  font-family: "Georgia", serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 10px;
}

.breadcrumb-primary {
  background: #f58220;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-secondary {
  background: #222;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}

/* HERO BANNER */
.hero-banner {
  width: 100%;
  margin: 40px 0;
  background: url("media/Welcome-To-Your-EduX\ \(1\).png") center/cover no-repeat;
}

/* This creates EQUAL left & right spacing */
.hero-overlay {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.35);
}

.hero-overlay h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Georgia", serif;
}




.content-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

.content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Paragraphs */
.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 22px;
  text-align: center;
}

/* Optional: first paragraph slightly emphasized */
.intro-text {
  font-size: 17px;
}

/* Section heading */
.section-heading {
  font-size: 36px;
  color: #6a3dbf;
  margin: 50px 0 25px;
  text-align: left;
  font-family: "Georgia", serif;
}

/* Bullet list */
.steps-list {
  padding-left: 20px;
}

.steps-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #000;
}





/* business */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* PAGE HEADER */
.page-header {
  background: #fff;
  padding: 50px 0 30px;
}

.page-header-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: "Georgia", serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 12px;
}

.breadcrumb span {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-orange {
  background: #f57c00;
  color: #fff;
}

.breadcrumb-dark {
  background: #222;
  color: #fff;
}

/* HERO BANNER */
.hero-banner {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-family: "Georgia", serif;
  text-align: center;
}

/* BUSINESS HERO BACKGROUND */
.business-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("media/Welcome-To-Your-EduX\ \(1\).png") center/cover no-repeat;
}




.content-section {
  background: #ffffff;
  padding: 70px 0;
}

.content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Highlighted pink text */
.highlight-text {
  text-align: center;
  color: #ff4fcf;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Row layout */
.content-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

/* Image */
.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Text */
.content-text {
  flex: 1;
}

.content-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .content-row {
    flex-direction: column;
  }

  .highlight-text {
    font-size: 16px;
  }
}




/* satyanarayan */
/* PAGE HEADER */
.page-header {
  background: #ffffff;
  padding: 40px 0 20px;
}

.page-header-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: "Georgia", serif;
  font-size: 42px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #000;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 12px;
}

.breadcrumb-primary {
  background: #f58220;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-secondary {
  background: #222;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
}

/* HERO BANNER */
.hero-banner {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Georgia", serif;
  font-weight: 600;
}

/* SPECIFIC BACKGROUND FOR THIS PAGE */
.satyanarayan-banner {
  background: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("media/Welcome-To-Your-EduX\ \(1\).png"); /* same banner image you’re using */
  background-size: cover;
  background-position: center;
}




/* CONTENT SECTION */
.content-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

.content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* TWO COLUMN LAYOUT */
.two-column {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 40px;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
  text-align: right;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-column {
    flex-direction: column;
  }

  .content-image {
    text-align: center;
  }
}




/* SECTION HEADING */
.section-heading {
  font-size: 36px;
  color: #6a33b8; /* purple */
  font-weight: 700;
  margin: 40px 0 20px;
}

/* CUSTOM BULLET LIST */
.custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.custom-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* Bullet dot */
.custom-list li::before {
  content: "◦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #000;
}





.section-heading {
  font-size: 36px;
  color: #6a33b8;
  font-weight: 700;
  margin: 40px 0 20px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.custom-list li::before {
  content: "◦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #000;
}

.video-link a {
  color: #ff7a00;
  text-decoration: underline;
  font-weight: 500;
}





/* akshara */
.akshara-verse {
  padding: 80px 0 60px;
  background: #ffffff;
}

.verse-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Sanskrit text */
.sanskrit {
  font-size: 28px;
  color: #6f42c1; /* purple */
  font-family: "Noto Serif Devanagari", "Times New Roman", serif;
  margin-bottom: 30px;
}

/* English transliteration */
.transliteration {
  font-size: 26px;
  color: #6f42c1;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Description line */
.description {
  margin-top: 40px;
  font-size: 16px;
  color: #ff4fd8; /* pink highlight */
  line-height: 1.6;
}





.akshara-info {
  padding: 80px 0;
  background: #ffffff;
}

.akshara-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text styling */
.akshara-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 24px;
}

/* Image styling */
.akshara-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}





.akshara-timing {
  padding: 80px 0;
  background: #ffffff;
}

.akshara-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Headings */
.akshara-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  color: #6b35c9; /* purple */
  margin-bottom: 18px;
}

/* Paragraphs */
.akshara-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 50px;
}




/* udayapan */
/* ---------- PAGE HEADER ---------- */
.page-header {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 20px;
}

.page-title {
  font-family: "Times New Roman", serif;
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  gap: 12px;
}

.breadcrumb-main {
  background: #f58220;
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-current {
  background: #222;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
}

/* ---------- BANNER ---------- */
.page-banner {
  width: 90%;
  max-width: 1200px;
  height: 260px;
  margin: 30px auto;
  background: linear-gradient(
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    url("media/Welcome-To-Your-EduX\ \(1\).png"); /* replace with your actual image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner h2 {
  color: #fff;
  font-size: 36px;
  font-family: "Times New Roman", serif;
}



/* ---------- CONTENT SECTION ---------- */
.content-section {
  width: 100%;
  background: #fff;
  padding: 70px 0;
}

.content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- TWO COLUMN LAYOUT ---------- */
.two-column {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* ---------- TEXT ---------- */
.content-text {
  flex: 1;
}

.section-title {
  font-size: 30px;
  color: #6a38c2; /* purple heading */
  margin-bottom: 20px;
  font-family: "Times New Roman", serif;
}

.content-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

/* ---------- IMAGE ---------- */
.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}


