/* Professional Carousel Widget Styles */
* {
    box-sizing: border-box;
}

.professional-carousel-container {
    width: 100%;
    max-width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.circle-container {
    position: relative;
    margin-bottom: 20px;
    width: 200px;
    height: 200px;
}

.main-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.arc {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    border-color: transparent;
    pointer-events: none;
}

.arc-1 {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    animation: rotate 4s linear infinite;
}

.arc-2 {
    width: 118%;
    height: 118%;
    top: -9%;
    left: -9%;
    animation: rotate 6s linear infinite reverse;
}

.category-content {
    text-align: center;
}

.category-content a {
    text-decoration: none;
    color: inherit;
}

.category-name {
    color: #334155;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.category-desc {
    color: #64748b;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
}

.category:hover .main-circle {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category:hover .circle-image {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.2);
}

.category:hover .category-desc {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #334155;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    outline: none;
}

.nav-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev { left: 20px; }
.nav-btn.next { right: 20px; }

/* Responsive Design */
@media (max-width: 1024px) {
    .professional-carousel-container { height: 450px; }
    .circle-container { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
    .professional-carousel-container { height: 400px; }
    .circle-container { width: 140px; height: 140px; }
    .nav-btn { width: 50px; height: 50px; font-size: 1.2rem; }
    .nav-btn.prev { left: 10px; }
    .nav-btn.next { right: 10px; }
}

@media (max-width: 480px) {
    .professional-carousel-container { height: 350px; }
    .circle-container { width: 120px; height: 120px; margin-bottom: 15px; }
    .nav-btn { width: 45px; height: 45px; font-size: 1.1rem; }
}