/* ===================================
   ABOUT SECTION
=================================== */

.about {

    padding: 120px 8%;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 80px;

    flex-wrap: wrap;
}

/* ===================================
   ABOUT IMAGE
=================================== */

.about-image {

    flex: 1;

    min-width: 350px;

    position: relative;
}

.about-image img {

    width: 100%;

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15);

    transition: 0.4s;
    margin-top: -35px;
}

.about-image img:hover {

    transform: scale(1.03);
}

/* Floating Experience Box */

.about-image::after {

    /* content: "15+ Years Experience"; */

    position: absolute;

    bottom: -20px;

    right: -20px;

    background: #4f46e5;

    color: #fff;

    padding: 18px 25px;

    border-radius: 15px;

    font-size: 16px;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(79,70,229,.3);
}

/* ===================================
   ABOUT CONTENT
=================================== */

.about-content {

    flex: 1;

    min-width: 350px;
}

.about-content span {

    color: #4f46e5;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-content h2 {

    margin-top: 15px;

    margin-bottom: 25px;

    font-size: 48px;

    line-height: 1.2;

    color: #0b1c63;
}

.about-content p {

    font-size: 17px;

    color: #666;

    line-height: 1.9;

    margin-bottom: 30px;
}

/* ===================================
   FEATURES
=================================== */

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 35px;
}

.about-features div {

    background: #f5f7ff;

    padding: 9px;

    border-radius: 12px;

    font-weight: 500;

    color: #0b1c63;

    transition: 0.3s;

    border-left: 4px solid #4f46e5;
}

.about-features div:hover {

    transform: translateY(-5px);

    background: #eef1ff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

/* ===================================
   READ MORE BUTTON
=================================== */

.read-more-btn {

    display: inline-block;

    background: #4f46e5;

    color: white;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}

.read-more-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(79,70,229,.4);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .about{

        flex-direction: column;

        text-align: center;
    }

    .about-content h2{

        font-size: 38px;
    }

    .about-features{

        grid-template-columns: 1fr;
    }

    .about-image::after{

        right: 10px;
    }
}

@media(max-width:576px){

    .about{

        padding: 80px 5%;
    }

    .about-content h2{

        font-size: 30px;
    }

    .about-content p{

        font-size: 15px;
    }

}