    body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
        /* font-family: Bodoni MT,Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; */
    }
    
    div {
        text-align: center;
    }
    
    
    .ht:hover .tooltip {
        display: block;
    }

    .mainrows {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
        flex: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
   
    .categories {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 2000px;
        margin: 2rem auto 0;
        overflow-x: auto;
    }
    
    .categories > div {
        transform: skew(-20deg);
        background-color: white;
        height: 350px;
        flex: 0 0 350px;
        border: 2px solid #1A5D3C;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        margin: 20px 0;
    }

    #our_productsid {
        width: 100%;
        background-color: #1A5D3C;
        color: white;
        margin: 0;
        padding: 1rem 0;
    }

    #our_productsid h2 {
        margin: 0;
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
    }

    .categories>div:hover {
        transform: skew(-20deg) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border-color: #164d32;
        z-index: 1;
    }
    
    .categories>div>img {
        transform: skew(20deg);
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        position: absolute;
        top: 0;
        left: 0;
    }

    .categories>div:hover>img {
        transform: skew(20deg) scale(1.1);
    }

    .categories>div>p {
        transform: skew(20deg);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.8rem 0;
        background: rgba(26, 93, 60, 0.9);
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
        z-index: 2;
        text-align: center;
        box-sizing: border-box;
        transform-origin: top left;
    }

    .transparent-box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
    }

    .categories>div:hover .transparent-box {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    }
    
    .caption {
        transform: skew(20deg);
        color: white;
        text-align: center;
        width: 100%;
    }
    
    .caption>p {
        background: none;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    .download_b {
        margin: 3rem auto;
        text-align: center;
    }
    
    .download_b a {
        display: inline-block;
        padding: 1rem 2rem;
        background-color: #1A5D3C;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 500;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .download_b a:hover {
        background-color: #164d32;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .download_b i {
        margin-right: 0.5rem;
    }
    
    @media (max-width: 2000px) {
        .categories {
            flex-wrap: wrap;
        }
    }

    @media (max-width: 1400px) {
        .categories {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 1200px) {
        .categories {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .categories {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .categories {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        #our_productsid h2 {
            width: 90%;
            font-size: 1.5rem;
        }

        .categories>div {
            transform: skew(-10deg);
        }

        .categories>div p {
            transform: skew(10deg);
        }

        .caption {
            transform: skew(10deg);
        }

        .categories>div {
            height: 250px;
            width: 250px;
        }

        .categories > div:hover {
            transform: skew(-10deg) scale(1.05);
        }
    }

    @media (min-width: 1600px) {
        .categories {
            gap: 2rem;
            padding: 0 2rem;
        }
    }