/* Scroll Indicator Styles */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ECF0F1;
    font-size: 0.9rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 99;
    cursor: pointer;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #ECF0F1;
    border-bottom: 2px solid #ECF0F1;
    transform: rotate(45deg) translateY(-2px);
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hide scroll indicator when scrolled down */
.scroll-indicator.hidden {
    opacity: 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
        left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .scroll-indicator {
        bottom: 15px;
        left: 15px;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
}