 /* Footer Styles */
        .rvk-footer {
            background-color: #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .rvk-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1.5fr;
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        /* Logo Section */
        .rvk-footer-logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .rvk-footer-logo {
            width: 120px;
            height: auto;
            margin-bottom: 1.5rem;
        }

        .rvk-footer-tagline {
            font-style: italic;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 2rem;
        }

        .rvk-footer-social {
            display: flex;
            gap: 1rem;
        }

        .rvk-footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 50%;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .rvk-footer-social a:hover {
            background: #f16202;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Footer Columns */
        .rvk-footer-column h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .rvk-footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #f59e0b;
        }

        .rvk-footer-links {
            list-style: none;
        }

        .rvk-footer-links li {
            margin-bottom: 0.75rem;
        }

        .rvk-footer-links a {
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.95rem;
        }

        .rvk-footer-links a::before {
            content: '- ';
            color: #f59e0b;
            font-weight: bold;
        }

        .rvk-footer-links a:hover {
            color: #f16202;
            transform: translateX(5px);
        }

        /* Contact Section */
        .rvk-footer-contact {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .rvk-footer-contact-item {
            margin-bottom: 1rem;
        }

        .rvk-footer-contact-item strong {
            color: #333;
        }

        .rvk-footer-contact a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .rvk-footer-contact a:hover {
            color: #f16202;
        }

        /* Bottom Illustration */
        .rvk-footer-illustration {
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, transparent 0%, #f16202 50%);
            position: relative;
            overflow: hidden;
        }

        .rvk-footer-silhouette {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: url('/assets/rashtrotthan1.png.jpeg') center top no-repeat;
            background-size: cover;
        }

        /* Copyright Bar */
        .rvk-footer-bottom {
            background: #860500;
            color: white;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .rvk-footer-copyright {
            font-size: 0.9rem;
        }

        .rvk-footer-copyright a {
            color: #fbbf24;
            text-decoration: none;
            font-weight: 500;
        }

        .rvk-footer-copyright a:hover {
            text-decoration: underline;
        }

        .rvk-footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .rvk-footer-bottom-links a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .rvk-footer-bottom-links a:hover {
            color: #fbbf24;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .rvk-footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .rvk-footer-content {
                grid-template-columns: 1fr;
                padding: 3rem 1.5rem 2rem;
                gap: 2rem;
            }

            .rvk-footer-logo-section {
                align-items: center;
                text-align: center;
            }

            .rvk-footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .rvk-footer-bottom {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1rem;
            }

            .rvk-footer-bottom-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .rvk-footer-illustration {
                height: 120px;
            }
        }

        /* Animation */
        @keyframes rvkFadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .rvk-footer-column {
            animation: rvkFadeInUp 0.6s ease-out backwards;
        }

        .rvk-footer-column:nth-child(1) { animation-delay: 0.1s; }
        .rvk-footer-column:nth-child(2) { animation-delay: 0.2s; }
        .rvk-footer-column:nth-child(3) { animation-delay: 0.3s; }
        .rvk-footer-column:nth-child(4) { animation-delay: 0.4s; }