.about{
    padding:100px 10%;
    background:#0f172a;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:380px;
    height:380px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #38bdf8;
    box-shadow:0 0 40px rgba(56,189,248,.4);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.05);
}

.about-content{
    flex:1.5;
}

.section-tag{
    color:#38bdf8;
    font-size:18px;
    font-weight:600;
}

.about-content h2{
    color:#fff;
    font-size:48px;
    margin-top:10px;
}

.about-content h3{
    color:#94a3b8;
    margin-bottom:20px;
}

.about-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:15px;
}

.about-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.info-box{
    background:#1e293b;
    padding:20px;
    border-radius:15px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.info-box:hover{
    transform:translateY(-10px);
    border-color:#38bdf8;
}

.info-box h4{
    color:#38bdf8;
    margin-bottom:10px;
}

.info-box p{
    margin:0;
    color:#fff;
}

.about-btn{
    display:inline-block;
    padding:14px 35px;
    background:#38bdf8;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(56,189,248,.4);
}
@media(max-width:992px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-image img{
        width:300px;
        height:300px;
    }

    .about-info{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:35px;
    }

    .about-content p{
        font-size:15px;
    }
}