

.contact-hero{
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    background:  linear-gradient(-45deg,#fad0c4,#fbc2eb,#a18cd1,#ff9a9e);
    background-size: 400% 400%;
    animation: moveG 60s ease infinite;
}

@keyframes moveG {
    0%{background-position: 0%,50%;}
    50%{background-position: 100%,50%;}
    100%{background-position: 0%,50%;}
}

.contact{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact form{
    width: 300px;
    background: orangered;
    box-shadow: 0px 4px 6px rgb(255, 153, 1);
    padding: 1rem 0.8rem;
    border-radius: 12px;
    color: #fff;
}

.contact form input, .contact form textarea{
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    outline: none;
}

.contact #zee{
    margin-bottom: 10px;
}

.contact button{
    padding: 6px 24px;
    font-size: 16px;
    background: rgb(250, 171, 0);
    color: #fff;
    border-radius: 4px;
    border: none;
    border-bottom: 2px solid rgb(255, 94, 0);
}

/* OtherContacts */
.OtherContacts{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.OtherContacts h2{
    color: orangered;
}

.OtherContacts li{
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 6px 12px #ddd;
    margin-bottom: 12px;
    padding: 16px;
    border-radius: 12px;
    transform: scale(1);
    transition: 0.2s linear;
}

.OtherContacts .icon{
    color: orangered;
}

.OtherContacts li:hover{
    transform: scale(1.02);
}