 /* start footer css*/
        .footer-section {
            /* background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px); */
            background: #60515C;
            color: #ffff;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffff;
            display: inline-block;
            padding-bottom: 5px;
        }

        .footer-links li {
            margin-bottom: 6px;
        }

        .footer-links a {
            text-decoration: none;
            color: #ffffff;
            font-size: 14px;
        }

        .footer-links a:hover {
            text-decoration: underline;
            color:#0040ff;
        }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 8px;
        flex-wrap:wrap;
            overflow-x: auto;
        }

        .social-icons a {
            height: 40px;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #FC602A;
            color: white;
            border-radius: 50%;
            font-size: 14px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .social-icons a:hover {
            background: #0040ff;
        }

        .gmail {
            margin-top: 15px;
        }

        .gmail .btn {
            background: #FC602A;
            border: none;
        }

        .gmail .btn:hover {
            background: #0141ff;
        }

        .copyright {
            font-size: 14px;
            color: #ffffff;
        }

        @media (max-width:768px) {
            .footer-title {
                font-size: 16px;
            }

            .footer-links a {
                font-size: 13px;
            }
        }
        /* end Footer css */
