/* Slider Container */
.swiper-container-eb77a609 {
    position: relative;
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}

/* Card Styling */
.fs-card-eb77a609 {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
}

/* Background Image with Zoom */
.fs-bg-eb77a609 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.fs-card-eb77a609:hover .fs-bg-eb77a609 {
    transform: scale(1.1);
}

/* Overlay */
.fs-overlay-eb77a609 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

/* Content Container */
.fs-content-eb77a609 {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.fs-title-eb77a609 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.4s ease;
}

/* Hover Details (Description & Lists) */
.fs-details-eb77a609 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
}

.fs-card-eb77a609:hover .fs-details-eb77a609 {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

.fs-desc-eb77a609 {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Features List */
.fs-list-eb77a609 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fs-list-eb77a609 li {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    gap: 10px;
}

.fs-icon-wrapper-eb77a609 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.fs-icon-tick-eb77a609,
.fs-icon-cross-eb77a609 {
    width: 100%;
    height: 100%;
}

.fs-excluded-eb77a609 {
    opacity: 0.7;
}

/* Pagination Positioning Options */
.swiper-pagination-eb77a609 {
    position: absolute;
}

.fs-pagination-pos-bottom-center .swiper-pagination-eb77a609 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.fs-pagination-pos-bottom-right .swiper-pagination-eb77a609 {
    bottom: 0;
    right: 0;
    left: auto;
    text-align: right;
    padding-right: 10px;
}

.fs-pagination-pos-bottom-left .swiper-pagination-eb77a609 {
    bottom: 0;
    left: 0;
    text-align: left;
    padding-left: 10px;
}

.fs-pagination-pos-top-right .swiper-pagination-eb77a609 {
    top: -30px;
    right: 0;
    left: auto;
    bottom: auto;
    text-align: right;
}
