/* HERO */
.quality-hero {
    background: url("/static/images/ooo.jpg") no-repeat center;
    background-size: cover;
    height: 200px;
    position: relative;
}

.quality-hero .overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    color: white;
}

.overlay h1 {
    font-size: 40px;
    color: #e53935;
}

.overlay p {
    font-size: 18px;
}


/* ========================================= */
/* MATERIAL SECTION */
/* ========================================= */

.material-section{
    width: 100%;
    padding: 80px 6%;
    background: #f5f5f5;
    box-sizing: border-box;
}

/* ========================================= */
/* COMMON ROW */
/* ========================================= */

.material-box{
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: stretch;

    gap: 85px;

    margin-bottom: 50px;
}

/* ========================================= */
/* LDPE LEFT BOX */
/* ========================================= */

.material-text{
    width: 50%;

    background: #ffffff;

    padding: 55px 50px;

    border-radius: 10px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.08);

    box-sizing: border-box;
}

/* ========================================= */
/* HDPE RIGHT DARK BLUE BOX */
/* ========================================= */

.material2-text{
    width: 50%;

    background: #071c3d;

    padding: 55px 50px;

    border-radius: 10px;

    color: white;

    box-sizing: border-box;
}

/* ========================================= */
/* PP LEFT BOX */
/* ========================================= */

.material3-text{
    width: 50%;

    background: #ffffff;

    padding: 55px 50px;

    border-radius: 10px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.08);

    box-sizing: border-box;
}

/* ========================================= */
/* IMAGE RIGHT */
/* ========================================= */

.material-img{
    width: 50%;
}

.material-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 10px;

    display: block;
}

/* ========================================= */
/* TITLES */
/* ========================================= */

.material-text h2,
.material2-text h2,
.material3-text h2{
    font-size: 40px;

    margin-bottom: 25px;

    font-weight: 700;
}

/* WHITE BOX TITLE */

.material-text h2,
.material3-text h2{
    color: #071c3d;
}

/* DARK BOX TITLE */

.material2-text h2{
    color: white;
}

/* ========================================= */
/* DESCRIPTION */
/* ========================================= */

.card-desc{
    font-size: 16px;

    line-height: 30px;

    margin-bottom: 30px;
}

/* WHITE TEXT */

.material-text .card-desc,
.material3-text .card-desc{
    color: #555;
}

/* DARK TEXT */

.material2-text .card-desc{
    color: rgba(255,255,255,0.82);
}

/* ========================================= */
/* LIST */
/* ========================================= */

.material-text ul,
.material2-text ul,
.material3-text ul{
    padding-left: 22px;
}

.material-text ul li,
.material2-text ul li,
.material3-text ul li{
    font-size: 16px;

    margin-bottom: 18px;

    line-height: 1.8;
}

/* WHITE LIST */

.material-text ul li,
.material3-text ul li{
    color: #333;
}

/* DARK LIST */

.material2-text ul li{
    color: rgba(255,255,255,0.9);
}

/* ========================================= */
/* MOBILE RESPONSIVE */
/* ========================================= */

@media(max-width:992px){

    .material-box{
        flex-direction: column;
        gap: 25px;
    }

    .material-text,
    .material2-text,
    .material3-text,
    .material-img{
        width: 100%;
    }

    .material-text,
    .material2-text,
    .material3-text{
        padding: 40px 28px;
    }

    .material-text h2,
    .material2-text h2,
    .material3-text h2{
        font-size: 32px;
    }

    .material-img img{
        height: auto;
    }
}


/* TESTING SECTION */
.testing-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

/* TITLE */
.testing-title {
    font-size: 30px;
    margin-bottom: 40px;
}

