/* Home page specific styles */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.fixed-aspect-ratio {
    position: relative;
    padding-bottom: calc(var(--aspect-ratio) * 100%);
}

.optimized-carousel-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .carousel-item img {
        width: 100%;
        height: auto;
    }
}

/* Service cards */
.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}