
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Style the header */
.main-header {
    background-color: #140B5C; /* White background color */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    height: 70px;    
    z-index: 100;
}

/* Style the navigation bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Style the logo and site name */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
}

.site-name {
    font-size: 24px;
    font-weight: bold;/* Dark gray text color */
}

/* Style the navigation list */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
}

/* Style the navigation items */
.nav-item {
    margin: 0 15px;
}

.nav-item a {
    text-decoration: none;
    font-weight: bold;
    color: white; /* Dark gray text color */
    transition: color 0.3s ease-in-out;
}

.nav-item a:hover {
    color: #007bff; /* Blue color on hover */
}

/* Style the mobile menu icon */
.mobile-menu-icon {
    display: none; /* Hide the icon by default on desktop */
    cursor: pointer;
    flex-direction: column;
}

.menu-line {
    width: 25px;
    height: 3px;
    background-color: white; /* Dark gray line color */
    margin: 3px 0;
    transition: background-color 0.3s ease-in-out;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .nav-list {
        display: none; /* Hide the navigation list on mobile */
        flex-direction: column;
        background-color: #140B5C; /* Blue background color for mobile menu */
        padding: 20px;
        border-radius: 5px;
        position: absolute;
        top: 70px; /* Adjust the position to your preference */
        right: 20px; /* Adjust the position to your preference */
        z-index: 10;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-item a {
        color: #ffffff; /* White text color on mobile menu */
        transition: color 0.3s ease-in-out;
    }

    .nav-item a:hover {
        color: #ffffff; /* White text color on mobile menu */
    }

    .mobile-menu-icon {
        display: flex; /* Show the icon on mobile */
    }

    .menu-line {
        width: 30px;
        background-color: white; /* Dark gray line color */
        margin: 3px 0;
        transition: background-color 0.3s ease-in-out;
    }

    .nav-list.active {
        display: flex; /* Show the navigation list when mobile menu is active */
    }
}
.name{
    color: #007bff;
}

