.cv-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 40px auto;
    border-top: 4px solid #007c3e;
    border-bottom: 4px solid #007c3e;
    padding: 20px 0;
    background: linear-gradient(to right, #f0f0f0, #ffffff);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.cv-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0 20px;
}
.cv-slide {
    flex: 0 0 auto;
    width: 220px;
    scroll-snap-align: start;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.cv-slide:hover {
    transform: scale(1.05);
}
.cv-slide img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cv-slide h4 {
    margin: 10px;
    font-size: 16px;
    color: #007c3e;
    font-weight: 600;
}
.cv-carousel-nav {
    text-align: center;
    margin-top: 20px;
}
.cv-carousel-nav button {
    background: #007c3e;
    color: white;
    border: none;
    padding: 12px 16px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s;
}
.cv-carousel-nav button:hover {
    background: #005a2a;
}
