.enterprise-banner-bg {
    background: #f1eff4;
}

/* Slider wrapper */
.enterprise-banner-slider {
    position: relative;
    overflow: hidden;
}

/* Slide */
.enterprise-slide {
    min-height: 700px;
    display: none;
    align-items: center;
    background-size: cover;
    padding: 0 5%;
    border-radius: 0 0 0 15%;
}

.enterprise-slide.active {
    display: flex;
}

/* Content */
.banner-content {
    width: 100%;
}

.eip-logo {
    max-width: 135px;
}

.eip-text-content h1 {
    color: #000;
    font-weight: 700;
    font-size: 42px;
}

.eip-text-content p {
    color: #000;
    max-width: 550px;
    font-size: 16px;
}

/* Button */
.eip-btn {
    background: #FF7B00;
    padding: 12px 26px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.banner-preload {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #FF7B00;
    transform: scale(1.2);
}

/* Mobile adjustment */
@media (max-width: 767px) {
    .slider-dots {
        bottom: 20px;
    }
}


/* ===================== */
/* MOBILE VIEW */
/* ===================== */
@media (max-width: 767px) {
    .enterprise-slide {
        min-height: 500px;
        padding-top: 11%;
        background-position: top;
    }

    .eip-text-content {
        text-align: center;
        margin: 0 auto;
    }

    .eip-logo {
        max-width: 110px;
        margin: 0 auto;
        display: block;
    }

    .eip-text-content h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .eip-text-content p {
        font-size: 14px;
        max-width: 100%;
    }

    button.eip-btn {
        margin-top: 8px;
    }
    .enterprise-slide.active {
        align-items: flex-start;
    }
}