﻿body {
    scroll-behavior: smooth;
}

html, body { max-width: 100%; overflow-x: hidden; }

a:hover {
    transition: all 0.2s ease;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

img.w-72.mx-auto {
    border-radius: 35px;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fade-in 0.3s ease-out forwards;
}

@keyframes pulse-dot {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,99,235,0.6); }
70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37,99,235,0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.dot { animation: pulse-dot 2s infinite; }
