/* Base Typography */
.section-heading {
  color: #365140;
  text-align: left;
  /* align-self: center; */
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Shippori Mincho', sans-serif;
  font-size: 30px;
  font-weight: 550;
  line-height: 48px;
}

.section-subheading {
  color: #d16d56;
  font-family: 'Shippori Mincho', sans-serif;
  font-weight: 600;
  line-height: 24px;
  text-align: left;

}

.temple-text p {
  font-family: 'Inter', sans-serif;
  color: #5e5e5e;
}

/* Why Temple Section */
.why-temple {
  background: linear-gradient(145deg, #fffaf3, #fcefe2);
  padding: 70px 20px;
  border-top: 1px solid #eee;
}

.temple-points p {

  line-height: 1.8;
  margin-bottom: 1.2rem;
  padding-left: 15px;
  padding-right: 10px;
  border-left: 4px solid #c2824f;
  background: #fffdfb;
  font-size: 18px;
  font-weight: 300;
  border-radius: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.temple-points strong {
  color: #a0522d;
  font-weight: 600;
}

.temple-img {
  max-width: 90%;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-text {
  font-size: 1.1rem;
  color: #5b3922;
  margin-bottom: 10px;
}

.highlight-strong {
  color: #a0522d;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }

  .temple-img {
    max-width: 100%;
    margin-top: 20px;
  }

  .temple-points p {
    font-size: 1rem;
    padding-left: 10px;
  }
}


.card {
  border: none;
}

.btn-primary {
  background-color: #4B0082;
  border: none;
}

.btn-primary:hover {
  background-color: #5a2999;
}

.form-label {
  font-weight: 500;
}

.tour-icons {
  font-size: 1.1rem;
}

.tour-icons i {
  color: #4B0082;
  margin-right: 8px;
}


.experience-section {
  padding: 60px 0;
  background: #fff;
}

.experience-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ad2a2a;
}

.experience-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.experience-highlight {
  background: #fbe9e7;
  padding: 20px;
  border-left: 5px solid #ad2a2a;
  margin-top: 20px;
  border-radius: 8px;
}

.experience-img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.justify-text p {
  text-align: justify;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 0.65rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Amber gradient */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .btn-cta:hover {
    background: linear-gradient(135deg, #d97706, #b45309); /* Darker amber */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .btn-cta i {
    font-size: 1.1rem;
  }


  
  