* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: 0.5s
}

.logo img {
    width: 250px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    padding: 10px;
    font-family: 'Inter', sans-serif;
	
}

.nav-links a:hover {
    color: #1a73e8;
}

.nav-links button {
    background-color: rgba(44, 119, 211, 1);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

.btn {
    background-color: rgba(44, 119, 211, 1);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 5px;
    font-size: 1.2rem;
    position: absolute;
    right: 60px;
    display: none;

}

.btn a {
    color: white;
    text-decoration: none;
}





@media screen and (max-width:1550px) {
    .nav-links a {
        font-size: 18px
    }
}

@media screen and (max-width:1024px) {
    .btn {
        display: block;
    }
}

@media screen and (max-width:425px) {
    .logo img {
        width: 180px
    }

    .btn {
        padding: 7px;
        font-size: 12px;
    }
}

@media screen and (max-width:375px) {
    .btn a {
        padding: 5px;
        font-size: 14px;
    }

    .navbar {
        padding: 12px 5px;
    }

    .btn {
        position: relative;
        left: 10px
    }
}

@media screen and (max-width:340px) {
    .btn {
        position: relative;
        left: 0px
    }
}




.sidebar button {
    background-color: rgba(44, 119, 211, 1);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-left: 24px;
    width: 160px
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 0px; /* Important: default hidden */
    background-color: white;
    overflow-x: hidden;
    transition: width 0.3s ease;
    z-index: 1000;
}

/* Full width only when opened on mobile */
@media (max-width: 430px) {
    .sidebar.open {
        width: 100vw !important;
    }
}




.sidebar a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a73e8;
}




@media screen and (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}



@media screen and (max-width:1153px) {
    .nav-links a {
        font-size: 17px;
    }
}


@media screen and (max-width:1124px) {
    .nav-links a {
        padding: 0;
    }
}