
.custom-image {
        background-color: #f8f9fa; /* Card background */
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .hover-text {
        display: none; /* Hide the text by default */
        position: absolute; /* Position the text absolutely */
        top: 100%; /* Place it below the container */
        left: 0;
        background-color: #333; /* Background color of the hidden text */
        color: white;
        padding: 10px;
        border-radius: 5px;
        white-space: nowrap; /* Prevent text from wrapping */
    }
    .custom-image:hover {
        transform: translateY(-5px);
    }

    /* .custom-image:hover  .hover-text {
        display: block; /* Show the text on hover */
   /*  } */


