#contact-banner{
    /* background-image: linear-gradient(to top, #6a85b6 0%, #bac8e0 100%); */
    background-image: url("../img/contact.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    max-height: 417px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 120px 30px;
    color: black;
    text-shadow: 1px 1px 2px #ffffff, 0 0 25px #fff, 0 0 5px #fff;
}
#contact-banner p{
    color: black;
    text-shadow: 1px 1px 2px #ffffff, 0 0 25px #fff, 0 0 5px #fff;
}
#contact-page ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 15px;
    row-gap: 15px;
    flex-wrap: wrap;
}
#contact-page ul li{
    display: inline-block;
    font-weight: lighter;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.2); */
}

.contact-details{
    /* background-image: linear-gradient(to top, #09203f 0%, #537895 100%); */
    background-image: linear-gradient(-225deg, #473B7B 0%, #3584A7 51%, #30D2BE 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
    column-gap: 5px;
    padding: 30px 20px;
    color: #ffffff;
}
.contact-details p{
    margin: 0;
    color: #ffffff;
    font-size: 20px;
}
.contact-details a{
    /* text-decoration: none; */
    color: azure;
    transition: 0.2s ease;
}
.contact-details a:hover{
    text-decoration: none;
    color: lightcyan;
}
.contact-details img{
    filter: brightness(0) invert(1);
}


/* Form */
#form-details form span{
    font-size: 12px;
}
#form-details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#form-details{
    display: flex;
    justify-content: center;
}
#form-details form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e1e1e1;
    background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    /* margin: 30px; */
    margin-bottom: 30px;
    padding: 30px 80px;
}
#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}
#form-details form button{
    /* background-color: #088178; */
    color: #fff;
    padding: 10px 20px;
}


/* Popup Message */
.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}
.toast.success {
    background-color: #28a745;
}
.toast.error {
    background-color: #dc3545;
}