.section-title {
    /* text-align: center; */
    font-size: 3em;
    margin-bottom: 1.5em;
    color: #000;
    font-weight: bold;
}

.carousel-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    margin-top: 20px;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    min-height: 250px;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    border: 3px solid;
    padding: 30px;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.carousel-card:nth-child(3n+1) { border-color: #FFB800; }
.carousel-card:nth-child(3n+2) { border-color: #FF4081; }
.carousel-card:nth-child(3n+3) { border-color: #4CAF50; }

.carousel-card h3 {
    font-size: 2em;
    color: #000;
    margin: 0;
    font-weight: bold;
    text-align: left;
}

.carousel-card .client-image {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.carousel-card .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #f5f5f5;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-card {
        min-width: 280px;
        padding: 25px;
    }
    
    .carousel-card h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5em;
    }
    
    .carousel-card {
        min-width: 250px;
        padding: 20px;
    }
    
    .carousel-card h3 {
        font-size: 1.6em;
    }
    
    .carousel-card .client-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-card {
        min-width: 220px;
        padding: 15px;
    }
    
    .carousel-card h3 {
        font-size: 1.4em;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2em;
        margin-bottom: 1em;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .carousel-card {
        min-width: 200px;
    }
    
    .carousel-card .client-image {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
}