.elementor-55450 .elementor-element.elementor-element-354fd1c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-58037a2 */@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

.carousel-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    margin: 0 auto;
    font-family: 'Nunito', sans-serif;
}

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 100px;
}

.carousel-card {
    flex-shrink: 0;
    width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.6;
    transform: scale(0.85);
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.carousel-card.active .card-overlay {
    transform: translateY(0);
}

.card-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.6;
}

/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 24px;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

/* Dots Navigation */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}

.carousel-card.active .play-button {
    opacity: 1;
    pointer-events: all;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

/* Header Info */
.info-section {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-card.active .info-section {
    opacity: 1;
}

.info-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.info-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-wrapper {
        padding: 0 80px;
    }
    
    .carousel-card {
        width: 240px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 60px;
        gap: 5px;
    }

    .carousel-card {
        width: 200px;
        height: 300px;
    }

    .carousel-card.active {
        transform: scale(1.1);
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        width: 150px;
        height: 250px;
    }

    .carousel-wrapper {
        gap: 3px;
        padding: 0 40px;
    }
}/* End custom CSS */