* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .carousel {
        height: 60vh; /* Reduce height for mobile to make it more manageable */
    }

    .carousel-track img {
        height: 60vh; /* Match the carousel height */
    }

    .carousel-btn {
        font-size: 18px; /* Smaller buttons for mobile */
        padding: 8px 12px; /* Adjust padding */
    }

    .carousel-indicators {
        bottom: 10px; /* Adjust position */
    }

    .dot {
        width: 10px;
        height: 10px; /* Smaller dots for mobile */
    }
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    background: transparent;
    border: none;
    font-size: 24px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn:hover {
    background: transparent;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: rgba(255, 255, 255, 1);
}
