/* Ensure background image is responsive and covers properly */

/* Ensure images scale properly */

.logo-image {
    max-width: 100%;
    height: auto;
}


/* Mobile menu animation */

.mobile-menu {
    transition: all 0.3s ease-in-out;
}


/* Responsive text sizing */

@media (max-width: 640px) {
    .consultation-btn {
        font-size: 20px !important;
        padding: 12px 24px !important;
    }
}

@media (max-width: 480px) {
    .consultation-btn {
        font-size: 18px !important;
        padding: 10px 20px !important;
    }
}



.category-actions {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.category-container:hover .category-actions {
    opacity: 1;
    transform: translateX(0);
}

.category-container:hover .category-title {
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}