.header {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.navbar_container {
    display: flex;
}

.left_navcontainer {
    padding:0 20px;
    align-content: center;
    background-color: rgba(255, 255, 255, 1);

}

.left_navcontainer a img {
    width: 262px;
    height: auto;
}

.right_navcontainer {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
}

.top_right_navcontainer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom-left-radius: 20px;
    /* Set the background image */
    background:
        linear-gradient(rgba(3, 99, 163, 0.85), rgba(3, 99, 163, 0.85)), /* blue overlay */
        url('/images/nav.png') center center / cover no-repeat;           /* your image */
}

.righttop_nav {
    align-items: center;
}

.left_righttop_nav {
    display: flex;
}
.navzone_section{
    display: flex;
    gap: 25px;
}

.navzone_section .zone_link {
    text-decoration: none;
    color: #ffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;

}

.navzone_section .zone_link:hover {
    color: #F3881B;
}

.navzone_section .active_nav {
    color: #F3881B !important;
    border-bottom: 2px solid #EF902F !important;
}

.lefttop_nav {
    display: flex;
}

.swsc_login {
    padding: 13.44px 20px;
    gap: 8.4px;
    border-radius: 40px;
    background-color: #0082D6;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.8px;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.swsc_login:hover {
    background-color: #F3881B;
}

.input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 18px;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.input {
    border: none;
    border-bottom: 2.5px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    height: 25px;
    width: 0;
    min-width: 0;
    padding: 0;
    margin-left: 0;
    outline: none;
    font-size: 17px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    opacity: 0;
    transition: width 0.4s cubic-bezier(0, 0.11, 0.35, 2), opacity 0.3s;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin-right: 0;
    width: 25px;
    height: 25px;
    transition: background 0.2s;
    border-radius: 50%;
}

/* Show input on icon hover */
.input-wrapper:hover .input,
.input-wrapper:focus-within .input {
    width: 180px;
    opacity: 1;
    padding-left: 12px;
    margin-left: 8px;
}

.input::placeholder {
    color: #FFFFFF;
    font-size: 17px;
}

/* Optional: icon hover effect */
.icon:hover {
    background: #e6f0ff;
}

/* Optional: icon hover effect */
.icon:hover {
    background: #e6f0ff;
}

.bottom_right_navcontainer {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 1);

}

.nav__list {
    display: flex;
    gap:25px;
    list-style: none;
}

.nav__list .nav__item {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.6px;
    text-transform: uppercase;

}
.nav__item .nav__link{
    text-decoration: none;
    color: #36384E;
}
.nav__item .nav__link:hover{
    color: #F3881B;
}

.nav__item .active_nav {
    color: #F3881B !important;
    border-bottom: 2px solid #F3881B !important;
}

.request_info_link,
.apply_now_button {
    background-color: #F3881B; /* Orange color from image/hover styles */
    color: #FFFFFF;
    height: 42;
    gap: 8.4px;
    border-radius: 20px;
    padding: 10px ;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0px;


}

.request_info_link:hover,
.apply_now_button:hover {
    background-color: #0082D6;
}

.nav_buttons .apply_now_button {
    margin-left: 15px;
}

/* Media Queries for Small Screens */
@media screen and (max-width: 768px) {
    .navbar_container {
        flex-direction: column;
    }

    .left_navcontainer {
        padding: 10px;
        text-align: center;
    }

    .left_navcontainer a img {
        width: 200px;
    }

    .top_right_navcontainer {
        /* flex-direction: column; */
        gap: 15px;
        padding: 15px;
    }

    .navzone_section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .left_righttop_nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .bottom_right_navcontainer {
        flex-direction: column;
        gap: 20px;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav_buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav_buttons .apply_now_button {
        margin-left: 0;
    }

    .request_info_link,
    .apply_now_button {
        text-align: center;
        width: 100%;
    }

    .input-wrapper:hover .input,
    .input-wrapper:focus-within .input {
        width: 150px;
    }
}

/* Media Queries for Extra Small Screens */
@media screen and (max-width: 480px) {
    .left_navcontainer a img {
        width: 150px;
    }

    .swsc_login {
        width: 100%;
        text-align: center;
    }

    .input-wrapper:hover .input,
    .input-wrapper:focus-within .input {
        width: 120px;
    }
}
