 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            background: #f8f9ff;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
            opacity: 0.3;
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        /* Main Footer Section */
        .footer-main {
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .footer-logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
        }

        .footer-logo:hover .footer-logo-icon::before {
            top: -100%;
            left: -100%;
        }

        .footer-logo:hover .footer-logo-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .footer-brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .footer-tagline {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            margin-top: 5px;
        }

        .footer-description {
            color: rgba(255,255,255,0.7);
            margin: 20px 0;
            line-height: 1.8;
        }

        /* Footer Columns */
        .footer-column h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            position: relative;
            padding-left: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 8px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-10px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links a:hover {
            color: #667eea;
            padding-left: 25px;
            transform: translateX(5px);
        }

        /* Contact Info */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(5px);
        }

        .contact-info-icon {
            width: 45px;
            height: 45px;
            background: rgba(102, 126, 234, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            margin-right: 15px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .contact-info-item:hover .contact-info-icon {
            background: #667eea;
            color: white;
            transform: scale(1.1);
        }

        .contact-info-content h6 {
            color: white;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .contact-info-content span {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        /* Newsletter Section */
        .newsletter-form-footer {
            margin-top: 20px;
        }

        .newsletter-input-group-footer {
            position: relative;
            margin-bottom: 15px;
        }

        .newsletter-input-footer {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            border-radius: 50px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input-footer::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-input-footer:focus {
            border-color: #667eea;
            background: rgba(255,255,255,0.1);
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        }

        .newsletter-btn-footer {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .newsletter-btn-footer:hover::before {
            left: 100%;
        }

        .newsletter-btn-footer:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* Social Media Links */
        .social-media-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .social-link:hover::before {
            transform: scale(1);
        }

        .social-link:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .social-link i {
            position: relative;
            z-index: 2;
        }

        /* Bottom Footer */
        .footer-bottom {
            padding: 30px 0;
            background: rgba(0,0,0,0.3);
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-bottom-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s ease;
        }

        .footer-bottom-links a:hover::after {
            width: 100%;
        }

        .footer-bottom-links a:hover {
            color: #667eea;
        }

        /* Animations */
        .footer {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-main {
                padding: 40px 0 30px;
            }
            
            .footer-column {
                margin-bottom: 40px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
                gap: 20px;
            }
            
            .social-media-links {
                justify-content: center;
            }
            
            .footer-logo {
                justify-content: center;
                text-align: center;
            }
            
            .footer-description {
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .footer-logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            
            .footer-brand-name {
                font-size: 1.5rem;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
            }
            
            .contact-info-icon {
                width: 40px;
                height: 40px;
            }
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Demo content for testing */
        .demo-content {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }