.detail-para {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 10px !important;
}

.layout-padding {
    padding-left: 100px;
    padding-right: 100px;
}

/* --------------------------- Boxes Section (START) --------------------------- */

.boxes-section {
    margin: 50px 0;
}

.boxes-section .boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.boxes-section .box {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0boxes-section .1);
    position: relative;
    width: 100%;
    height: 130px;
}

.boxes-section .box h4 {
    font-size: 22px;
}

/* Layers */
.one,
.two {
    padding: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

/* Start with .one visible */
.one {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* --------------------------- Boxes Section (END) --------------------------- */


.layout-padding.content {
    margin: 40px 0;
}


.team-pic {
    position: relative;
    margin-top: 70px;
}

.team-pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.445);
}

.team-pic img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}




@media screen and (max-width: 1186px) {
    .boxes-section .boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 860px) {
    .boxes-section .boxes {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 530px) {
    .layout-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
    .team-pic img {
        height: 300px;
    }
}

@media screen and (max-width: 360px) {
    .boxes-section .box {
        height: 150px;
    }
}