.hero {
  width: 100%;
  height: 325px;
  background-image: url(../SRC/contact.jpg);
  background-position-y: -100px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 325px;
  background-color: rgba(0, 4, 54, 0.3);
}
.hero .container {
  z-index: 3;
}

.info .bg-light {
  border-radius: 20px;
}
.line-info {
  width: 70%;
  height: 1px;
  background-color: #ccc;
  margin: auto;
}

.form-container {
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Adjust as needed */
  background-image: url("../SRC/contact.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-form {
  background-color: rgba(0, 4, 54, 0.3);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.form {
  transform: translateY(-100px);
}
.form .container {
  display: flex;
  justify-content: center;
}
.form .card {
  width: 70%;
}

 /* Custom Alert Styles */
 .custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.custom-alert h4 {
  color: #28a745;
}

.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}