    .contact-card {
    border-radius: 18px;
    overflow: hidden;
}


.contact-header {
    background: linear-gradient(
        135deg,
        #6366f1,
        #8b5cf6
    );

    padding: 35px 20px;
}


.contact-header h2 {
    font-weight: 700;
}


.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
}


.form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 .25rem rgba(99,102,241,.25);
}


.btn-contact {

    background: #6366f1;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;

    transition: .3s;
}


.btn-contact:hover {

    background: #8b5cf6;
    color:white;
    transform: translateY(-2px);

}