
.homeSupport {
    
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    /* background-image: url("../assets/assets/RegoBus.jpg"); */
    background-size: cover;
    overflow: auto;
    z-index: -55;
}

.layer {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
    font-size: 3vw;
}

.mainSupport {
    padding: 20px;
    flex: 1;
    background-color: white;
    overflow: auto;

}

.headerSupport {
    background-color: #007AFF;
    color: #FFF;
}

.contentSupport {
    display: flex;
    flex: 1;
    overflow: auto;
    background-color:wheat;
}

.contentSupport nav {
    background-color: #F5F5F5;
    padding: 0;
    border-inline-end: solid 0.5px gray;
    border-inline-start: solid 0.5px gray;
    overflow: auto;
}

.contentSupport nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-block-start: 10px;
}



.contentSupport nav ul li a {
    color: #007AFF;
    text-decoration: none;
    display: block;
    padding: 10px;
}

.contentSupport nav ul li a:hover {
    background-color: #007AFF;
    color: #FFF;
}

.contentSupport main {
    padding: 20px !important;
    flex: 1;
    background-color: white;
    overflow: auto;

}







.contentSupport nav ul li {
    cursor: pointer;
    list-style-type: none;
    padding: 10px;
   

    display: flex;
    align-items: center;
}

.contentSupport nav ul li:not(:last-child) {
    border-bottom: 1px solid #D3D3D3;
    /* إضافة خط فاصل بين كل عنصر في القائمة */
}



.supplyIcone {
    font-weight: 900;
    color: #666666ec;
    font-size: 20px;
    padding-inline-end: 10px;
}


.custom-list {
    padding: 0;
    margin: 0;
    list-style-type: none;

}





.custom-list figure {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-list figure img {
    width: 250px;
    height: auto;
}

.custom-list figcaption {
    margin-top: 10px;
    text-align: center;
}

.show-menu {
    display: none !important;
}

@media screen and (max-width: 991px) {

    .contentSupport  nav {
        width: 100% !important;
        margin-inline-start: 0px;

    }

    .show-menu {
        display: none !important;
    }

 
    .custom-list li p {
        width: 100%;
    }

    #navMobile {
        display: block;
        width: auto !important;
    }
    .mainSupport section h2 {
        min-width: 100% !important;
        max-width: 100%!important;
        
    }

    #navPc {
        display: none;

    }
    .headerSupport {
    background-color: #007AFF;
    color: #FFF;
    text-align: center;
    display: flex;
    align-items: center;
    }

    .toggle-menu-button {
    /* position: absolute; */
    /* top: 16vh; */
    background-color: transparent;
    border: none;
}

}

@media screen and (min-width: 992px) {
    #toggleButton {
        display: none;
    }

    .contentSupport nav {
        width: 300px !important;
        /* margin-inline-start: 10px; */

    }

    section h2 {
        min-width: 100% !important;
        max-width: 100%!important;
    }

    .custom-list li p {
        width: 40vw;
    }

    #navMobile {
        display: none;
    }

    #navPc {
        display: block;

    }
    .toggle-menu-button {
    position: absolute;
    top: 16vh;
    background-color: transparent;
    border: none;
    }
    
}
.active-section {
    background-color: var(--primary); 
    color: white;
    padding: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}