﻿.card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

.form-control {
    padding: 8px 12px; /* Reduced padding to make height smaller */
    border-radius: 8px;
    border: 1px solid #ced4da;
    margin-bottom: 1px;
    height: auto; /* Override default height */
    line-height: 1.2; /* Reduced line height */
}

    .form-control:focus {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        border-color: #86b7fe;
    }

textarea.form-control {
    padding: 8px 12px; /* Keep the same padding as inputs */
}

.contact-icon {
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
