/* ==== Global Reset for Fullpage Snap ==== */

.snap-scroll-wrapper {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}
.snap-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ==== Pagination Dots ==== */
.snap-dots {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.snap-dots li {
    background-color: var(--dot-color, #cccccc);
    margin: 10px 0;
    width: 8px; /* Default size — overridden by Elementor controls */
    height: 8px;
    border-radius: 50%;
    list-style: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.snap-dots li.active {
    background-color: var(--dot-active-color, #ffcc00);
    transform: scale(1.3);
}
