
/* ================= ABOUT SECTION ================= */
.about-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff, #fff3e8);
    overflow: hidden;
}

/* ================= IMAGE ================= */
.about-img-wrapper {
    position: relative;
    z-index: 2;
}

/* BACK SHAPE */
.img-shape {
    position: absolute;
    width: 85%;
    height: 100%;
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    border-radius: 20px;
    top: 30px;
    left: -30px;
    z-index: -1;
}

/* IMAGE */
.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #ff7a00;
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 1px;
}

/* ================= CONTENT ================= */
.about-content .sub-title {
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.3;
}

.about-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* ================= FEATURES ================= */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about-features div {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    width: 22px;
    height: 22px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

    .about-modern {
        padding: 70px 0;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        display: none;
    }

    .img-shape {
        display: none;
    }
}