body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Nunito", sans-serif;
    font-weight: 400;


}

.header {
    background-color: orange;
    padding-top: 10px;
    padding-bottom: 1px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    /* Change cursor to a pointer on hover */
    transition: background-color 0.3s;
    /* Add transition effect for smooth color change */
}

.header:hover {
    cursor: pointer;
    /* Change cursor to a pointer on hover */
}

.centered-menu {
    background-color: orange;
    text-align: center;
    font-size: 18px;
}


@media (max-width: 480px) {
    .centered-menu {
        background-color: orange;
        text-align: center;
        font-size: 12px;
        padding-bottom: 12px;
        padding-top: 12px
    }
}

@media (max-width: 480px) {
    .menu-item {
        background-color: orange;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        display: block;
        text-decoration: none;
        color: black;
        position: relative;
        transition: background-color 0.3s;
        /* Add transition effect for smooth color change */
    }
}

@media (min-width: 768px) {
    .menu-item {
        background-color: orange;
        padding: 10px;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        display: inline-block;
        margin: 5px 0;
        text-decoration: none;
        color: black;
        position: relative;
        transition: background-color 0.3s;
        /* Add transition effect for smooth color change */
    }
}

.menu-item:hover {
    background-color: darkorange;
    /* Change the background color on hover */
    color: black;
    text-decoration: none;
    /* Remove underline on hover */
}

.submenu {
    display: none;
    position: absolute;
    left: 50%;
    /* Center-align the submenu horizontally */
    transform: translateX(-50%);
    /* Center the submenu exactly above the menu item */
    background-color: orange;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 300px;
}

.menu-item:hover .submenu {
    display: block;
    text-decoration: none;
}

.menu-item a {
    color: black;
    text-decoration: none;
}

.menu-item:hover a {
    color: black;
    text-decoration: none;
}

.submenu a {
    color: black;
    text-decoration: none;
}

.submenu:hover a {
    color: black;
    text-decoration: none;
}

.submenu-item {
    display: block;
    padding: 5px;
    font-size: 16px;
}

.submenu img {
    width: 200px;
    border-radius: 5%;
}





.Expert_Service h1 {
    font-size: 1.75rem;
    font-family: "arial";
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.inspection {
    background-color: orange;
    text-align: center;
    /* Horizontally center-align contents */
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3%;
    padding-bottom: 3%;
}

.Expert_Service {
    background: linear-gradient(-45deg,
            rgb(226, 180, 96),
            orange 1px,
            transparent 1px,
            transparent 2px);
    background-color: orange;
    text-align: center;
    /* Horizontally center-align contents */
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3%;
    padding-bottom: 3%;
}

/* Style for the custom button */
.custom-button {
    background-color: blue;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.custom-button:hover {
    background-color: rgb(51, 51, 181);
}

.custom-input {
    width: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.list-unstyled {


    margin-top: 2rem;
    margin-bottom: 1rem;

}

.list-unstyled li {

    text-align: left;
    padding-left: 20px;
    /* Add some left padding for visual separation */


}

.fas {
    padding-right: 2%;
}

.services {
    text-align: center;
    /* Horizontally center-align contents */
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;

}

.services_img {
    text-align: center;
    /* Horizontally center-align contents */
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10%;
    padding: 2px;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    opacity: 1;
    transition: opacity 0.3s;
}

/* Show the overlay on hover */
.image-link:hover .image-overlay {
    opacity: 0;
}

/* Style for the image link */
.image-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.image-link:hover {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.header a {
    color: black;
}

.header a:hover {
    text-decoration: none;
    color: black;
}


