body {
    font-family: 'Poppins', sans-serif;
}





/* Common Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: #274153eb;
    height: 64px;
    width: 100%;
    max-width: 100vw;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

/* Logo Styling */
.logo img {
    position: flex;
    height: 40px;
    width: 80%;
    border: none;
    border-radius: 10px;
    margin-left: 25px;
    padding-left: 0px;
    padding-top: 4px;
    box-shadow: 4px 6px 12px rgba(.2, .4, .2, 0.4);
}



/* Navbar Links Styling */
.nav-links {
   justify-content: space-between;
   align-items: right;
   list-style: none;
   display: flex;
   gap: 10px;
   position: relative;
}

.nav-links li {
    position: relative;
    display: inline-block;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #ff5722;
    background: black;
    border-radius: 7px;
}

/* Responsive Navbar */
.menu-toggle {
    margin-right: 10px;
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #27ae60;
        position: absolute;
        top: 60px;
        right: 0px;
        width: 250px;
        border-radius: 15px;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
