
/*! =================== Top-Bar =================== */
nav .top-bar,
nav .bottom-bar {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav .top-bar {
    background-color: var(--color-white);
}
nav .top-bar .my-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .top-bar .logo img {
    width: 150px;
}
nav .top-bar .email a {
    color: var(--main-color);
    font-size: 14px;
}
nav .top-bar .topbar-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
nav .top-bar .topbar-actions .main-btn {
    width: 110px;
}
/* nav .top-bar .topbar-actions > div {
    display: flex;
    align-items: center;
    gap: 5px;
} */
nav .top-bar .topbar-actions img {
    width: 15px;
}
/* Dropdown */
.lang-dropdown {
    position: relative;
}
.lang-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.lang-trigger p {
    font-size: 13px;
    font-weight: 700;
    color: var(--main-color);
}
.lang-menu {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 8px;
    list-style: none;
    padding: 5px 0;
    width: 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 100;
}
.lang-menu li {
    padding: 8px 15px;
    cursor: pointer;
    transition: .2s;
    font-size: 14px;
}
.lang-menu li:hover {
    background: #f1f1f1;
}
/*! =================== Bottom-Bar =================== */
nav .bottom-bar {
    background-color: var(--main-color);
}
nav ul.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
nav ul.links li.direct-hover {
    position: relative;
}
nav ul.links li.direct-hover::before {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-white);
    transition: .5s;
}
nav ul.links li.direct-hover:hover::before,
nav ul.links li.direct-hover.active:before {
    width: 100%;
}


/* ************************************************************* */
nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: -10px;
    background: var(--main-color);
    border: none;
    border-radius: 0;
    padding: 0;
}
nav li.dropdown {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
nav .dropdown-menu li a {
    width: 100%;
    text-align: start;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
}
nav .dropdown.services li:last-child {
    border-top: 1px solid #ffffff96;
}
/* nav .dropdown-menu li a {
    display: inline-block;
    width: 100%;
} */

nav .dropdown-menu.equipment {
    background-color: var(--main-color);
    width: 600px;
    right: -50px;
    color: var(--color-white);
    padding: 20px;
}
nav .nav-tabs {
    border: none;
}
nav .nav-tabs .nav-link {
    background-color: transparent;
    /* color: var(--color-white) !important; */
    color: #ffffffb0 !important;
    border: none;
    position: relative;
    padding-bottom: 15px;
    padding-inline: 0;
    width: 150px;
    transition: .5s;
}
nav .nav-tabs .nav-link.active {
    color: var(--color-white) !important;
    background-color: transparent;
}
nav .nav-tabs .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -20px;
    background-color: #ffffffb0;
    width: 100%;
    height: 3px;
}
nav .nav-tabs .nav-link.active::before {
    width: 100%;
    background-color: var(--color-white);
}
nav .boxs {
    display: flex;
    gap: 20px;
    text-align: start;
    margin-top: 20px;
}
nav .boxs .box {
    background-color: #FFFFFF14;
    padding: 20px 15px;
    width: 200px;
}
nav .boxs .box:nth-child(2) {
    flex: 1;
    justify-content: start;
}
nav .boxs .box ul {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    width: 100%;
}
/* nav .boxs .box.second-box ul {
    gap: 10px;
} */
nav .boxs .box li {
    font-size: 13px;
    font-weight: 500;
    padding-block: 5px;
}
.box.first-box button a {
    text-decoration: underline;
    padding: 0;
}
nav .boxs .box li button {
    color: var(--color-white);
    width: 100%;
    text-align: start;
}
nav .boxs .box li button.active {
    background-color: #F78F35;
}
/*! ***************** Responsive-Menu ***************** */
nav.responsive-Menu .dropdown-menu {
    top: 20px;
    right: 0;
}
.show-menu {
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--main-color);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: .4s;
}
.show-menu i {
    position: relative;
    font-size: 15px;
    color: #fff;
    z-index: 1;
    transition: all 0.3s ease;
}
.show-menu:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px var(--second-color);
}
nav.responsive-Menu {
    width: 300px;
    background: blue;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 20;
    left: 0;
    background-color: #ca7832;
    background-position: center;
    background-size: cover;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}
nav.responsive-Menu h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
nav.responsive-Menu button {
    margin-inline: auto;
}
nav.responsive-Menu.show {
    transform: translateX(0);
}
nav.responsive-Menu .nav-content.responsive {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    height: 100%;
    padding: 40px 20px;
}
nav.responsive-Menu .nav-content.responsive ul.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 25px;
}
nav.responsive-Menu .nav-content.responsive ul.icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
nav.responsive-Menu .nav-content ul.links li {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}
nav.responsive-Menu .nav-content ul.links li::before {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-white);
    transition: .5s;
}
nav.responsive-Menu .nav-content ul.links li.active::before {
    width: 100%;
}
nav.responsive-Menu .nav-content ul.links li a {
    transition: .3s;
}
/* HOVER */
nav.responsive-Menu .nav-content ul.links li:hover a {
    font-weight: 700;
}
/* ACTIVE */
nav.responsive-Menu .nav-content ul.links li.active a {
    font-weight: 700;
}
nav.responsive-Menu .nav-content.responsive .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-white);
    font-size: 20px;
}
nav.responsive-Menu .nav-content.responsive .close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Overlay */
.overlay.show {
    left: 0;
}
.overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #0000002e;
    /* background-color: #bce00820; */
    transition: 0.4s;
    left: 200%;
    z-index: 9;
}

/*! Media-Queiry */
@media (max-width: 991px) {
    nav .bottom-bar,
    nav .top-bar .email,
    nav .top-bar .topbar-actions .main-btn {
        display: none;
    }
    nav .top-bar {
        border-bottom: 1px solid var(--main-color);
    }
    nav .nav-content.responsive button {
        display: block;
        height: 40px;
    }
    nav .nav-content.responsive button a {
        font-size: 16px;
    }
    .show-menu {
        display: flex;
    }
}