/* GRID */
.testing-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOX */
.testing-box {
    width: 260px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ICON */
.testing-box i {
    font-size: 35px;
    color: #e53935;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* TITLE */
.testing-box h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* TEXT */
.testing-box p {
    color: #666;
    line-height: 1.6;
    font-size: 20px;
}

/* 🔥 HOVER */
.testing-box:hover {
    transform: translateY(-10px);
    background:darkblue;
}

/* hover text */
.testing-box:hover h3,
.testing-box:hover p {
    color: white;
}

/* hover icon */
.testing-box:hover i {
    color: yellow;
    transform: rotate(10deg) scale(1.2);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .testing-grid {
        flex-direction: column;
        align-items: center;
    }

    .testing-box {
        width: 90%;
    }

    .testing-title {
        font-size: 24px;
    }
}






/* ========================================= */
/* MAIN WRAPPER */
/* ========================================= */

.quality-main-wrapper{
    width: 100%;
    padding: 80px 6%;
    background: #f5f5f5;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 35px;

    box-sizing: border-box;
}

/* ========================================= */
/* LEFT SECTION */
/* ========================================= */

.quality-left-section{
    width: 50%;
}

.quality-left-box{
    width: 100%;
    background: #071c3d;

    padding: 55px 50px;

    border-radius: 10px;

    color: white;

    box-sizing: border-box;
    margin-left: -30px;
}

/* ========================================= */
/* RIGHT SECTION */
/* ========================================= */

.quality-right-section{
    width: 50%;
}

.quality-right-box{
    width: 100%;
    background: #ffffff;

    padding: 55px 50px;

    border-radius: 10px;

    color: #111;

    box-sizing: border-box;

    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-left: 30px;
}

/* ========================================= */
/* TITLES */
/* ========================================= */

.quality-left-box h2,
.quality-right-box h2{
    font-size: 40px;
    font-weight: 700;

    margin-bottom: 40px;
}

/* LEFT TITLE */

.quality-left-box h2{
    color: white;
}

/* RIGHT TITLE */

.quality-right-box h2{
    color: #071c3d;
}

/* SECOND TITLE */

.second-title{
    margin-top: 70px;
}

/* ========================================= */
/* LIST */
/* ========================================= */

.quality-left-box ul,
.quality-right-box ul{
    list-style: none;

    padding: 0;
    margin: 0;
}

/* ========================================= */
/* ITEMS */
/* ========================================= */

.quality-left-box ul li,
.quality-right-box ul li{
    position: relative;

    padding-left: 28px;

    margin-bottom: 38px;

    padding-bottom: 20px;
}

/* LEFT BORDER */

.quality-left-box ul li{
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* RIGHT BORDER */

.quality-right-box ul li{
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ========================================= */
/* DOT */
/* ========================================= */

.quality-left-box ul li::before,
.quality-right-box ul li::before{
    content: "";

    width: 10px;
    height: 10px;

    border-radius: 50%;

    position: absolute;

    left: 0;
    top: 12px;
}

/* LEFT DOT */

.quality-left-box ul li::before{
    background: #42b7ff;
}

/* RIGHT DOT */

.quality-right-box ul li::before{
    background: #007bff;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.quality-left-box ul li h3,
.quality-right-box ul li h3{
    font-size: 28px;

    font-weight: 600;

    margin-bottom: 12px;
}

/* LEFT HEADING */

.quality-left-box ul li h3{
    color: white;
}

/* RIGHT HEADING */

.quality-right-box ul li h3{
    color: #111;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.quality-left-box ul li p,
.quality-right-box ul li p{
    font-size: 16px;

    line-height: 30px;
}

/* LEFT TEXT */

.quality-left-box ul li p{
    color: rgba(255,255,255,0.82);
}

/* RIGHT TEXT */

.quality-right-box ul li p{
    color: #555;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:992px){

    .quality-main-wrapper{
        flex-direction: column;
    }

    .quality-left-section,
    .quality-right-section{
        width: 100%;
    }

    .quality-left-box,
    .quality-right-box{
        padding: 40px 28px;
    }

    .quality-left-box h2,
    .quality-right-box h2{
        font-size: 32px;
    }

    .quality-left-box ul li h3,
    .quality-right-box ul li h3{
        font-size: 22px;
    }

    .quality-left-box ul li p,
    .quality-right-box ul li p{
        font-size: 15px;

        line-height: 28px;
    }
}
@media(max-width:992px){

    .quality-main-wrapper{
        flex-direction: column;
        gap: 25px;
    }

    .quality-left-section,
    .quality-right-section{
        width: 100%;
    }

    /* REMOVE DESKTOP MARGIN */

    .quality-left-box{
        margin-left: 0 !important;
    }

    .quality-right-box{
        margin-left: 0 !important;
    }

    .quality-left-box,
    .quality-right-box{
        width: 100%;
        padding: 40px 28px;
    }

}








   
    

/* REVIEW SECTION */
.review-section {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

/* TITLE */
.review-title {
    font-size: 30px;
    margin-bottom: 40px;
}

/* GRID */
.review-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOX */
.review-box {
    width: 300px;
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* STARS */
.stars {
    color: gold;
    font-size: 28px;
    margin-bottom: 15px;
}

/* TEXT */
.review-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
}

/* NAME */
.review-box h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

/* INDUSTRY */
.review-box span {
    color: #e53935;
    font-size: 20px;
}

/* 🔥 HOVER */
.review-box:hover {
    transform: translateY(-10px) scale(1.03);
     background: rgb(10, 74, 53) 

}

/* hover text */
.review-box:hover p,
.review-box:hover h3,
.review-box:hover span {
    color: white;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .review-grid {
        flex-direction: column;
        align-items: center;
    }

    .review-box {
        width: 90%;
    }

    .review-title {
        font-size: 24px;
    }
}


/* FAQ SECTION */
.faq-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

/* TITLE */
.faq-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* BOX */
.faq-box {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: #071c3d;
    color: white;
    padding: 18px 20px;
    border: none;
    text-align: left;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.faq-question:hover {
    background: black;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.4s ease;
}

/* TEXT */
.faq-answer p {
    padding: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 20px;
}
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}

.faq-box.active .faq-answer{
    max-height: 300px;
}

/* MOBILE */
@media (max-width: 768px) {

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
    }
}






/* SECTION */
.process-section {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

/* TITLE */
.process-title {
    font-size: 28px;
    margin-bottom: 40px;
}

/* GRID */
.process-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOX */
.process-box {
    background: #071c3d;
    color: white;
    padding: 25px;
    border-radius: 12px;
    width: 325px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    align-items: center;
    margin: 10px;
    
    
}

.process-box h3{
    margin-top: 20px;
    font-size: 20px;
}
.process-box p{
    margin-top: 10px;
    font-size: 20px;
}

/* ICON */
.process-box i {
    font-size: 30px;
    margin-top: 70px;
    display: block;
    transition: 0.3s;
}

/* DETAIL (hidden) */
.process-detail {
    opacity: 0;
    transform: translateY(20px);
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.5;
    transition: 0.4s;
}

/* 🔥 HOVER EFFECT */
.process-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: black;
}

/* ICON ANIMATION */
.process-box:hover i {
    transform: rotate(10deg) scale(1.2);
    color: yellow;
}

/* SHOW DETAIL */
.process-box:hover .process-detail {
    opacity: 1;
    transform: translateY(0);
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
}



