* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f4f8;
    color: #333;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #004aad;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    background: #004aad;
    border-radius: 50%;
    object-fit: cover;

}

.logo h2 {
    margin: 0;
    font-size: 22px;
}

/* Navbar Links */
.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    display: block;
}

/* Slide-in Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -240px;
    width: 220px;
    height: 100%;
   background: linear-gradient(to right, #004aad, #0077ff);
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
    z-index: 1000;
}

.side-menu a {
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #ffffff;
}

.side-menu.active {
    right: 0;
}

/* Close Button inside Side Menu */
.side-menu .close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 846px) {
    nav {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
@media (max-width: 600px) {
    .side-menu {
        width: 200px;
    }

    .side-menu a {
        font-size: 16px;
        padding: 10px 20px;
    }
}









footer {
    background: #004aad;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
}