html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.shimmer-effect {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .mobile-menu-open {
        display: flex !important;
    }
}

.leading-tight {
    font-size: 15px !important;
}

/*about*/
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }