*{
    margin: 0;
    padding: 0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    box-sizing: border-box;
}
body{
    background: #ffffff;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
hr{
    margin-left: 350px;
    width: 50%;
}
/* navbar */
nav{
    background: #ffffffa0;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(100px);
    position:sticky;
    top:0;
    z-index:50;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    

}
nav img{
    height: 50px;
    border: 2px solid #000000;
    border-radius: 100px;
}
nav ul{
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 30px;
}
nav ul li{
    list-style: none;
}
nav ul li a {
    position: relative;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    font-weight:500;
    transition: color 0.3s ease, transform 0.3s ease;
}
/* hiddent icon menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
ul a:hover {
    color: #766600;
    transform: translateY(-3px);
}
ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffdb4d;
    transition: width 0.3s ease;
}
ul a:hover::after {
    width: 100%;
}
i{
    color: white;
}
.search-input input{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 20px;
    height: 30px;
    width: 230px;
    outline: none;
}
.input-mail {
    padding: 6px 20px;
    border: none;
}
.fa-solid {
    position: relative;
    right: 40px;
    color: gray;
}

hr{
    margin-top: 50px
}
/* footer */

footer {
    background: #03425d;
    color: white;
    padding: 40px 80px;
    margin-top: 30px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-container .sec h2 {
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}
.footer-container .sec ul {
    list-style: none;
}
.footer-container .sec ul li {
    margin: 8px 0;
}
.footer-container .sec ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}
.footer-container .sec ul li a:hover {
    color: white;
    padding-left: 5px;
}
    /* Subscribe */
.subscribe {
    max-width: 250px;
 }
.subscribe input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    margin-bottom: 10px;
    border-radius: 5px;
}
.subscribe button {
    width: 100%;
    padding: 10px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.subscribe button:hover {
    background: white;
}
    /* Social Media */
.social {
    margin-top: 20px;
    text-align: center;
}
.social a {
    display: inline-block;
    margin: 0 8px;
}
.social a img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.login{
    display: flex;
    gap: 10px;
}
.btn{
    padding: 6px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn1{
    color: rgb(0, 148, 0);
    font-weight: bold;
}
.btn1:hover{
    background: rgb(0, 148, 0);
    color: white;
}
.btn2{
    color: rgb(8, 102, 210);
    font-weight: bold;
}
.btn2:hover{
    background: rgb(8, 102, 210);
    color: white;
}
.floating-cart{
    background: #ebe7e5;
    border-radius: 20px;
    padding: 6px;
    outline: none;
    border: none;
    cursor: pointer;
   
}
.floating-cart span{
    color: white;
    margin-left: 6px;
    background: #ff6b6b;
    padding: 2px 6px;
    border-radius: 20px;
}
@media (max-width:699px) and (min-width:350px){
    nav{
        display: flex;
        justify-content: space-between;
    }
    nav img{
        height: 40px;
    }
    nav ul {
        color: white;
        display: none;
        flex-direction: column;
        backdrop-filter:saturate(160%) blur(2px);
        background:linear-gradient(180deg, rgba(157, 157, 157, 0.578), rgba(28, 41, 74, 0.573));
        border-bottom:1px solid rgba(255,255,255,.06);
        position: absolute;
        top: 60px;
        right: 0px;
        width: 150px;
        padding: 10px;
        border-radius: 10px;
    }
    #menu li a{
        color: white;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle{
        display: block;
    }
    .search{
        display: none;
    }
}
