  .footer-neo {
        margin-top: 0;
        color: #000000;
        font-family: "Poppins", sans-serif;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #adacac, #dad8d8);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-neo .container {
        position: relative;
        z-index: 2;
        padding: 60px 20px 25px;
    }

    /* Decorative Glow */
    .footer-neo::before {
        content: "";
        position: absolute;
        top: -120px;
        left: -120px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(0, 123, 255, 0.25), transparent 70%);
        border-radius: 50%;
        filter: blur(90px);
        z-index: 0;
    }

    .footer-neo::after {
        content: "";
        position: absolute;
        bottom: -120px;
        right: -120px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(255, 0, 123, 0.25), transparent 70%);
        border-radius: 50%;
        filter: blur(90px);
        z-index: 0;
    }

    /* Logo */
    .footer-neo .footer-logo img {
        max-height: 42px;
        margin-bottom: 20px;
        /*filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));*/
        /*transition: transform 0.3s ease;*/
    }

    
    /* Social Icons */
    .footer-neo .footer-social a {
        color: #337cfa;
        margin-right: 14px;
        font-size: 1.9rem;
        transition: all 0.3s ease;
        padding: 10px;
        border-radius: 50%;
        
    }

    .footer-neo .footer-social a:hover {
        color: #0d6efd;
        
        transform: translateY(-4px);
    }

    /* Quick Links */
    .footer-neo h5 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 18px;
        position: relative;
    }

    .footer-neo h5::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: #0d6efd;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .quick-links {
        display: flex;
        justify-content: center;
        gap: 18px;
        list-style: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
    }

    .quick-links li {
        display: inline-block;
    }

    .quick-links .nav-link {
        color: rgba(0, 0, 0, 0.9) !important;
        font-size: 0.95rem;
        font-weight: 500;
        transition: 0.3s;
    }

    .quick-links .nav-link:hover {
        color: #0d6efd !important;
        text-shadow: 0 0 10px #0d6efd;
    }

    /* Contact Card */
    .footer-neo .contact-card {
        padding: 22px;
        width: 360px;
        margin: 0 auto;
        margin-top: -20px;
        border-radius: 14px;
      
    }

  

    .footer-neo .contact-card h5 {
        font-size: 1.1rem;
        margin-bottom: 14px;
        color: #000000;
    }

    .footer-neo .contact-card p {
        font-size: 0.95rem;
        margin: 10px 0;
        color: #000000;
        display: flex;
        align-items: center;
    }

    .footer-neo .contact-card i {
        color: #0d6efd;
        margin-right: 10px;
        font-size: 1.05rem;
    }

    /* Powered by */
    .footer-neo .powered-by {
        font-size: 1.2rem;
        margin-top: 14px;
        color: rgba(0, 0, 0, 10.7);
    }

    .footer-neo .powered-by img {
        height: 50px;
        margin-left: 8px;
        vertical-align: middle;
        background: #000000;
        border-radius: 6px;
        padding: 3px 6px;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        .footer-neo .contact-card {
            width: 100%;
            margin-top: 20px;
        }
    }

    @media (max-width: 767px) {
        .footer-neo .container {
            padding: 40px 15px;
        }

        .footer-neo h5 {
            font-size: 1.05rem;
        }

        .quick-links {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .footer-neo .contact-card {
            padding: 18px;
        }
    }