
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-color: #6a0572; 
            /* --primary-color:#0D4A59;  */
            --secondary-color: #f7b731;
            --accent-color-1: #38b2ac; 
            --accent-color-2: #ef476f; 
            --text-dark: #333;
            --text-light: #f9f9f9;
            --background-light: #ffffff;
            --background-dark: #2c3e50;

            --font-family-body: 'Poppins', sans-serif;
            --font-family-heading: 'Fredoka One', cursive;

            --border-radius-lg: 15px;
            --border-radius-md: 10px;
            --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }
        /* Footer Styles */
        .main-footer {
            background: linear-gradient(135deg, var(--primary-color) 0%, #8a2be2 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            padding: 4rem 0 2rem;
        }

        .footer-waves {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%236a0572'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        
        .footer-brand {
            position: relative;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            text-decoration: none;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(247, 183, 49, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .footer-logo-text {
            font-family: var(--font-family-heading);
            font-size: 2rem;
            color: var(--text-light);
        }

        .footer-tagline {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        
        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 10px 25px rgba(247, 183, 49, 0.4);
        }

        
        .footer-section h3 {
            font-family: var(--font-family-heading);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--accent-color-2);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem 0;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* Contact Info with Icons */
        .contact-info {
            list-style: none;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-md);
            transition: all 0.3s ease;
        }

        .contact-info li:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .contact-info i {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        /* Newsletter Section */
        .newsletter {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius-lg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: var(--border-radius-md);
            background: rgba(255, 255, 255, 0.9);
            font-family: var(--font-family-body);
            font-size: 0.9rem;
        }

        .newsletter-input:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 2px var(--secondary-color);
        }

        .newsletter-btn {
            padding: 0.8rem 1.5rem;
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: var(--border-radius-md);
            font-family: var(--font-family-body);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--accent-color-2);
            color: white;
            transform: translateY(-2px);
        }

        /* Interactive Bottom Bar */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright {
            opacity: 0.8;
        }

        .footer-extra-links {
            display: flex;
            gap: 2rem;
        }

        .footer-extra-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-extra-links a:hover {
            color: var(--secondary-color);
        }

        
        .achievement-badges {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .badge i {
            color: var(--secondary-color);
        }

        
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 0 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-extra-links {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .social-links {
                justify-content: center;
            }

            .achievement-badges {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .footer-logo-text {
                font-size: 1.5rem;
            }

            .footer-section h3 {
                font-size: 1.2rem;
            }

            .contact-info li {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatAround 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            width: 30px;
            height: 30px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 20px;
            height: 20px;
            top: 60%;
            left: 80%;
            animation-delay: -5s;
        }

        .floating-element:nth-child(3) {
            width: 25px;
            height: 25px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes floatAround {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, 50px) rotate(90deg); }
            50% { transform: translate(100px, 0) rotate(180deg); }
            75% { transform: translate(50px, -50px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
    