/* Banner Styles */
.banner-section {
    margin-top: 0; /* Removes space between navbar and banner */
}

/* Slideshow */
.slideshow-container {
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slide Navigation Dots */
.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background-color: white;
    width: 24px;
    border-radius: 12px;
}

/* Content Animations */
.banner-title {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

.banner-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
}

.banner-list li:nth-child(1) { animation-delay: 0.2s; }
.banner-list li:nth-child(2) { animation-delay: 0.4s; }
.banner-list li:nth-child(3) { animation-delay: 0.6s; }
.banner-list li:nth-child(4) { animation-delay: 0.8s; }

/* Bullet Points */
.bullet {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    margin-right: 12px;
    display: inline-block;
    position: relative;
}

.bullet::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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


