﻿.custom-footer {
    background: linear-gradient(135deg, #fffde7, #e3f2fd, #fff9c4);
    /* Dark Pink → Light Pink */
    color: #fff0f6; /* soft pinkish white text */
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeInUp 1.5s ease;
}

.footer-container {
    flex: 1 1 250px;
    margin: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-column {
    flex: 1 1 250px;
    margin: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .footer-column:hover {
        transform: translateY(-8px);
        opacity: 0.9;
    }

.footer-company-name {
    font-size: 22px;
    margin: 10px 0;
    font-weight: bold;
    color: #ffeb3b;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333333; /* dark text for light footer */
    background: rgba(255, 255, 255, 0.6); /* soft light background */
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    list-style: none;
    padding: 0;
}


.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin: 8px 0;
    }

    .footer-links a {
        text-decoration: none;
        color: #ffe6f0;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #ffeb3b;
        }

.footer-logo-animated {
    height: 80px;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
}

    .footer-bottom a {
        color: #ffeb3b;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}
