.image-box-container {
    display: flex;
    gap: 20px; /* space between image boxes */
    flex-wrap: wrap; /* allows them to wrap on smaller screens */
    justify-content: flex-start; /* or center */
 }

 .image-box {
    width: 150px; /* or any fixed/percentage width */
    text-align: center;
    text-decoration: none;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: background-color 0.3s, border-color 0.3s;
    color: black;
    /*background-color:#e47a33;*/
 }

 .image-box:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
 }

 .image-box img {
    width: 120px;
    height: auto;
    transition: transform 0.5s;
    /*background-color: white;*/
 }

 .image-box:hover img {
    transform: scale(1.1);
 }

 .icon-box-text {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    transition: color 0.3s;
 }

 .image-box:hover .icon-box-text {
    color: #fff;
 }