﻿/* Modern Input */
.modern-input {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

    .modern-input:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 8px rgba(13,110,253,0.2);
    }

/* Button */
.modern-btn {
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

    .modern-btn:hover {
        background: #0b5ed7;
    }

/* Contact List */
.contact-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }
}
