body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important; /* only hides horizontal overflow */
    font-family: sans-serif;
    background-color: #150a2e
 !important;
    scroll-behavior: smooth;
   
  }
  .header-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 45px 20px;
    /* background: url('/img/backgroung_img1.png') no-repeat center center; */
    background-size: cover;
  }

.navbar-custom {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 1.2rem;
}

.navbar-custom a {
  position: relative;
  padding-bottom: 5px;
  color: white;
  text-decoration: none;
   transition: color 0.2s ease-in-out; 
}

.navbar-custom a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #ffc107;
  /* transition: 0.3s ease; */
}

/* Hover effect */
.navbar-custom a:hover {
  color: #ffc107;
}

.navbar-custom a:hover::after {
  width: 100%;
}

/* Active link style */
.navbar-custom a.active {
  color: #ffc107;
}

.navbar-custom a.active::after {
  width: 100%;
}
/* ========================= */
 .form-container {
  background: #fff;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.healing-intro {
  text-align: justify;
  margin-left: 0; /* ensures it's left aligned */
  padding: 20px;
  max-width: 800px;
}

h2 {
  color: #1A0B3D;
  text-align: center;
}
.section-title {
  text-align: left !important;
}
.form-group {
  margin-bottom: 20px;
  text-align: left; /* ensures text is aligned left inside each block */
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
}



h3.section-title {
  color: #1A0B3D;
  font-size: 18px;
  margin-top: 40px;
  text-align: left;
  border-bottom: none; /* Removed underline */
}

label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  text-align: left !important;
}

textarea,
input[type="text"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: vertical;
}

.checkboxes {
  margin-top: 10px;
}

.checkboxes.vertical label {
  display: block;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: left;
}

.checkboxes.horizontal label {
  display: inline-block;
  margin-right: 20px;
  font-weight: normal;
  text-align: left;
}

.service-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  font-size: 16px;
}

.service-section select {
  max-width: 300px;
}

.note {
  margin-top: 30px;
  background-color: #f8f8f8;
  padding: 15px;
  /* border-left: 4px solid #dc3545; */
  font-size: 16px;
  border: 1px solid #8e84a3 !important;
}

.mobile-menu-toggler {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 26px;
  color: rgb(214, 210, 210);
  cursor: pointer;
  z-index: 1100;
}
.btn-success{
  background-color: #3c3253 !important;
}
/* =========== mobile view part of the section====== */
@media (max-width: 768px) {
      .mobile-hide-br {
    display: none;
  }
  .mobile-menu-toggler {
    display: block !important;
  }
   .header-section {
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px !important;
     background-color: #150a2e
 !important;
    /* background: url('/img/backgroung_img3.png') no-repeat center center; */
    background-size: cover;
    margin-top: 30px !important;
  }
  /* .navbar-custom a {
    color: #ffc107 !important;
  } */
.navbar-custom a::after {
  display: none !important;
  text-decoration: underline !important;
}
  .navbar-custom {
    flex-direction: column;
    text-align: left !important;
    gap: 5px;
    padding: 10px 0;
    position: absolute;
    top: 20px;
    right: 0;
    width: 100%;
    display: none;
    z-index: 1000;
    background: none; /* No background */
    backdrop-filter: none;
    background-color: #1E1B4B !important;
  }

  .navbar-custom.active {
    display: flex;
  }

  .navbar-custom a {
    font-size: 1rem; /* Smaller font size */
    padding: 6px 18px;
    
  }
}
@media screen and (max-width: 768px) {
  .form-container {
    padding: 30px 20px 20px;
    /* margin-bottom: 50px !important; */
  }
   .form-section{
     margin-bottom: 30px !important;
   }
  h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  h3.section-title {
    font-size: 1.2rem;
    text-align: left;
  }

  .form-group label,
  label,
  .form-group,
  .checkboxes label,
  .note,
  textarea,
  input,
  select,
  p,
  .checkboxes label {
    font-size: 0.9rem !important;
  }

  .healing-intro {
    text-align: left;
    padding: 15px 0;
    font-size: 0.95rem;
  }

  .checkboxes.horizontal label {
    display: block;
    margin-bottom: 8px;
  }
}
