/* Banner Section */
.banner-section {
    background: #f6c945;
    height: 264px;
    position: relative;
    z-index: 1;
}

.carousel-banner-wrapper {
    width: 965px;
    height: 490px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin: 0 auto;
    position: relative;
    top: -180px;
    z-index: 2;
    overflow: visible;
    padding-bottom: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin: 0;
    z-index: 4;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9D9D9;
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.carousel-indicators button[data-bs-target].active,
.carousel-indicators [data-bs-target].active {
    background-color: #ffd54f !important;
    width: 30px !important;
    border-radius: 10px !important;
    opacity: 1 !important;
    height: 12px !important;
}

.banner-item {
    height: 490px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.carousel-item {
    width: 100%;
    height: 100%;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    display: block;
}

.banner-overlay {
    position: absolute;
    left: 0; bottom: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    border-radius: 15px;
}

.banner-content {
    position: absolute;
    left: 40px; bottom: 40px;
    color: #fff;
    z-index: 3;
    text-align: left;
    max-width: 70%;
}

.banner-title {
    font-family: var(--font-fz-poppins);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-btn {
    display: inline-block;
    background-color: #ffd54f;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-fz-poppins);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 4;
}

.banner-btn:hover {
    background-color: #ffb300;
    color: #333;
}

/* Responsive styles for banner */
@media (max-width: 1024px) {
    .carousel-banner-wrapper {
        width: 90%;
        max-width: 960px;
        height: 400px;
        left: 0;
        position: relative;
        top: -120px;
        margin: 0 auto;
    }
    .banner-item {
        height: 400px;
    }

}

@media (max-width: 768px) {
    .banner-section {
        height: 180px;
    }
    .carousel-banner-wrapper {
        width: 640px;
        max-width: 640px;
        height: 320px;
        top: -110px;
        border-radius: 15px;
    }
    .banner-item {
        height: 320px;
        border-radius: 15px;
    }
    .carousel-item {
        width: 100%;
        height: 100%;
    }
    .banner-content, .carousel-caption {
        left: 30px;
        bottom: 30px;
        max-width: 70%;
    }
    .banner-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .banner-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

}

@media (max-width: 576px) {
    .banner-section {
        height: 114px;
        margin: -15px !important;
    }
    .carousel-banner-wrapper {
        width: 100%;
        max-width: 357px;
        height: 181px;
        top: -50px;
    }
    .banner-item {
        height: 181px;
    }
    .carousel-item {
        width: 100%;
        height: 100%;
    }
    .banner-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    .banner-content, .carousel-caption {
        left: 16px;
        right: auto;
        bottom: 16px;
        max-width: 60%;
        padding: 0;
        display: block;
    }
    .banner-title {
        font-size: 14px;
        margin-bottom: 0;
        white-space: normal;
    }
    .banner-btn {
        right: 16px;
        bottom: 16px;
        padding: 6px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    .carousel-indicators [data-bs-target].active {
        width: 20px !important;
    }
} 