.footer-bottom-section {
    width: 100%;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main-title {
    font-size: 2.3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
}

.footer-rights {
    font-size: 0.8em;
    opacity: 0.7;
    margin-bottom: 30px;
    font-weight: 500;
}

.connect-with-us-section { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.connect-label {
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

.footer-custom {
    background: #1c5084;
    color: rgb(255, 255, 255);
    padding: 20px 0;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 1000; 
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
    .footer-main-title {
        font-size: 2em; 
    }
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.animate-fade-in-up.delay-200 {
    animation-delay: 0.2s;
}

.animate-fade-in-up.delay-400 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}