.hero-slideshow-wrapper-61ed19f1 {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: transparent !important;
    overflow: hidden;
}

.hero-slide-61ed19f1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
    padding: 20px 5%;
}

.hero-slide-61ed19f1.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-content-61ed19f1 {
    max-width: 800px;
    width: 100%;
}

.hero-slide-heading-61ed19f1 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-slide-text-61ed19f1 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 650px;
}

.hero-slide-btn-61ed19f1 {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background: linear-gradient(90deg, #fe5f15 0%, #f38a00 100%);
    color: #fff;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 95, 21, 0.3);
}

.hero-slide-btn-61ed19f1:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 95, 21, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-slide-heading-61ed19f1 {
        font-size: 2.5rem;
    }
    .hero-slide-text-61ed19f1 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-slide-heading-61ed19f1 {
        font-size: 2rem;
    }
    .hero-slide-text-61ed19f1 {
        font-size: 1rem;
    }
    .hero-slideshow-wrapper-61ed19f1 {
        min-height: 70vh;
    }
}