
/* Carousel Styles */
.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    bottom: 50px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-caption .btn-orange {
    background-color: #FF4500;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid #FF4500;
    transition: all 0.3s ease;
}

.carousel-caption .btn-orange:hover {
    background-color: transparent;
    color: white;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        padding: 15px;
        bottom: 20px;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}