*{
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0%;
}
   .container-contact {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
    background-color: #f9fafb;
}
.contact-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80%;
}
.contact-div-header {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 900 ;
    color: #30283e;
    letter-spacing: 1px;
    gap: 15px;
    height: max-content;
    margin-bottom: 8px;
}
.contact-div-header span {
    display: flex;
    width: 100%;
    height: 100%;
}
.contact-div-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 75px;
    height: 100%;
    width: 100%;
}
.contact-div-flex-1{
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 185px;
}
.contact-hr-line{
    background-color: black;
    height: 2px;
    width: 100%;
}
.contact-font-size{
    font-size: 17px;
    color: #30283e;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-header{
    font-size: 18px;
    width: 100%;
}





/* Overlay background */
#formModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); 
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Modal box */
#formModal .modal-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease-out;
}

/* Success/Error text */
#formModal .modal-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* Close button */
#formModal .modal-content button {
  padding: 10px 20px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

#formModal .modal-content button:hover {
  background: #1e4fc5;
}

/* Animation */
@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.form-main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.form-main-div1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 0px 40px 0px;
    gap: 20px;
}
.form-main-div1 div h1{
    font-size: 34px;
    font-weight: 900 !important;
    color: #30283e;
    letter-spacing: 1px;
}
.form-main-div1 div div h5{
    font-size: 20px;
    color: #30283e;
    letter-spacing: 1px;
}
.form-main-div1 form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    width: 60%;
    gap: 10px;
}
.form-main-div1 form label{
    font-weight: bold;
    padding: 10px 0px 0px 0px;
}
.form-main-div1 form input{
    width: 400px;
    height: 34px;
    border: 1px solid rgba(63, 63, 68, .15);
    background-color: #f9fafb;
    padding: 6px 12px;
    color: #555;
    font-size: 1rem;
    outline-style: none;
}
.form-main-div1 form textarea{
    width: 400px;
    height: 100px;
    border: 1px solid rgba(63, 63, 68, .15);
    background-color: #f9fafb;
    padding: 6px 12px;
    outline-style: none;
    font-size: 1rem;
    color: #555;
}

.form-main-div1 form a{
    text-decoration: none;
    color: #00ac4e;
    transition: 0.2 ease;
}

.form-main-div1 form a:hover{
    text-decoration: none;
    color: #00ac4e;
    text-decoration: underline;
}
.form-main-div1 form button{
    width: 150px;
    height: 40px;
    background-color: #00ac4e;
    color: white;
    outline-style: none;
    border-style: none;
    border-radius: 5px;    
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s ease;    
}
.form-main-div1 form button:hover{
    background-color: black;
    color: white;
}
@media only screen and (max-width: 992px){
    .form-main-div1{
        width: 90%;
        text-align: center;
    }
    .form-main-div1 form {
        width: 90%;
    }
    .form-main-div1 form label{
        width: 80%;
    }
    .form-main-div1 form input {
        width: 80%;
    }
    .form-main-div1 form textarea {
        width: 80%;
    }
    .contact-div-flex-1{
        height: max-content !important;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .form-main-div1{
        width: 90%;
        text-align: center;
    }
    .form-main-div1 form {
        width: 90%;
    }
    .form-main-div1 form label{
        width: 80%;
    }
    .form-main-div1 form input {
        width: 80%;
    }
    .form-main-div1 form textarea {
        width: 80%;
    }
    .contact-div-flex{
        flex-wrap: wrap !important;
    }
}
@media only screen and (max-width: 480px) {
    .container{
        display: flex;
        flex-direction: column;
    }
    .form-main-div1{
        width: 90%;
        text-align: center;
    }
    .form-main-div1 form {
        width: 90%;
    }
    .form-main-div1 form label{
        width: 80%;
    }
    .form-main-div1 form input {
        width: 80%;
    }
    .form-main-div1 form textarea {
        width: 80%;
    }
    .contact-div-flex{
        flex-direction: column;
        align-items: start !important;
        gap: 40px !important;
    }
    .contact-div-flex-1{
        width: 100% !important;
        height: 150px !important;
        padding-bottom: 10px;
    }



/*.footer-main {*/
/*  background-color:rgb(2, 48, 52);*/
/*  color: #ccc;*/
/*  font-family: 'Segoe UI', sans-serif;*/
/*  padding: 40px 20px 20px;*/
/*}*/

/*.footer-container {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  justify-content: space-between;*/
/*  gap: 30px;*/
/*  max-width: 1200px;*/
/*  margin: auto;*/
/*}*/

/*.footer-column {*/
/*  flex: 1 1 180px;*/
/*  min-width: 180px;*/
/*}*/

/*.footer-column h3 {*/
/*  color: #fff;*/
/*  margin-bottom: 10px;*/
/*  font-size: 18px;*/
/*}*/

/*.footer-column hr {*/
/*  border: 0;*/
/*  border-top: 2px solid #ff9900;*/
/*  width: 40px;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.footer-column a {*/
/*  display: block;*/
/*  color: #ccc;*/
/*  text-decoration: none;*/
/*  margin-bottom: 8px;*/
/*  font-size: 15px;*/
/*  transition: color 0.3s ease;*/
/*}*/

/*.footer-column a:hover {*/
/*  color: #ff9900;*/
/*}*/

/*.social-icons a img {*/
/*  width: 30px;*/
/*  height: 30px;*/
/*  margin-right: 10px;*/
/*  filter: grayscale(100%) brightness(1.5);*/
/*  transition: filter 0.3s ease;*/
/*  background-color: white;*/
/*  border-radius: 100%;*/
/*}*/

/*.social-icons a img:hover {*/
/*  filter: grayscale(0%) brightness(1);*/
/*}*/

/*.footer-bottom {*/
/*  text-align: center;*/
/*  padding-top: 20px;*/
/*  margin-top: 30px;*/
/*  border-top: 1px solid #333;*/
/*  color: #888;*/
/*  font-size: 14px;*/
/*}*/

/*.footer-bottom a {*/
/*  color: #ff9900;*/
/*  text-decoration: none;*/
/*}*/

/*.footer-bottom a:hover {*/
/*  text-decoration: underline;*/
/*}*/
/*}*/