/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header */
header h1 {
    font-size: 2em;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

header p {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.4s;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

/* Service */
.service {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.8s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.service h3 {
    font-size: 1.2em;
    margin: 15px 0;
    color: #0056b3;
}

/* Stats Section */
.stats {
    background: #091479;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.stats .stat {
    display: inline-block;
    margin: 0 20px;
}

.stats .stat h2 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.stats .stat p {
    font-size: 1em;
}
