#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Loader content */
.loader-content {
    text-align: center;
}

.loader-content img {
    width: 120px;
    margin-bottom: 20px;
}

/* Animated dots */
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    background: #005e7a;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 0.6s infinite alternate;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
        opacity: 0.6;
    }
    to {
        transform: translateY(-10px);
        opacity: 1;
    }
}