/* Use Case Dots Navigation Styling */
.uscase-dots-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.uscase-dots {
    display: flex;
    gap: 1rem;
}


.uscase-arrow {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #444;
    font-size: 1.5rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.uscase-arrow:hover, .uscase-arrow:focus {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(79,140,255,0.25);
    outline: none;
}

.uscase-arrow-left::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.25;
}

.uscase-arrow-right::before {
    content: '';
    position: absolute;
    right: 0.7rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.25;
}
