/* Banner Section Styles */
.banner-section {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.banner-slide.prev {
    transform: translateX(-100%);
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient Overlay */
.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Content Overlay */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInContent 0.8s ease 0.3s forwards;
}

.banner-slide.active .banner-content {
    opacity: 1;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-description {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Banner Dots */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.banner-dot {
    width: 30px;
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    position: relative;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scaleY(1.2);
}

.banner-dot.active {
    background: #ffffff;
    width: 40px;
    height: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .banner-section {
        height: 250px;
    }

    .banner-title {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .banner-description {
        font-size: 1.1rem;
    }

    .banner-dots {
        bottom: 15px;
        gap: 8px;
    }

    .banner-dot {
        width: 25px;
        height: 6px;
    }

    .banner-dot.active {
        width: 35px;
        height: 8px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        height: 200px;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 10px;
        width: 100%;
    }

    .banner-description {
        font-size: 1rem;
        width: 90%;
        margin: 0 auto;
    }

    .banner-dots {
        bottom: 12px;
        gap: 6px;
    }

    .banner-dot {
        width: 20px;
        height: 5px;
    }

    .banner-dot.active {
        width: 30px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 180px;
    }

    .banner-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .banner-content {
        max-width: 90%;
        padding: 0 15px;
    }

    .banner-dots {
        bottom: 10px;
        gap: 5px;
    }

    .banner-dot {
        width: 18px;
        height: 4px;
    }

    .banner-dot.active {
        width: 25px;
        height: 6px;
    }
}

