.isa__slider-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: visible;
    padding: 50px 0;
}

.slider {
    display: flex;
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.isa__card {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* transition: opacity 0.2s ease; */
    /* opacity: 0; */
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
}

.isa__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.isa__card.active-isa__card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.isa__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.isa__card-content h3 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
}

.isa__card-content p {
    font-size: 16px;
    opacity: 0.9;
}

.isa__dots-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background-color: var(--e-global-color-a185853);
}

.navigation {
    position: absolute;
    top: 44%;
    width: 24vw;
    left: -9vw;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 20;
}

@media (max-width: 767px) {
    .navigation {
        width: 100vw;
        left: 0;
        transform: translateY(-50%) translateX(-37%);
    }
}

.isa__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    border: none;
    outline: none;

}

.isa__nav-btn:hover {
    background-color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    color: #000 !important;
}

.isa__prev-btn {
    margin-left: 10px;
}

.isa__next-btn {
    margin-right: 10px;
}

.background-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 800 400' preserveAspectRatio='none'%3E%3Cpath d='M0,100 C200,300 400,0 800,200 L800,400 L0,400 Z' fill='%23f5f5f5' fill-opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: -1;
    opacity: 0.2;
}