.main-footer {
    background-color: #020617;
    position: relative;
    margin-top: auto;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2ecc71 50%, transparent 100%);
    opacity: 0.5;
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
}

.footer-links a:hover {
    color: #2ecc71;
    transform: translateX(5px);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .main-footer {
        padding-top: 30px;
    }

    .footer-heading {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .footer-links a:hover {
        transform: translateY(-2px);
    }
}

