.contact-header{
    margin-bottom: 30px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #2e2d2d 0%, #9d9d9e 100%);
    color: white;
    margin-bottom: 30px;
}
/*=============Info Section Styling=============*/
.info-wrapper{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
    max-height: 300px;
}
.info-wrapper .items-wrapper{
    display: flex;
    height: fit-content;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.info-wrapper .items-wrapper .info-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-right: 2px solid #031155;
    cursor: pointer;
}
.info-wrapper .items-wrapper .info-item:last-child{
    border-right: none;
}
.info-wrapper .items-wrapper .info-item h3{
    font-size: 1.5rem;
}
.info-wrapper .items-wrapper .info-item:hover{
    background: #03115543;
    color: white;
    border-radius: 10px;
}
.info-wrapper .items-wrapper .info-item i{
    font-size: 50px;
    color: #031155;
}
.info-wrapper .info-img{
    position: relative;
    top:-200px;
    height: fit-content;
}
.info-wrapper img{
    width: 400px;
    height: 500px;
    border-radius: 130px 130px 0 0;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1245px){
    .info-wrapper .info-img{
        display: none;
    }
}
@media (max-width: 768px){
    
    .info-wrapper .items-wrapper .info-item{
        border-right: none;
        border-bottom: 2px solid #031155;
        padding: 20px 10px;
        width: 100%;
    }
    .info-wrapper{
        flex-direction: column;
        align-items: center;
        max-height: fit-content;
        margin-bottom: 0;
        padding-bottom: 30px;
    }
}
@media (max-width: 480px){
    .info-wrapper .items-wrapper .info-item h3{
        font-size: 1.2rem;
    }
    .info-wrapper .items-wrapper .info-item i{
        font-size: 40px;
    }
}
/*=============Form Section Styling=============*/
.form-wrapper{
    padding: 20px;
    border-radius: 18px;
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.form-wrapper .form{
    background: linear-gradient(135deg, #000000 0%, #424242a9 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    color: #fff;
}
.form-wrapper .form input[type="text"],
.form-wrapper .form input[type="email"],
.form-wrapper .form textarea{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}
.form-wrapper .form input[type="submit"]{
    background-color: #dddde0;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.form-wrapper .form input[type="submit"]:hover{
    background-color: #eaebee;
    transform: scale(1.05);
}
@media (max-width: 480px){
    .form-wrapper .form{
        width: 100%;
    }

}
.social-media-icons {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}

.social-media-icons a {
    color: #191b25;
    font-size: 1.7em;
    transition: color 0.3s, transform 0.3s;
}

.social-media-icons a:hover {
    color: #444;
    transform: scale(1.15) rotate(-8deg);
}
.social-media h3 {
    font-size: 24px;
}
@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }
    .form-wrapper .form {
        width: 90%;
    }
    .social-media {
        text-align: center;
    }
    .social-media-icons {
        justify-content: center;
    }
} 
/*flash message*/
.toast {
    position: fixed;
    left: 50%;
    bottom: 50%; /* middle of screen */
    transform: translate(-50%, 50%); /* center horizontally, move down a bit */
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeIn 0.4s forwards, fadeOut 0.6s ease 4s forwards;
    z-index: 9999;
    text-align: center;
    min-width: 250px;
}

.toast.success {
    background: #28a745; /* green */
}

.toast.error {
    background: #dc3545; /* red */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 50%);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translate(-50%, 60%);
        visibility: hidden;
    }
}

