/* Custom styles for Bootstrap Carousel Slider */
.slider-section {
    position: relative;
    margin-top: 0;
}

#mainSlider {
    width: 100%;
}

#mainSlider .slider-image {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mainSlider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 20px;
}

#mainSlider .carousel-caption h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease;
}

#mainSlider .carousel-caption p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    animation: fadeInUp 1.2s ease;
}

#mainSlider .carousel-caption .btn {
    animation: fadeInUp 1.4s ease;
    padding: 12px 30px;
    font-size: 16px;
}

#mainSlider .carousel-control {
    width: 5%;
    background: rgba(0,0,0,0.3);
    opacity: 0.7;
    transition: opacity 0.3s;
}

#mainSlider .carousel-control:hover {
    opacity: 1;
}

#mainSlider .carousel-indicators {
    bottom: 20px;
}

#mainSlider .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid #fff;
}

#mainSlider .carousel-indicators .active {
    background-color: #fff;
    width: 12px;
    height: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #mainSlider .slider-image {
        min-height: 400px;
    }
    
    #mainSlider .carousel-caption h2 {
        font-size: 32px;
    }
    
    #mainSlider .carousel-caption p {
        font-size: 16px;
    }
}
