.about{
    min-height:100vh;
    padding:70px 0;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.about-container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
}

.about-img-box{
    width:450px;
    height:520px;
    border-radius:30px;
    overflow:hidden;
    background:#f7faf7;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.about-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@keyframes popAboutCard{
    0%{
        opacity:0;
        transform:scale(.2);
    }

    60%{
        opacity:1;
        transform:scale(1.08);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }
}

.about-card{
    position:absolute;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    padding:16px 22px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    text-align:center;
    opacity:0;
    transform:scale(.2);
    will-change:transform,opacity;
}

.about-card.show{
    animation:popAboutCard .7s cubic-bezier(.22,1,.36,1) forwards;
}

.card-1{
    top:35px;
    left:0;
}

.card-1.show{
    animation-delay:.25s;
}

.card-2{
    bottom:35px;
    right:0;
}

.card-2.show{
    animation-delay:.8s;
}

.about-card h3{
    color:#0D4AAE;
    font-size:1.8rem;
    margin-bottom:4px;
}

.about-card span{
    color:#666;
    font-size:.85rem;
}

.about-content{
    flex:1;
    max-width:600px;
}

.about-tag{
    display:inline-block;
    padding:9px 22px;
    border-radius:50px;
    background:#0D4AAE;
    color:#fff;
    font-size:.82rem;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:16px;
}

.about-content h2{
    font-size:2.8rem;
    line-height:1.15;
    color:#111827;
    margin-bottom:18px;
}

.about-content h2 span{
    color:#0D4AAE;
}

.about-content p{
    color:#6b7280;
    line-height:1.65;
    font-size:1rem;
    margin-bottom:28px;
}

.about-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:30px;
}

.about-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.about-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#0D4AAE;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:1.15rem;
    flex-shrink:0;
    box-shadow:0 12px 24px rgba(13,74,174,.22);
}

.about-item h4{
    font-size:1.05rem;
    color:#111827;
    margin-bottom:4px;
}

.about-item p{
    margin:0;
    color:#6b7280;
    font-size:.92rem;
    line-height:1.5;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    border-radius:50px;
    background:#0D4AAE;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 16px 30px rgba(13,74,174,.25);
}

.about-btn:hover{
    background:#083B8A;
    transform:translateY(-4px);
}

@media(max-width:991px){

    .about{
        min-height:auto;
        padding:90px 0;
    }

    .about-container{
        padding:0 30px;
        flex-direction:column;
        gap:50px;
    }

    .about-content{
        max-width:100%;
        text-align:center;
    }

    .about-list{
        text-align:left;
    }

    .about-img-box{
        width:100%;
        max-width:420px;
        height:480px;
    }

    .card-1{
        left:20px;
    }

    .card-2{
        right:20px;
    }

    .about-btn{
        margin:auto;
    }
}

@media(max-width:576px){

    .about{
        padding:70px 0;
    }

    .about-container{
        padding:0 20px;
    }

    .about-content h2{
        font-size:2.2rem;
    }

    .about-content p{
        font-size:.95rem;
    }

    .about-img-box{
        height:360px;
    }

    .about-item{
        gap:12px;
    }

    .about-icon{
        width:46px;
        height:46px;
        font-size:1rem;
    }

    .about-card{
        padding:12px 16px;
    }

    .about-card h3{
        font-size:1.4rem;
    }

    .about-card span{
        font-size:.75rem;
    }
}