.hero-section {
  /* background: url('/bg9.avif') no-repeat center center/cover; */
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  flex-direction: column;
  padding: 0 15px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Times New Roman', Times, serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 20px;
  letter-spacing: 1px;
  font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}











.form-section {
    max-width: 700px;
    margin: 60px auto;
    background:whitesmoke;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    font-family: 'Times New Roman', Times, serif;
  }

  .form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
  }

  .form-section h2 span {
    color: #00b2a9;
  }

  .btn-primary {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    transition: 0.3s;
  }

  .btn-primary:hover {
    background-color: #0056b3;
  }
  
  .form-control {
    padding: 12px;
    border-radius: 10px;
    
  }

  .iti {
    width: 100%;
  }
