 .anarva-webfooter-main {
            background-color: #000000;
            color: #ffffff;
            padding: 60px 20px 20px;
            margin-top: auto;
        }

        .anarva-webfooter-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .anarva-webfooter-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .anarva-webfooter-section {
            display: flex;
            flex-direction: column;
        }

        .anarva-webfooter-logo-section {
            grid-column: span 1;
        }

        .anarva-webfooter-logo {
            width: 180px;
            height: auto;
            margin-bottom: 20px;
            /*background-color: #ffffff;*/
            padding: 15px;
            border-radius: 8px;
        }

        .anarva-webfooter-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
            padding-bottom: 10px;
        }

        .anarva-webfooter-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #ffffffff;
        }

        .anarva-webfooter-list {
            list-style: none;
        }

        .anarva-webfooter-list-item {
            margin-bottom: 12px;
        }

        .anarva-webfooter-link {
            color: #cccccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 15px;
            margin-left: -30px;        }

        .anarva-webfooter-link:hover {
            color: #ffffffff;
            padding-left: 5px;
        }

        .anarva-webfooter-social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .anarva-webfooter-social-icon {
            width: 45px;
            height: 45px;
            background-color: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none !important;
            transition: all 0.3s ease;
            font-size: 20px;
        }

       

        .anarva-webfooter-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333333;
            color: #999999;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .anarva-webfooter-content {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
            }

            .anarva-webfooter-main {
                padding: 40px 15px 20px;
            }

            .anarva-webfooter-logo {
                width: 150px;
            }

            .anarva-webfooter-title {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .anarva-webfooter-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .anarva-webfooter-logo-section {
                text-align: center;
            }

            .anarva-webfooter-logo {
                margin: 0 auto 20px;
            }

            .anarva-webfooter-title{
                left: 40%;
                transform: translateX(-50%, 50%);
            }
            .anarva-webfooter-title::after {
                left: 2%;
                transform: translateX(-50%, 50%);
            }

            .anarva-webfooter-list {
                text-align: center;
            }

            .anarva-webfooter-social-links {
                justify-content: center;
            }

            .anarva-webfooter-copyright {
                font-size: 13px;
                line-height: 1.6;
            }
        }