 /* Banner Slider */
.banner-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: #1f2937;
}


.carousel-item {
    position: relative;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    color: #ffffff;
}

.banner-text {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.carousel-item.active .banner-text {
    opacity: 1;
    transform: translateY(0);
}

.banner-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #ccc;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 40px;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid #1f2937;
    transition: all 0.3s;
}



.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.banner-image {
    height:100vh;
    width: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1s ease;
}

.carousel-item.active .banner-image {
    transform: scale(1);
}


.carousel-indicators {
    margin-bottom: 30px;
    gap: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: #f43f5e;
    width: 50px;
}

@media (max-width: 991px) {
    .banner-slider {
        height: 70vh;
    }

    .banner-content {
        padding: 40px;
    }

    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .banner-image {
        height:80vh;   
    }
    .banner-slider {
        height: 60vh;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-cta {
        flex-direction: column;
         width: max-content;
    }
    .banner_tag_class{
        display:none;
    }
    .banner_description_class{
        display:none;
    }
}

@media (max-width: 576px) {
    .banner-image {
        height:60vh;   
    }
    .banner-content {
        padding: 30px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .btn-primary{
        padding: 12px 30px;
    }
}