/* =========================
   WHY CHOOSE US
========================= */

.why-choose-section{
    background:#000;
    padding:90px 0;
    overflow:hidden;
}

.why-container{
    width:92%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* =========================
   LEFT IMAGES
========================= */

.why-images{
    width:42%;
    position:relative;
    min-height:550px;
}

.why-img{
    position:absolute;
    overflow:hidden;
    border-radius:18px;
}

.why-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
    top:10px;
}

.why-img:hover img{
    transform:scale(1.08);
}

/* First Image */

.img1{
    width:380px;
    height:500px;
    top:20px;
    left:0;
    z-index:2;
}

/* Second Image */



/* =========================
   RIGHT CONTENT
========================= */

.why-content{
    width:58%;
}

.why-subtitle{
    color:#ff8c2b;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.why-line{
    width:80px;
    height:3px;
    background:#ff8c2b;
    margin:15px 0 25px;
}

.why-content h2{
    color:#fff;
    font-size:32px;
    margin-bottom:35px;
    line-height:1.4;
}

.why-content h2 span{
    color:#c40000;
}

/* =========================
   CARDS
========================= */

.why-card{
    width:100%;
    background:#111;

    border-left:4px solid #ff8c2b;

    padding:25px;
    margin-bottom:22px;

    display:flex;
    align-items:flex-start;
    gap:20px;

    border-radius:14px;

    transition:.4s;
}

.why-card:hover{
    transform:translateY(-6px);
    background:#161616;
}

.why-icon{
    min-width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#ff8c2b;
}

.why-icon i{
    color:#fff;
    font-size:26px;
}

.why-text h3{
    color:#fff;
    font-size:24px;
    margin-bottom:8px;
}

.why-text p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.8;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .why-container{
        flex-direction:column;
        gap:40px;
    }

    /* CONTENT FIRST */

    .why-content{
        width:100%;
        order:1;
        text-align:center;
    }

    .why-images{
        width:100%;
        order:2;
        max-width:650px;
        margin:auto;
    }

    .why-line{
        margin:15px auto 25px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .why-choose-section{
        padding:50px 0;
    }

    .why-content h2{
        font-size:28px;
    }

    .why-images{
        min-height:auto;

        display:flex;
        flex-direction:column;

        gap:20px;
    }

    .why-img{
        position:relative;
        width:100%;
        height:auto;
        top:auto;
        left:auto;
        bottom:auto;
    }

    .img1{
        width:100%;
        height:auto;
    }

    .why-img img{
        height:auto;
    }

    .why-card{
        flex-direction:column;
        text-align:center;
        padding:20px;
    }

    .why-icon{
        margin:auto;
    }

    .why-text h3{
        font-size:20px;
    }

    .why-text p{
        font-size:15px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .why-container{
        width:94%;
    }

    .why-content h2{
        font-size:24px;
    }

    .why-card{
        padding:18px;
    }
}