.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-title h2 {

    font-size: 3rem;
    margin: 3rem 0px;
    border-bottom: 5px solid var(--primary-color);
    width: 30%;
    text-align: center;
    
    
    
 
}

.product-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    margin: 2rem 0px;
    flex-wrap: wrap;
    gap: 1rem;
 background-color: #c3e8ff;
}

.product-box {
    min-width: 350px;
    width: 20%;
    /* border: 1px solid gray; */
    padding: 10px 15px;
    border-radius: 10px;
    margin: 1rem;
   
    height: 480px;
}

.product-box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    /* border: 1px solid gray; */
    
}

.product-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 7px;
   
    
}

.product-decription h4 {
    margin: 1rem 0px;
    color: black;
    font-weight: 700;
}

.product-decription p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1rem;
    margin: 0px 5px;
}

.btn button {
    padding: 1rem 1.6rem;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    margin-bottom: 1rem;
    outline: none;
}

.btn button:hover {
    background-color: var(--text-color);
    color: white;
    border: 3px solid white;

}

/* Our services css */
.category-title p {
    max-width: 50%;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.choose-container {
    display: flex;
    flex-shrink: 2;
    margin: 2rem 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 5rem;
}

.choose-container .box1 {
    max-width: 50%;
}

.choose-container .box1 h3 {
    font-size: 2rem;
    color: black;
    font-weight: 800;
    border-bottom: 3px solid var(--primary-color);
    width: 25%;
    text-align: left;
    display: flex;
    justify-content: left;
    margin: 0px 0px 10px 0px;
}

.choose-container .box1 p {
    text-align: justify;
}

.choose-container .box2 img {
    
    /* filter: saturate(1.8); */
    width: 100%;
    height: 250px;
}
/*about page text*/
.abouttext p {
    text-align: justify;
    text-justify: inter-word;
}

@media screen and (max-width:720px) {
    .category-title h2 {

        font-size: 2rem;
    }

}