/*=========================================
            NAVBAR
=========================================*/

nav{
    width:100%;
    height:75px;
    background: url(../login/images/background1.png) no-repeat;
    /* background:#0b2d69; */
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.logo{
    text-decoration:none;
    color:#fff;
    font-size:28px;
    font-weight:700;
}
/* 
.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links li{
    list-style:none;
}

.nav-links li a{
    text-decoration:none;
    color:white;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.nav-links li a:hover{
    color:#ffc107;
} */





.navbar a {
    position: relative;
    color: #e4e4e4e4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-right: 30px;
}
.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #e4e4e4e4;
    border-radius: 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: .5s;

}
.navbar a:hover::after {
    transform: translateY(0px);
    opacity: 1;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* Search Box */

.search-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
}

.search-box input{
    border:none;
    outline:none;
    width:220px;
    padding:10px 15px;
    font-size:15px;
}

.search-box button{
    border:none;
    background:#ffc107;
    color:#222;
    width:45px;
    height:42px;
    cursor:pointer;
    transition:.3s;
}

.search-box button:hover{
    background:#ff9800;
}

/* Login Button */

.login-btn{
    text-decoration:none;
    color:#fff;
    border:2px solid #fff;
    padding:10px 25px;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
}

.login-btn:hover{
    background:#fff;
    color:#0b2d69;
}

/*=========================================
            FOOTER
=========================================*/

footer{
    background: url(../login/images/background1.png) no-repeat;
    /* background:#071c45; */
    color:#ddd;
    margin-top:60px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:60px 40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-box p{
    line-height:1.8;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    text-decoration:none;
    color:#ddd;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ffc107;
    padding-left:6px;
}

/* Contact Icons */

.footer-box p i{
    color:#ffc107;
    width:22px;
}

/* Social Icons */

.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0b2d69;
    color:white;
    text-decoration:none;
    margin-right:10px;
    transition:.3s;
}

.social-links a:hover{
    background:#ffc107;
    color:#222;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:20px;
    font-size:15px;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:900px){

    nav{
        flex-direction:column;
        height:auto;
        padding:20px;
    }

    .nav-links{
        margin:20px 0;
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .nav-right{
        width:100%;
        flex-direction:column;
    }

    .search-box{
        width:100%;
    }

    .search-box input{
        width:100%;
    }

    .login-btn{
        width:100%;
        text-align:center;
    }

    .footer-container{
        text-align:center;
    }
    .navbar{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    .navbar a{
        margin:10px;
    }
}