.vlead-footer {
            background: rgba(10, 15, 35, 0.95);
            border-top: 2px solid #00dbde;
            box-shadow: 0 -10px 30px rgba(0, 219, 222, 0.2);
            padding: 35px 5% 5px;
            position: relative;
            overflow: hidden;
            animation: footerEntrance 1s ease-out;
        }
        
        /* Animated background elements */
        .vlead-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }
        
        .vlead-footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(0, 219, 222, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(252, 0, 255, 0.05) 0%, transparent 50%);
            z-index: 0;
            animation: pulse 10s infinite alternate;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 10px;
            padding: 0 20px;
            animation: columnSlideUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.3s; }
        .footer-column:nth-child(3) { animation-delay: 0.5s; }
        .footer-column:nth-child(4) { animation-delay: 0.7s; }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: #ffffff;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #fdb907;
            border-radius: 2px;
            transition: width 0.5s ease;
        }
        
        .footer-column:hover h3::after {
            width: 100px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
            transform: translateX(0);
            transition: transform 0.3s ease;
            font-size: 13px;
        }
        
        .footer-links li:hover {
            transform: translateX(10px);
        }
        
        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: #fdb904;
        }
        
        .footer-links i {
            margin-right: 12px;
            font-size: 13px;
            width: 25px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover i {
            transform: scale(1.3);
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #ffffff;
            font-size: 13px;
        }
        
        .contact-info i {
            margin-right: 0px;
            color: #feba02;
            font-size: font-size: 13px;;
            min-width: 25px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: #b8c1ec;
            font-size: 1.3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.7s ease;
        }
        
        .social-icons a:hover::before {
            left: 100%;
        }
        
        .social-icons a:hover {
            color: #00dbde;
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 219, 222, 0.3);
            background: rgba(10, 15, 35, 0.9);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 10px;
            margin-top: 0px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8a8fb5;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            animation: fadeIn 2s ease-out 1s forwards;
            opacity: 0;
        }
        
        .footer-bottom p {
            margin-bottom: 10px;
            color: #fff;
        }
        
        .copyright {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .heart {
            color: #ff4757;
            margin: 0 8px;
            animation: heartbeat 1.5s infinite;
        }
        
        /* Animations */
        @keyframes footerEntrance {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes columnSlideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        @keyframes pulse {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        @keyframes textGlow {
            0% { filter: drop-shadow(0 0 5px rgba(0, 219, 222, 0.5)); }
            100% { filter: drop-shadow(0 0 15px rgba(252, 0, 255, 0.7)); }
        }
        
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-column {
                min-width: 220px;
            }
        }
        
        @media (max-width: 992px) {
            .footer-column {
                flex: 0 0 50%;
                min-width: 50%;
            }
            
            .footer-column:nth-child(3) { animation-delay: 0.3s; }
            .footer-column:nth-child(4) { animation-delay: 0.5s; }
        }
        
        @media (max-width: 768px) {
            .vlead-footer {
                padding: 50px 5% 25px;
            }
            
            .footer-column {
                flex: 0 0 100%;
                min-width: 100%;
                padding: 0 10px;
            }
            
            .footer-column:nth-child(2) { animation-delay: 0.2s; }
            .footer-column:nth-child(3) { animation-delay: 0.4s; }
            .footer-column:nth-child(4) { animation-delay: 0.6s; }
            
            .social-icons {
                justify-content: center;
            }
            
            .content h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .vlead-footer {
                padding: 40px 5% 20px;
            }
            
            .footer-column h3 {
                font-size: 1.3rem;
            }
            
            .footer-links a {
                font-size: 0.7rem;
            }
            
            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .content h1 {
                font-size: 1.8rem;
            }
        }
        
        
        
        
        
        
        
        
        
     @media only screen and (max-width: 600px) {   
        
        
        .footer-links li {
  margin-bottom: 3px;
  transform: translateX(0);
  transition: transform 0.3s ease;
  font-size: 13px;
}
     }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        