header {
    background-color: #0d47a1;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed; /* Make the header fixed at the top */
    top: 0; /* Position it at the top */
    left: 0; /* Make it span the full width */
    z-index: 1000; /* Ensure it stays above other content */
}

/* Navbar styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo styling */
.logo h1 {
    margin: 0;
    font-size: 24px;
    color: white;
}

/* Navigation links styling */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hamburger menu styling for mobile view */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active + .nav-links {
        display: flex;
    }
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 60px; /* Adjust based on the height of your fixed header */
}

/* Logo styling */
.logo img {
    width: 80px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure the image is displayed as a block element */
    margin: 0; /* Remove any default margin */
}


/* Navigation links styling */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hamburger menu styling for mobile view */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active + .nav-links {
        display: flex;
    }
}

    /*footer*/
    /* General footer styling */
    .footer {
        background-color:#0d47a1;
        color: #fff;
        padding: 20px 0;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section {
        flex: 1;
        min-width: 200px;
        margin: 10px;
    }
    
    .footer-section h3 {
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .footer-section p, 
    .footer-section ul, 
    .footer-section .social-links {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section a {
        color: #fff;
        text-decoration: none;
    }
    
    .footer-section a:hover {
        color: #007bff;
    }
    
    /* Social links styling */
    .social-links a {
        display: inline-block;
        margin-right: 10px;
        font-size: 20px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 10px 0;
        background-color:#1a237e;
        color: #bbb;
        width: 100%;
        box-sizing: border-box;
    }