.business-banner.with-overlay {
    position: relative;
    background-image: url("/landing/images/banner-9.webp");
    background-size: cover;
    background-position: 100% 80%;
    background-repeat: no-repeat;
    /* min-height: 400px; */
    z-index: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 30%;
    right: 7%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 40px;
    max-width: 600px;
    border-radius: 4px;
    opacity: 0;
    animation: none;
    transition: opacity 0.4s ease;
}

.slide.active .overlay {
    animation: fadeRight 0.8s ease forwards;
    opacity: 1;
}

.overlay h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
}

.overlay p {
    font-size: 16px;
    line-height: 1.5;
}

.read-more {
    color: rgb(76, 175, 80);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

.read-more:hover {
    color: #22cd76;
}

.controls {
    position: absolute;
    bottom: 20px;
    right: 7%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.controls button {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.indicator {
    font-size: 16px;
    font-weight: bold;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .overlay {
        padding: 25px;
        max-width: 90%;
        right: 5%;
        top: auto;
        bottom: 100px;
        transform: translateY(0);
    }

    .overlay h2 {
        font-size: 20px;
    }

    .overlay p {
        font-size: 15px;
    }

    .controls {
        right: 5%;
        bottom: 15px;
    }

    .controls button {
        font-size: 24px;
        padding: 6px 10px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .overlay {
        padding: 20px;
        max-width: 90%;
        bottom: 90px;
    }

    .overlay h2 {
        font-size: 18px;
    }

    .overlay p {
        font-size: 14px;
    }

    .controls button {
        font-size: 20px;
        padding: 6px 8px;
    }

    .indicator {
        font-size: 14px;
    }
}

.right-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.right-slides {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.right-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.right-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    animation: right-fadeRight 0.6s ease;
}

.right-overlay h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: white;
}

.right-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
}

.right-overlay a {
    color: rgb(76, 175, 80);
    text-decoration: none;
    font-weight: bold;
}

.right-overlay a:hover{
    color: #22cd76;
}

.right-controls {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
    color: #fff;
}

.right-controls button {
    background: transparent;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
}

.right-counter {
    font-size: 16px;
}

@keyframes right-fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .right-overlay {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
        padding: 20px;
    }

    .right-overlay h2 {
        font-size: 20px;
    }

    .right-overlay p {
        font-size: 14px;
    }

    .right-controls {
        right: 20px;
        bottom: 10px;
    }
}

.business-stat-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.business-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.business-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.business-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #004120;
    margin-bottom: 20px;
}

.business-stat-label {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #555;
}
