  /* General form styling */
.form-contact {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.form-contact.show {
    opacity: 1;
    transform: translateY(0);
}

/* Inputs & textarea */
.form-contact-bor,
.form-contact-textar {
    width: 100%;
    padding: 12px 14px;
    background-color: #F6F6FF;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Hover & focus effect */
.form-contact-bor:hover,
.form-contact-textar:hover,
.form-contact-bor:focus,
.form-contact-textar:focus {
    border-color: #0796a6;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(7, 150, 166, 0.15);
}

/* Labels */
.form-contact label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* Button */
.form-btn {
    background-color: #0796a6;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

/* Responsive spacing fix */
@media (max-width: 767px) {
    .form-contact {
        margin-bottom: 16px;
    }
}
.form-contact span{
    color: crimson;
}