
        :root {
            --maroon: #800000;
            --saffron: #FF9933;
            --muted-gold: #D4A017;
            --ivory: #FFFFF0;
            --grey: #D3D3D3;
        }
        .font-sans { font-family: 'Inter', sans-serif; }
        .font-gurmukhi { font-family: 'Noto Serif Gurmukhi', serif; }
        .footer-section {
            width: 100%;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 4rem 2rem;
            box-sizing: border-box;
            overflow: hidden;
        }
        .footer-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('khanda-pattern.png') repeat;
            background-size: 200px;
            opacity: 0.1;
            z-index: 0;
        }
        .footer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 153, 51, 0.2), transparent);
            z-index: 1;
        }
        .petal-particle {
            position: absolute;
            width: 15px;
            height: 15px;
            background: url('petal.png') no-repeat center;
            background-size: contain;
            opacity: 0;
            z-index: 2;
        }
        .glassmorphic {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 1rem;
            padding: 2rem;
        }
        .footer-content {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        align-items: flex-start;
        color: var(--ivory);
        position: relative;
        z-index: 3;
        }
        .khanda-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .khanda-symbol {
            width: 120px;
            height: 120px;
            opacity: 1;
            transition: filter 0.3s ease, transform 0.3s ease;
        }
        .khanda-symbol:hover {
            filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.7));
            transform: scale(1.1);
        }
        .footer-logo {
            width: 100px;
            opacity: 1;
        }
        .nav-links, .additional-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .nav-links h3, .additional-links h3 {
            color: var(--saffron);
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-family: 'Noto Serif Gurmukhi', serif;
        }
        .nav-links a, .additional-links a {
            color: var(--ivory);
            font-size: 1rem;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-links a:hover, .additional-links a:hover {
            color: var(--saffron);
        }
        .nav-links a::after, .additional-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--saffron);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after, .additional-links a:hover::after {
            width: 100%;
        }
        .social-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .social-icons {
            display: flex;
            justify-content: flex-start;
        }
        .social-icons a {
            color: var(--saffron);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--muted-gold);
            transform: scale(1.2);
        }
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .contact-details p {
            color: var(--grey);
            font-size: 14px;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;
        }
        .contact-details i {
            color: var(--saffron);
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .footer-section {
                padding: 2rem 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: left;
            }
            .khanda-logo {
                margin-bottom: 1rem;
                flex-direction: row;
                gap: 5rem;
            }
            .khanda-symbol {
                width: 60px;
                height: 60px;
            }
            .footer-logo {
                width: 80px;
            }
            .nav-links, .additional-links {
                align-items: flex-start;
            }
            .social-icons {
                justify-content: flex-start;
            }
            .social-icons a {
                font-size: 1.25rem;
            }
            .contact-details p {
                justify-content: flex-start;
                text-align: left;
            }
            #subscribe-form {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }