
a{
    text-decoration: none !important;
}
            header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-inline: 3rem;
                box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
                z-index: 9999;
                background: #fff;   
            }
            header .logo {
                text-decoration: none;
                color: #1a237e;
                font-size: 2rem;
                font-weight: 600;
            }
            header nav {
                display: flex;
                align-items: center;
                gap: 2rem;
            }
            header li {
                list-style: none;
                padding-block: 2rem;
            }
            header li a {
                font-size: 1.2rem;
                color: #333;
                text-decoration: none;
            }
            header .drop-menu {
                position: relative;
            }
            header .drop-menu .dropdown {
                position: absolute;
                top: 200%;
                left: -50px;
                height: auto;
                padding: 1rem 3rem;
                background: #fff;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                opacity: 0;
                pointer-events: none;
                transition: .3s;
                 box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
                 width: 200px ;
            }
            header .drop-menu .dropdown a:not(:nth-child(1)) {
                 margin-top: .5rem;
            }
            header .drop-menu:hover .dropdown {
                top: 100%;
                opacity: 1;
                pointer-events: auto;
            }
            .active {
                color: #0d47a1;
                transition: .3s;
            }
            header li a:hover {
                color: #0d47a1;
            }
            .login-btn {
                padding-inline: 2.5rem;
                padding-block: 1rem;
                background: #0d47a1;
                color: #fff;
                border-radius: 30px;
                text-decoration: none;
                font-size: 1.1rem;
                transition: .3s;
            }
            .login-btn:hover{
                background: #1565c0;
                color: #fff !important;
            }
            .bx-menu {
                color: #333;
                font-size: 2rem;
                display: none !important;
            }
            .responsive_nav {
                display: none;
            }
            .responsive_nav .bx-x  {
                position: absolute;
                top: 2rem;
                right: 1.5rem;
                color: #1565c0;
                font-size: 2rem;
            }
            @media (max-width:992px){
                .bx-menu {
                    display: block !important;
                }
                header nav {
                    display: none;
                }
                header {
                    padding-block: 1.5rem;
                }
                .login-btn {
                    display: none;
                }
                .responsive_nav .login-btn {
                    display: block;
                    text-align: center;
                    margin-top: 1.2rem;
                }
                .responsive_nav {
                display: block;
                position: fixed;
                overflow-y: scroll;
                top: 0;
                right: 0;
                height: 100vh;
                left: 0;
                z-index: 99999;
                background: #fff;
                padding: 40px;
                padding-top: 7rem;
                transform: translateX(100%);
                transition: .3s;
                }
                .responsive_nav::-webkit-scrollbar {
                    display: none;
                }
                .responsive_nav.open {
                    transform: translateX(0);
                }
            .responsive_nav li {
                list-style: none;
                width: 100%;
                padding: 10px;
                border-bottom: 1.5px solid #ccc;
            }
            .responsive_nav li a {
                text-decoration: none;
                font-size: 1.1rem;
                color: #333;
            }
            
            .responsive_nav .drop-menu .dropdown {
                padding-top: 1rem;
                padding-left: 2rem;
                padding-bottom: 1rem;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
                display: none;
            }
            .responsive_nav .drop-menu.active .dropdown{
                display: flex;
            }
            }
            @media(max-width:600px){
                .team-row{
                  flex-direction: column;
                }
                header {
                    padding-inline: 1.5rem;
                    padding-block: 1.5rem;
                }
                .team-card-main{
                max-width: 100%;
                width: 100%;
            }
            }
            header .logo img {
                max-width: 120px;
                width: 100%;
            }
            .login-btn:hover{
                transform: translateY(-5%);
            }
            header .logo {
                transition: .2s;
            }
            header .logo:hover{
                transform: translateY(-5%);
            }
            a{
                transition: .2s;
            }
            a:hover{
             transform: translateY(-5%);       
            }
            .right-menu {
                display: flex;
                align-items: center;
                gap: 1rem;
            }
            .right-menu a.notification img {
                max-width: 50px;
                padding-top: .5rem;
            }
            .right-menu a.notification {
                position: relative;
            }
            .right-menu a.notification span {
                position: absolute;
                top: 16px;
                right: 10px;
                width: 13px;
                height: 13px;
                background: red;
                border-radius: 50%;
            }
            .right-menu .bxs-user {
                font-size: 1.5rem;
                display: block;
                text-decoration: none;
                color: #000;
            }
            .right-menu a {
            text-decoration: none;
            }
