/* =========================
   ABOUT SECTION
========================= */

.about-section{
    background:#000;
    padding:80px 0;
    overflow:hidden;
}

.about-container{
    width:92%;
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* =========================
   LEFT IMAGES
========================= */

.about-images{
    width:42%;
    position:relative;
    min-height:520px;
}

.img-box{
    position:absolute;
    overflow:hidden;
    border-radius:15px;
}

.img-box img{
    width:100%;
    max-width:600px;
    height:auto;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.img-box:hover img{
    transform:scale(1.05);
}

/* First Image */

.img-one{
    width:350px;
    height:420px;
    top:0;
    left:0;
    z-index:2;
}

/* Second Image */

.img-two{
    width:280px;
    height:320px;
    bottom:0;
    left:220px;
    z-index:3;
    border:6px solid #000;
}
/* =========================
   CONTACT BUTTON
========================= */

.about-btn{
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

.about-btn a{
    display:inline-block;
    padding:14px 35px;
    width: 330px;
    background:#c40000;
    color:#fff;
    font-size:30px;
    font-weight:600;
    text-decoration:none;
    border-radius:50px;
    transition:.4s ease;
}

.about-btn a:hover{
    background:white;
    color:black;

}
/* =========================
   CONTENT
========================= */

.about-content{
    width:58%;
}

.sub-title{
    color:#ff8c2b;
    font-size:20px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
}

.title-line{
    width:90px;
    height:3px;
    background:#ff8c2b;
    margin:15px 0 25px;
}

.about-content h2{
    color:#fff;
    font-size:38px;
    line-height:1.4;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#c40000;
}

.about-content p{
    color:#ddd;
    font-size:18px;
    line-height:2;
    margin-bottom:20px;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

    .about-container{
        gap:50px;
    }

    .img-one{
        width:300px;
        height:380px;
    }

    .img-two{
        width:240px;
        height:280px;
        left:180px;
    }

    .about-content h2{
        font-size:32px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .about-container{
        flex-direction:column;
    }

    .about-images{
        width:100%;
        max-width:600px;
        margin:auto;
        min-height:500px;
    }

    .about-content{
        width:100%;
        text-align:center;
    }

    .title-line{
        margin:15px auto 25px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .about-images{
        min-height:auto;
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .img-box{
        position:relative;
        width:100%;
        height:auto;
        left:auto;
        top:auto;
        bottom:auto;
    }

    .img-one,
    .img-two{
        width:100%;
        height:auto;
    }

    .img-box img{
        height:auto;
    }

    .about-content h2{
        font-size:26px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.9;
    }
}
/* Tablet */

@media(max-width:991px){

    .about-btn{
        position:relative;
        bottom:auto;
        left:auto;
        transform:none;
        text-align:center;
        margin-top:25px;
    }
}

/* Mobile */

@media(max-width:768px){

    .about-btn{
        margin-top:20px;
    }

    .about-btn a{
        width:100%;
        max-width:250px;
        text-align:center;
        font-size:16px;
        padding:12px 25px;
    }
}
@media(max-width:991px){

    .about-container{
        flex-direction:column;
    }

    /* Content First */
    .about-content{
        order:1;
        width:100%;
        text-align:center;
    }

    /* Images Second */
    .about-images{
        order:2;
        width:100%;
        max-width:600px;
        margin:auto;
        min-height:500px;
    }

    .title-line{
        margin:15px auto 25px;
    }
}
@media(max-width:768px){
 .about-section{
        padding:30px 0;   /* 80px se reduce */
    }
    .about-content{
        order:1;
    }

    .about-images{
        order:2;
        margin-top:30px;
    }

    .about-images{
        min-height:auto;
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .img-box{
        position:relative;
        width:100%;
        height:auto;
        left:auto;
        top:auto;
        bottom:auto;
    }

    .img-one,
    .img-two{
        width:100%;
        height:auto;
    }

    .img-box img{
        height:auto;
    }

    .about-content h2{
        font-size:26px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.9;
        text-align:left; /* optional */
    }
}