.policies{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
}

.policies img:hover{
    transform: scale(1.02);
    transition: all 0.5s;
}


.team-member-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:2em;
    justify-items: center;
    height: auto;
}

.name-desg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:0.3em;
    border-bottom: none;
    border-radius: 5px;
}

.name{
    margin-top: 0.3em;
    font-weight: 700;
    font-size: large;
    text-transform: capitalize;
    border-bottom:1px solid rgb(200,200,200)
}
.desg{
    padding-top:0.3em;
    font-size: small;
    color: rgba(0, 0, 0,0.4);
    font-style: italic;
    font-weight: 700;
}

.style{
    display: inline;
    width: 100%;
    height: 2px;
    background: rgb(255, 165, 0);
    margin-bottom: 0.5em;
}

.team-member{

    border:1px solid #e4e4e4;
    padding:4px;
    border-radius: 12px;
}

.team-member img{
    border-radius: 10px;
    width: 100%;
}

.team-member:hover{
    box-shadow: 0 0 10px rgb(255, 165, 0);
    transition: all 0.3s;
}


.infra-div{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:0.7em;
    padding: 1em;
}

.machine-div{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.machine-div img{
    padding:0.5em;
    margin-bottom:0.3em;
}

.machine-div img:hover{
    transform: scale(1.05);
    transition: all 0.5s;
}

.machine-div h4{
    font-size: medium;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}


.award-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    width: 100%;
    border-radius: 12px;
    padding:0.7em;
}



.products-div{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}


.title-products-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin-top:2em;
    width: 100%;
    background-color: rgb(38, 38, 110);
}
.title-products-div h2{
    font-size: x-large;
    color:white;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1;
    letter-spacing: 2px;

}


.plant-img{
  width: 411px;
  height: 184px%;
}


/**/
/**/
/*Core Accordion*/
/**/
/**/


.cv-accordion-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.cv-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cv-left { flex: 2; }
.cv-right { flex: 1; }

.cv-heading {
    margin-bottom: 20px;
    font-size: 24px;
    color: #002B5B;
}

/* Accordion */

.cv-acc-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cv-acc-title {
    padding: 15px;
    background: #002B5B;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.cv-acc-content {
    display: none;
    padding: 20px;
}

.cv-acc-item.active .cv-acc-content {
    display: block;
}

.cv-acc-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cv-acc-img {
    width: 250px;
    border-radius: 6px;
}

/* Location */

.cv-location {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.cv-map {
    width: 100%;
    border-radius: 6px;
}

.cv-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #002B5B;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* Mobile */

@media (max-width: 992px) {

    .cv-wrap {
        flex-direction: column;
    }

    .cv-acc-flex {
        flex-direction: column;
        text-align: center;
    }

    .cv-acc-img {
        width: 200px;
    }
}