body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}


/* HERO SECTION */
.hero {
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.65)
    ),
    url('../images/Mahabharat-Lord-Krishna.jpg') center/cover no-repeat;
    
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT OVERLAY */
.overlay {
  text-align: center;
  color: #ffffff;
  padding: 20px;
  max-width: 800px;
}

/* WEBSITE NAME */
.overlay h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

/* TAGLINE */
.overlay p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #f1f1f1;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* CTA BUTTON */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, #f5c542, #f0b429);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(245, 197, 66, 0.4);
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 197, 66, 0.6);
}

.about {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 30px;
  text-align: center;
}

.about h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
}


.paths {
  background: #f9fafc;
  padding: 80px 20px;
  text-align: center;
}

.paths h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  width: 220px;
  padding: 25px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3a2a14;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    #f5c542,
    #e6a700
  );
  color: #3a2a14;
  box-shadow: 0 18px 40px rgba(240, 180, 41, 0.45);
}


/* why parth saarthi website */

/* WHY SECTION - FIXED SPACING */
.why {
  max-width: 800px;
  margin: 40px auto;        /* ⬅ gap kam */
  padding: 30px 20px;      /* ⬅ compact */
  text-align: center;
}

.why h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;     /* ⬅ pehle zyada tha */
  color: #1a1a1a;
}

/* LIST */
.why ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEMS */
.why li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  margin: 12px 0;          /* ⬅ vertical gap kam */
  color: #444;
}

.why li::before {
  content: "✔";
  color: #f0b429;
  font-weight: bold;
  font-size: 1.1rem;
}

.card-link {
  text-decoration: none;
}


/* COMING SOON MODAL */
.ps-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ps-modal-box {
  background: #fffaf0;
  padding: 35px;
  border-radius: 14px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.ps-modal-box h3 {
  color: #e6a700;
  margin-bottom: 15px;
}

.ps-modal-box p {
  color: #3a2a14;
  line-height: 1.6;
}

.modal-quote {
  margin-top: 15px;
  font-style: italic;
  color: #8a6b2f;
}

.modal-btn {
  margin-top: 25px;
  padding: 10px 26px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #f5c542, #e6a700);
  color: #3a2a14;
  font-weight: 600;
  cursor: pointer;
}

/* COMING SOON CARD FEEL */
.coming-soon {
  position: relative;
  opacity: 0.9;
}

.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.7rem;
  background: #f5c542;
  color: #3a2a14;
  padding: 3px 8px;
  border-radius: 10px;
}


/* mobile responsive css */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2.5rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about h2,
  .paths h2,
  .why h2 {
    font-size: 1.9rem;
  }

  .card {
    width: 90%;
  }
}
