    .products-heading {
        width: 100%;
        text-align: center;
        margin: 20px 0;
        padding: 10px 0;
        font-size: 2rem;
        font-weight: bold;
        color: #333;
        position: relative;
        overflow: hidden;
    }

    .products-heading::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 3px;
        background-color: #4CAF50;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: underlineAnimation 1.5s ease-in-out infinite;
    }

    @keyframes underlineAnimation {
        0%, 100% {
            width: 50px;
        }
        50% {
            width: 100px;
        }
    }

    .products-container {
        margin-top: 30px;
    }

    .custom-product-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .custom-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .custom-product-card-img {
        width: 100%;
        height: 300;
        border-bottom: 1px solid #f0f0f0;
    }

    .card-body {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .custom-product-card-title {
        font-size: 1.15rem;
        font-weight: bold;
        margin: 10px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    .custom-product-card-text {
        color: #555;
        margin-bottom: 10px;
    }

    .custom-product-btn-primary {
        background-color: #4CAF50;
        border: none;
        transition: background-color 0.3s;
        align-self: center;
    }

    .custom-product-btn-primary:hover {
        background-color: #45a049;
        color: white
    }

    @media (max-width: 992px) {
        .custom-product-card {
            max-width: 100%;
            margin-bottom: 2%;
        }
    }

    @media (max-width: 576px) {
        .custom-product-card {
            max-width: 70%;
            margin-bottom: 10px;
        }


    }

    @media (max-width: 450px) {
        .custom-product-card {
            max-width: 100%;
            margin-bottom: 10px;
        }


    }
