#home-section-6 {
    padding: 50px 30px;
    border-radius: 15px;
    background: #000;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.home-section-6-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.home-section-6-left {
    flex: 1;
    min-width: 250px;
}

.home-section-6-heading {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 0;
    color: #fff;
    font-weight: 600;
}

.home-section-6-subheading {
    font-size: .9rem;
    color: #FFF;
    margin-bottom: 30px;
}

.home-section-6-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-section-6-tabs .tab {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: #fff;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'ClashDisplay', sans-serif;
}

.home-section-6-tabs .tab.active {
    background: #BE1E28;
    border-left-color: #fff;
    color: #fff;
}

.home-section-6-right {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.carousel-slide {
    height: 100%;
    position: relative;
    display: none;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.carousel-slide.active {
    display: flex;
}

.carousel-slide img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slide-content {
    width: calc(100% - 60px);
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 1));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 200px 30px 30px;
}

.slide-content h3 {
    font-size: 1.5rem;
    color: #fff;
    font-family: 'ClashDisplay', sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-content p {
    color: #fff;
    font-size: .9rem;
    margin: 0;
}

@media(max-width:756px) {
    .home-section-6-container {
        flex-direction: column;
    }

    .carousel-slide {
        height: 420px;
    }

    #home-section-6 {
        width: calc(100% - 90px) !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .carousel {
        border-radius: 15px;
    }
}