* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
}

/* Gallery Styling */
.gallery {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
}

.gallery-flex {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-image {
    flex: 1 1 calc(33.333% - 35px);
    max-width: 600px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-image img:hover {
    transform: scale(1.2);

}

/* Responsive columns */
@media (max-width: 1024px) {
    .gallery-flex {
        flex-wrap: wrap;
    }

    .gallery-image {
        flex: 1 1 38%;
    }
}

@media (max-width: 768px) {
    .gallery-image {
        flex: 1 1 60%;
    }
}

img .img-fluid {
    width: 100%;
    max-width: 260px;
}

/* product css style  */

.product-flex {
    display: flex;
    flex-wrap: wrap;
}

.product-text {
    width: 100%;
    max-width: 500px;
}

.img-fluids {
    width: 100%;
    max-width: 400px;
    height: 430px;
    object-fit: cover;
    margin-right: 35px;
}

@media (max-width: 768px) {
    .product-text {
        margin-top: 30px;
    }

    .img-fluids {
        margin-right: 0px;
    }
}

/* About css Start */
.containers {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-left {
    width: 100%;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    max-width: 350px;
}

.about-right {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 1200px) {
    .about-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-left {
        width: 100%;
        max-width: 600px;
    }

    .about-right {
        width: 100%;
        max-width: 600px;
    }

    .about-image img {
        margin-top: -70px;
    }

    /* header image height css responsive  */

    .carousel-item {
        height: 700px;
    }

}
@media (max-width:590px) {
    .carousel-item{
        height: 670px;
    }
    
    }

/* table css responsive */


.table-text {
    padding: 48px;
}
.tablw {
    padding: 48px;
}
.book-text{
    margin: 48px;
}
@media (max-width:870px) {
    .table-text {
        padding: 10px 20px;
    }
    .tablw {
        padding: 20px 20px;
    }
    .navbar{
        padding: 5px 20px;
    }
}




@media (max-width:590px) {
.book-text{
    margin-top: 5px;
}

}



