.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;

}

.hero-slide {
    position: relative;
    background-size: contain;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    color: white;
    padding: 20px;
}

.hero-slide .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-slide.text-left .slide-content {
    margin-left: 20px;
    margin-right: auto;
    text-align: left;
}

.hero-slide.text-center .slide-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    top: 130px;
}

.hero-slide.text-right .slide-content {
    margin-left: auto;
    margin-right: 20px;
    text-align: right;
}

.hero-slide .slide-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-slide .slide-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    background-color: rgba(0,0,0,0.5);
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    max-width: 100%;
    word-break: break-word;
}

.hero-slide .slide-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ff5722;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    user-select: none;
    cursor: pointer;
}

.hero-slide .slide-button:hover {
    background-color: #e64a19;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

@media (max-width: 991px) {
    .hero-slide .slide-content {
        max-width: 70%;
        padding: 0 15px;
    }

    .hero-slide .slide-title {
        font-size: 2.2rem;
    }

    .hero-slide .slide-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-slide .slide-content {
        max-width: 90%;
        padding: 0 10px;
    }

    .hero-slide .slide-title {
        font-size: 1.6rem;
    }

    .hero-slide .slide-excerpt {
        font-size: 0.9rem;
    }

    .hero-slide .slide-button {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}
.hero-slide .slide-content.text-left {
    margin-left: 20px;
    margin-right: auto;
    text-align: left;
}

.hero-slide .slide-content.text-center {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    top:120px;
}

.hero-slide .slide-content.text-right {
    margin-left: auto;
    margin-right: 20px;
    text-align: right;
}
