/* Centered Desktop Box */
.desktop-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-in-out;
    width: 75%;
    overflow: hidden; /* Ensure boxes are contained within the container */
    margin-left: auto;
    margin-right: auto;
}
.whole
{
    text-align: center;
    
    margin-top: -90px;
}
.box {
    text-align: center;
    flex: 0 0 20%;
    margin: 10px;
    border: 1px solid rgba(233, 128, 48, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 6px rgba(233, 128, 48, 0.1);
    
    height: 90px; /* Fixed height */
    width: 40px; /* Fixed width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
     /* Ensure overflow is hidden inside the box */
     background-color: rgb(255, 255, 255);
}

.box img {
    width: 100%;
    height: 100%; /* Ensure image fits within the box */
    object-fit:contain;
}

.box p {
    font-size: 15px;
    color: var(--text-dark);
}

/* Hover Animation for Box */
.box:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Fade-in Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments for Tab View */

@media (max-width: 976px) {
    .desktop-boxes {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 1rem;
        
    margin-top: 0px;
    }

    .box {
        flex: 0 0 45%;
        margin: 1rem;
    }
    .whole
{
    text-align: center;
    
    margin-top: 0px;
    padding: 10px;
}
}
@media (max-width: 768px) {
    .desktop-boxes {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 1rem;
        
    margin-top: 0px;
    }

    .box {
        flex: 0 0 45%;
        margin: 1rem;
        width: 100%;
    }
    .whole
{
    text-align: center;
    
    margin-top: 0px;
}
}

/* Responsive Adjustments for Mobile View */
@media (max-width: 576px) {
    .desktop-boxes {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 1rem;
        
    margin-top: 0px;
    }

    .box {
        flex: 0 0 45%;
        margin: 1rem;
    }
    .whole
{
    text-align: center;
    
    margin-top: 0px;
}
}
