.hero {
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: -56px;
}

.section {
    padding: 5rem 0;
}

.service-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
}

.feature-item {
    padding: 1.5rem;
    text-align: center;
    background: rgba(13, 110, 253, 0.03);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background: rgba(13, 110, 253, 0.08);
}

.feature-item i {
    font-size: 2rem;
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin-bottom: 0;
    color: #6c757d;
}

.time-badge {
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.map-container {
    height: 100%;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item {
    position: relative;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .map-container {
        height: 400px;
        margin-bottom: 2rem;
    }
}

.hero {
    background-attachment: scroll;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon-wrapper {
        height: 80px;
        width: 80px;
    }

    .service-icon {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-card {
        margin-top: 2rem;
    }
}

@media (max-width: 991.98px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-info-item {
        text-align: center;
    }

    .contact-info-item .d-flex {
        justify-content: center;
    }

    .btn-outline-primary {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .img-fluid {
        margin-top: 0;
    }
}


