.menu_side_area {
    position: relative;
    width: 100%;
    max-width: 280px; 
}


#search-input {
    width: 100%;
    padding: 0.5em;
    font-size: 1em;
    border-radius: 5px;
}


#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-top: 5px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
}

/* Search results item styling */
#search-results div a {
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    color: #333;
}

#search-results div a:hover {
    background-color: #f8f9fa;
}

#search-results img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    border-radius: 4px;
}


@media (max-width: 576px) {
    .menu_side_area {
        width: 100%;
        max-width: none;
    }

    #search-input {
        width: 100%;
        padding: 0.5em;
        font-size: 0.9em;
    }

    #search-results {
        width: 100%;
        max-width: 100%;
    }

    #search-results img {
        width: 25px;
        height: 25px;
    }
}





 .certification-logo-img-1 {
    height: 90px; /* Adjust as needed */
    width: auto;
    margin: 0 20px;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
/* Media query for mobile view */
@media (max-width: 576px) {
    .certification-logo-img-1 {
        height: 100px; 
        margin: 0 05px;/* Adjusted for mobile view */
    }
}



/* FAQ Section Styling */
.faq-section {
    background-color: #f8f9fa;
}

.faq-category {
    margin-bottom: 20px;
}

.accordion-button {
    background-color: #ffffff;
    color: #333;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    color: #27ae60;
    background-color: #ecf0f1;
}

.accordion-body {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.accordion-item {
    border: 1px solid #dee2e6;
}

.accordion-header {
    margin-bottom: -1px;
}
/* Remove default focus outline */
.accordion-button:focus {
    outline: none; /* Removes the default outline */
    box-shadow: none; /* Optional: removes additional focus styles, such as shadows */
}

/* Optional: Add custom focus style for better accessibility */
.accordion-button:not(.collapsed) {
    color:#354e33;
    background-color: #ecf0f1;
    box-shadow: inset 0 0 0 1px #354e33; /* Adds a subtle inner border on focus */
}
