.card-area {
    margin-top: 150px; /* Space above the section */
    background-color: #f5f5f500; /* Optional: Add a light background color */
    padding: 30px 0; /* Add padding to the section */
}

.custom-div {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; /* Allow flexible height */
    text-align: center; /* Center text */
    margin-bottom: 20px; /* Add space between divs */
}

.custom-img {
    width: 100%; /* Full width for images */
    height: auto; /* Auto-adjust height based on image ratio */
    object-fit: contain; /* Keep the image ratio */
    max-width: 150px; /* Set a max width to prevent large images */
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);  */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
.custom-img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.custom-text {
    padding-top: 15px;
    font-weight: bold;
}
/* Centered image structure */
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 140px;
    height: 520px;
    overflow: hidden;
    flex-direction: column; /* Ensure items stack vertically */
    opacity: 0.9;
}

/* Content styling */
.content {
    font-family: 'Lobster', cursive; /* Chosen font */
    font-size: 20px; /* Adjust as needed */
    color: white;
    text-align: left;
    max-width: 400px; /* Limit width to fit neatly on the left */
    position: absolute; 
    left: 70px; 
    bottom: 7%;
    transform: translateY(-50%); /* Adjust for vertical centering */
    z-index: 2; /* Ensure content is above background */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: dark overlay for readability */
    padding: 10px;
    border-radius: 8px; /* Optional: rounded corners */
}

/* Water splash background image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    z-index: 1; /* Set behind the content */
}


@media (max-width: 768px) {
    .custom-div {
        height: auto;
    }
    .custom-img {
        max-width: 100%; /* Adjust for smaller screens */
        height: auto;
    }
}
.product-heading{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .line{
   display: block;
}
.circle{
    vertical-align: middle;
} */