/* Footer Section styling Web */
.footer-section {
    background-color: #000000;
    color: white;
    padding: 20px 0;
    opacity: 0;
    animation: slideUpFadeIn 0.8s ease-in-out forwards 0.5s;
}

.footer-section img {
    max-width: 200px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-text {
    font-size: 1rem;
    margin-top: 15px;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Section styling Mobile */
@media (max-width: 768px) {
    .footer-section img {
        max-width: 100px;
        height: auto;
    }
}
