.contact {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px 0;
}

.title-thead {
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    background: #333;
    color: #fff;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: white;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease; 
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.contact-info h3 {
    color: #555;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #3498db;
    margin-right: 10px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.social {
    margin-top: 25px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f1f1;
    border-radius: 50%;
    margin-right: 8px;
    color: #555;
    transition: all 0.3s ease;
}

.social a:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.contact-form {
    background: white;
    padding: 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding-left: 15px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, .25);
}

.contact-form textarea.form-control {
    height: auto;
    padding-top: 10px;
}

.contact-map {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 991.98px) {

    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}