/* Tablet styles (601px - 1024px) */

.navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner {
    width: 90%;
    height: auto;
}
/* Tablet carousel - show only 3 images wide */
.carousel-container {
    height: 300px;
}

.carousel {
    justify-content: center;
    gap: 10px;
}

.carousel-item {
    width: 30%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-item.visible-tablet {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.nav-right {
    flex-direction: column;
    gap: 15px;
}

.section h1 {
    font-size: 2.5em;
}

.block {
    width: 45%; /* Stack 2 in a row */
    margin-bottom: 20px;
}

.service-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

