        .container-of-grid 
        {
            margin: 5%;
            box-sizing: border-box;
           /* width:100%; */
        }

        .central-card-grid-container 
        {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 45px;
            padding: 20px;
            width: 100%;
            box-sizing: border-box;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 1000px) 
        {
            .central-card-grid-container 
            {
                grid-template-columns: 1fr;
            }
        }

        .central-card 
        {
            position: relative;
            /* width: 100%; */
            height: 400px;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: background-color 0.4s ease, color 0.4s ease;
            padding: 10px;
            background-color: #cdc6c6;
        }

        .central-card .content-wrapper 
        {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: transform 0.7s ease;
        }

        .central-card .heading-icon 
        {
            width: 50px;
            height: 50px;
            margin: auto;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.7s ease, visibility 0.7s ease;
        }

        .hoover-wrapper:hover .central-card .heading-icon 
        {
            opacity: 0;
            visibility: hidden;
            animation: fadeOut 0.7s ease;
        }

        @keyframes fadeOut 
        {
            from 
            {
                opacity: 1;
                transform: none;
            }
            to 
            {
                opacity: 0;
                transform: translateY(-8px);
            }
        }

        .central-card .mid-content 
        {
            padding: 5px;
            color: #333;
            font-family: "Nunito", Sans-serif;
            transition-duration: 0.7s;
            transition-property: transform;
            transition-timing-function: ease-out;
        }

        .central-card .bottom-button 
        {
            width: 100%;
            display: none;
            transition: all 0.7s ease;
        }

        .central-card .bottom-button button 
        {
            padding: 10px 20px;
            background-color: rgba(240, 63, 11, 0.8);
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
        }

        .hoover-wrapper:hover .central-card 
        {
            background-color: #a99d9d; /* Full opacity on hover */
            color: #fff;
        }

        .hoover-wrapper:hover .central-card .content-wrapper 
        {
            transform: translateY(-50px);
        }

        .hoover-wrapper:hover .central-card .mid-content 
        {
            color: #fff;
        }

        .hoover-wrapper:hover .central-card .bottom-button 
        {
            display: block;
            opacity: 1;
        }



#kn-workshops
{
    margin: 12%;
}

.kn-workshop-container
{
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 50px;
}

.kn-workshop-left-cell img
{
    width: 100%;
    height: auto;
}

.kn-workshop-right-cell
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.kn-workshop-flex-container
{
    display: flex;
    flex-direction: column;
    align-items: center;
 gap: 35px; /* Adjust spacing as needed */
}

.kn-workshop-header
{
    font-size: 24px;
    font-weight: bold;
}

.kn-workshop-description
{
    font-size: 16px;
}

.kn-workshop-button-container
{
    margin-top: 10px;
}

.kn-workshop-button
{
    padding: 8px 16px;
    background-color: rgba(240, 63, 11, 0.8);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.kn-workshop-button:hover
{
    background-color: rgba(240, 63, 11, 1); /* Full opacity on hover */
}

     .capsule 
     {
            display: inline-block;
            padding: 5px 10px;
            margin: 5px;
            background-color: #216e8e;
            color: white;
            border-radius: 25px;
            font-family: Arial, sans-serif;
            font-size: 14px;
        }

/* Mobile view */
@media (max-width: 768px)
{
    .kn-workshop-container
    {
        grid-template-columns: 1fr;
    }
}

