
body {
    font-family: "Poppins", sans-serif;
    margin: 0px;
    padding: 0;
    background-color: white;
  }
  
  .hero-section {
    margin: 0px;
    margin-bottom: 30px;
    border-radius: 25px;
    position: relative;
    height: 200px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/static/images/aubg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}


.about-button {
    background-color: #074b72;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5em;
    font-weight: bold;
}
  .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
  
  
  .contact-options {

    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 45px;
  }
  
  .contact-option {
    background-color: #fff;
    border-radius: 45px;
    border: 2px solid #074b72;
    padding: 20px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 30%; /* Adjust the width for better responsiveness */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-option .icon {
    border: 1px solid #074b72;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }
  
  .contact-option .icon i {
    color: #074b72;
    font-size: 25px;
    margin: 7px 13px;
  }
  
  .contact-option h3 {
    font-size: 18px;
    margin: 15px 0;
  }
  
  .contact-option p {
    font-size: 14px;
    color: #666;
  }
  
  .contact-option h6 {
    font-size: 14px;
    margin-top: 10px;
  }
  
.connect-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #f0f8fe;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(7, 75, 114, 0.3);
  margin-bottom: 40px;
}

.form-section {
  flex: 1;
  padding: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #074b72;
}

.form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #074b72;
}

.form-section p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: 600;
}

input,
textarea {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #074b72;
  outline: none;
}

button {
  background-color: #074b72;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #055077;
}

.map-section {
  flex: 1;
  min-height: 500px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .connect-section {
    flex-direction: column;
  }

  .map-section,
  .form-section {
    padding: 20px;
  }

  .map-section {
    min-height: 300px;
  }
}
 
  /* Responsive Styling */
  @media (max-width: 1200px) {
    .contact-options {
      margin: 40px auto;
    }
  
    .contact-option {
      width: 45%;
    }
  
    .connect-section {
      flex-direction: column;
    }
  
    .form-section,
    .map-section {
      margin: 0;
    }
  
    .map-section iframe {
      height: 350px;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 1.5rem;
    }
  
    .contact-options {
      margin: 20px auto;
      justify-content: center;
    }
  
    .contact-option {
      width: 90%;
    }
  
    .form-section h2 {
      font-size: 1.5rem;
    }
  
    .map-section iframe {
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 10px;
    }
  
    h1 {
      font-size: 1.3rem;
    }
  
    .contact-options {
      margin: 10px auto;
    }
  
    .contact-option {
      width: 100%;
    }
  
    .form-section h2 {
      font-size: 1.3rem;
    }
  
    .form-section {
      padding: 10px;
    }
  
    .map-section iframe {
      height: 250px;
    }
  }
  
  /* Footer Section */


.custom-alert {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.custom-alert-box {
  background-color: #d1e7dd;
  border-left: 5px solid #0f5132;
  padding: 2em;
  border-radius: 8px;
  color: #0f5132;
  text-align: center;
  max-width: 400px;
  width: 80%;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.custom-alert.error .custom-alert-box {
  background-color: #f8d7da;
  border-left-color: #842029;
  color: #842029;
}

.custom-alert button {
  margin-top: 1em;
  padding: 0.5em 1.5em;
  border: none;
  background-color: #0f5132;
  color: white;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
}

.custom-alert.error button {
  background-color: #842029;
}

.custom-alert.hidden {
  display: none;
}


