.carda{
    text-decoration: none;
    color: grey;
}
.image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background:no-repeat center center/cover;
    height: 200px;
    width: 250px;
    text-decoration: none;
    position: relative;
}

.title {
    color: white;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.941);
}

.image-box:hover .title{
    font-size: 20px;
}
.image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text visibility */
    z-index: 1;
    transition: background 0.3s ease;
}

.image-box:hover::before {
    background: rgba(0, 0, 0, 0.8); /* Lighten overlay on hover */
}
#whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 50%;
}

#whatsapp-button img {
    width: 80px;
    height: 80px;
}

/* Mobile devices (up to 480px) */
@media (max-width: 480px) {
    #whatsapp-button {
        bottom: 70px;
        right: 15px;
    }

    #whatsapp-button img {
        width: 50px;
        height: 50px;
    }
}

/* Tablets (481px to 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
    #whatsapp-button {
        bottom: 70px;
        right: 15px;
    }

    #whatsapp-button img {
        width: 60px;
        height: 60px;
    }
}

/* Laptops (1025px to 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    #whatsapp-button {
        bottom: 100px;
        right: 20px;
    }

    #whatsapp-button img {
        width: 70px;
        height: 70px;
    }
}
