@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    animation: fadeIn 2s ease-in-out;
}

header {
    background: linear-gradient(90deg, #0078d7, #0056a4);
    color: white;
    padding: 20px;
    text-align: center;
    animation: slideIn 1.5s ease-out;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

.trainer-section img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #0078d7;
    animation: bounceIn 2s ease-in-out;
    object-fit: contain;
    background:#A3C3E9;;
}

.btn-success {
    animation: fadeIn 2.5s ease-in-out, bounceIn 2.5s ease-out;
}

.list-group-item {
    animation: slideIn 1.5s ease-out;
}

.container .row {
    animation: zoomIn 2s ease-in-out;
}

h2 {
    animation: fadeIn 2s ease-in-out;
}

p.lead {
    animation: fadeIn 2.5s ease-in-out;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
    padding-bottom: 20px;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

h2{
    color: #196FBA !important;
}
h3{
    color: #ED3947 !important;
}