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;
    }
}

@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%;
    }

.menu {
    margin: 0;
    padding: 30px;
}

.menu h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding-top: 15px;
}


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

}

.services_img {
    text-align: center;
    /* Horizontally center-align contents */
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    padding: 2px;
    align-items: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, 1);

}

.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;
    text-align: center;

    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;
    align-items: center;
}

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

.row p {
    padding-top: 30px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;

}

.img {
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    background-color: rgb(215, 215, 215);
    padding: 10px;
    height: 275px;

}


.column {
    float: left;
    width: 29%;
    margin: 2%;
  }

  @media(max-width:480px)
  {
    .column {
        float:none;
        width: 100%;
        margin: 2%;
      }
  }
  .header a {
    color:black;
     }
 
     .header a:hover {
      text-decoration: none;
      color:black;
          }