

        /* Header Styles */
   .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* Make sure it's above all other elements */
    background-color: #fff; /* Or whatever background your header has */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Optional subtle shadow */
   
}


        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 15px 150px;
        }

        .logo {
            display: flex;
            align-items: flex-start;
            width: 100px;
            margin-left: -4rem;
            /* height: 18px; */
        }

        .nav-menu {
            /* display: none; */
            gap: 20px;
            align-items: center;
        }

        .nav-item {
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
            color: #113554;
            text-decoration: none;
            padding: 4px 14px;
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .nav-item.active {
            background-color: #113554;
            color: #fdfeff;
            font-weight: 400;
        }

        .nav-item:hover {
            background-color: #113554;
            color: #fdfeff;
        }

        .contact-btn {
            background-color: #4b9a38;
            color: #fdfeff;
          
            padding: 8px 14px ;
            border-radius: 18px;
            text-decoration: none;
            font-size: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #3d7a2e;
            transform: translateY(-2px);
        }

        .hamburger {
            display: block;
            background: none;
            border: none;
            font-size: 24px;
            color: #113554;
            cursor: pointer;
        }
       
       /* Responsive header */
@media (max-width: 768px) {
    .logo {
           
            margin-left: -2rem;
            /* height: 18px; */
        }

    .header-content {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
        background-color: #fdfeff;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    .nav-menu.nav-open {
        display: flex;
    }

    .nav-item {
        padding: 12px 20px;
        width: 100%;
        text-align: left;
    }

    .contact-btn {
        order: 2;
        margin: 10px 0px ;
        width: 150px;
        justify-content: center;
    }

    .hamburger {
        display: block;
        order: 2;
    }
}
.nav-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}


      

     