.dccc-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    animation: spin 30s linear infinite;
    position: relative;
    width: 100%;
    height: 400px;
}

.dccc-card {
    width: 250px;
    height: 320px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #fff;
    text-align: center;
    transform-origin: center center -500px;
    transition: transform 0.5s ease;
}

.dccc-card img {
    width: 100%;
    height: auto;
    display: block;
}

.dccc-card h3 {
    margin: 15px 0;
    font-size: 1.4em;
    color: #333;
}

.dccc-btn {
    display: inline-block;
    margin: 10px 0 15px;
    padding: 10px 20px;
    background-color: #0077cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.dccc-btn:hover {
    background-color: #005fa3;
}

@keyframes spin {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
