.vs-c9d54fba-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px;
}

.vs-c9d54fba-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.vs-c9d54fba-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    padding: 0 10%;
    box-sizing: border-box;
    z-index: 0;
}

/* Ensure first slide is visible even before JS kicks in */
.vs-c9d54fba-slide:first-child {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Base Effect: Fade */
.vs-effect-fade .vs-c9d54fba-slide {
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Effect: Slide */
.vs-effect-slide .vs-c9d54fba-slide {
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
}
.vs-effect-slide .vs-c9d54fba-slide.vs-c9d54fba-active {
    transform: translateX(0);
}
.vs-effect-slide .vs-c9d54fba-slide.vs-c9d54fba-prev-slide {
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
}

/* Effect: Zoom */
.vs-effect-zoom .vs-c9d54fba-slide {
    transform: scale(1.1);
    transition: transform 0.8s ease, opacity 0.8s ease, visibility 0.8s ease;
}
.vs-effect-zoom .vs-c9d54fba-slide.vs-c9d54fba-active {
    transform: scale(1);
}

/* Effect: Ken Burns */
.vs-effect-ken_burns .vs-c9d54fba-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.vs-effect-ken_burns .vs-c9d54fba-slide.vs-c9d54fba-active {
    opacity: 1;
    visibility: visible;
}
.vs-effect-ken_burns .vs-c9d54fba-slide .vs-c9d54fba-bg {
    transform: scale(1);
    transition: transform 10s linear;
}
.vs-effect-ken_burns .vs-c9d54fba-slide.vs-c9d54fba-active .vs-c9d54fba-bg {
    transform: scale(1.15);
}

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

.vs-c9d54fba-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.vs-c9d54fba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.vs-c9d54fba-content {
    max-width: 600px;
    z-index: 2;
}

.vs-c9d54fba-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.vs-c9d54fba-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: serif;
}

.vs-c9d54fba-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vs-c9d54fba-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vs-c9d54fba-btn-1 {
    background-color: #1b3b36;
    color: #fff;
    border: 1px solid transparent;
}
.vs-c9d54fba-btn-1:hover {
    opacity: 0.9;
}

.vs-c9d54fba-btn-2 {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.vs-c9d54fba-btn-2:hover {
    background-color: rgba(255,255,255,0.1);
}

.vs-c9d54fba-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.vs-c9d54fba-nav button {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-c9d54fba-nav button:hover {
    background: rgba(255,255,255,0.4);
}

@media (max-width: 767px) {
    .vs-c9d54fba-title {
        font-size: 32px;
    }
    .vs-c9d54fba-content {
        padding: 0 20px;
    }
}
