/* Hero Slider Indicators Styling */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-indicators .indicator.active {
    width: 32px;
    border-radius: 6px;
    background: #fff;
    border-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .hero-indicators .indicator {
        width: 10px;
        height: 10px;
    }

    .hero-indicators .indicator.active {
        width: 24px;
    }
}