       html { scroll-behavior: smooth; }
        
        /* Navbar Styles */
        .navbar {
            background-color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #0c0c0c;
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 1.6rem;
            text-decoration: none;
            color: #2861ff;
            font-weight: bold;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #2861ff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active {
            transform: rotate(180deg);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .navbar-menu {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        .navbar-menu a {
            color: #2861ff;
            text-decoration: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-menu a:hover {
            color: #2861ff;
        }

        .navbar-menu a:hover svg {
            fill: #2861ff;
        }

        /* Auth Links Styles */
        .auth-links {
            display: flex;
            gap: 1rem;
        }

        .auth-links a {
              color: #0f47e0;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex
;
    align-items: center;
    flex-direction: column;
    transition: color 0.3s ease;
        }

        .auth-links a:hover {
            color: #0a3ecf;
        }

        .auth-links a:hover svg {
            fill: #043edd;
        }

        /* SVG Icon Styles */
        .nav-icon {
            width: 20px;
            height: 20px;
            fill: #2861ff;
            transition: fill 0.3s ease;
        }

        .auth-links .nav-icon {
            fill: #2861ff;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .navbar-menu {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 10%;
                left: -100%;
                background: #fff;
                width: 50%;
                height: 100vh;
                padding: 3rem 1rem;
                transition: left 0.4s ease-in-out;
                box-shadow: 0px 25px 29px rgba(0, 0, 0, 0.3);
            }

            .navbar-menu.show {
                left: 0;
            }

            .navbar-menu a {
                color: #2861ff;
            }

            .navbar-menu a:hover {
                color: #0639c5;
            }

            .navbar-menu .nav-icon {
                fill: white;
            }

            .auth-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .auth-links a {
                color: #2861ff;
                    border-radius: 4px;
    color: #2861ff;
    text-decoration: none;
    font-size: 1rem;
    display: flex
;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    background-color: #ffffff;
    padding: 4px 14px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 70%;
            }

            .auth-links .nav-icon {
                fill: #2861ff;
            }
        }
        
        
         @media (min-width: 480px) {
             
             
             .auth-links a {
                color: #2861ff;
                    border-radius: 4px;
    color: #2861ff;
    text-decoration: none;
    font-size: 1rem;
    display: flex
;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    background-color: #ffffff;
    padding: 4px 14px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 70%;
            }
             
         }
         
         
         
         
         /*footer */
         
           /* footer design 1.1 */
        /*Footer*/

        .footer_container {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #373737;
            background-color: #ffffff;
            padding-top: 60px;
        }

        .footer_aw_logo img {
              width: 57px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
        }

        .footer_info,
        .footer_quick_link,
        .footer_support {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-direction: column;
            width: 30%;
            /*height: 170px;*/
            margin-top: 20px;
            padding: 10px 0px;
            font-family: math;
        }

        .footer_container a {
            text-decoration: none;
            color: #6f6f6f;
            margin: 5px 5px;
        }

        .footer_container span {
            margin: 10px 10px;

        }

        .footer_container b {
            font-family: sans-serif;
            font-size: 21px;
            margin: 10px;
        }

        /* For screens smaller than 600px (typical mobile devices) */
        @media only screen and (max-width: 600px) {
            .footer_container {
                flex-direction: column;
                align-items: flex-start;
            }

            .policy_a {

                font-size: 11px;
            }

            .footer_info,
            .footer_quick_link,
            .footer_support {
                width: 97%;
                margin-top: 10px;
                margin-left: 3%;
                align-items: baseline;
            }

            .footer_info {
                /* text-align: center; */
            }

            .footer_quick_link,
            .footer_support {
                text-align: left;
            }
        }

        /* (typical laptops and tablets) */
        @media only screen and (min-width: 600px) and (max-width: 1024px) {

            .footer_info,
            .footer_quick_link,
            .footer_support {
                width: 50%;
            }
        }

        /*  (typical desktop screens) */
        @media only screen and (min-width: 1024px) {

            .footer_info,
            .footer_quick_link,
            .footer_support {
                width: 30%;
            }
        }



        .direction {
            /*width:300px;*/
            display: flex;
            align-items: center;
            justify-content: center;


        }

        .important {
            height: 43vh;
            width: 100%;
            display: flex;
            align-items: center;
            flex-direction: column;
            margin: 0px auto;
            Padding-top: 20px;
            padding-bottom: 10px;
            color: #7f7f7f;
            background-color: #ffffff;
        }

        .location {
            width: 90%;
            font-size: 15px;
            display: block;
            margin: 20px auto;

        }

        .complaints {
            width: 90%;
            font-size: 15px;
            display: block;
            margin: 20px auto;
        }

        .policy_a {
            text-decoration: none;
            color: #2860ff;
            font-size: 14px;
            margin: 6px;
        }

        .policy {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            ;
        }


        #f {
            fill: rgb(5, 105, 255);

        }

        #wh {
            fill: rgb(5, 255, 18);
        }

        #ins {
            fill: rgb(255, 20, 130);

        }

        #tw {
            fill: rgb(5, 218, 255);
        }

        svg:hover {
            /* width: 30px; */
            /* height: 30px; */

            cursor: pointer;
        }

        #f:hover,
        #wh:hover,
        #ins:hover,
        #tw :hover {
            fill: #a1a1a1;

        }

        #f {
            width: 30px;
            height: 30px;
            margin: 10px;
        }

        #wh {
            width: 30px;
            height: 30px;
            margin: 10px;
        }

        #ins {
            width: 30px;
            height: 30px;
            margin: 10px;
        }

        #tw {
            width: 30px;
            height: 30px;
            margin: 10px;
        }


        #f {
            fill: rgb(5, 105, 255);

        }

        #wh {
            fill: rgb(5, 255, 18);
        }

        #ins {
            fill: rgb(255, 20, 130);

}
