.about-section{
    padding:80px 0;
    width:100%;
}

.about-container{
    width:90%;
    margin:auto;
}


.image-wrapper{
      position:relative;
    width:100%;
    border-radius:20px;
}

.main-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    border-radius:20px;
}


.experience-box{
    position:absolute;
    top:-15px;
    left:-15px;
    width:260px;
    height:108px;
    background:rgba(63,65,85,.85);
    backdrop-filter:blur(12px);
    border:2px solid rgba(212,210,248,1);
    border-radius:18px;
    padding:15px 18px;
    z-index:5;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.experience-box h2{
    color:rgba(212,210,248,1);
    font-size:42px;
    font-weight:700;
    line-height:1;
    margin-bottom:8px;
}

.experience-box p{
    color:#d6d6d6;
    font-size:12px;
    line-height:1.4;
    margin:0;
}


.content-box{
    padding-left:30px;
}

.section-title{
    font-size:58px;
    font-weight:800;
    color:#09145a;
    margin-bottom:15px;
    line-height:1.1;
}

.subtitle{
    color:#12205d;
    font-weight:700;
    margin-bottom:20px;
}

.content-box p{
    color:#6b6b6b;
    line-height:1.9;
    margin-bottom:18px;
}


.service-grid{
    margin-top:30px;
}

.service-card{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    border-radius: 10px;
    transition:.3s;
    border:none;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);

}

.service-card:hover{
    transform:translateY(-4px);
}

.service-card img{
    width:35px;
    height:35px;
    object-fit:contain;
    padding:10px;
    border-radius:10px;
    background:linear-gradient(
        135deg,
        #1D2755 0%,
        #324A9E 100%
    );
}

.service-card span{
    font-size:16px;
    font-weight:500;
    color:rgba(26, 26, 77, 1);
    font-style: Medium;

}


.explore-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:linear-gradient(
        90deg,
        #7b61ff,
        #9b7dff
    );
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    margin-top:10px;
    font-weight:600;
    transition:.3s;
}

.explore-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

@media (min-width:2200px){
    .custom-container{
        max-width:100%;
    }

    .main-image{
        width: 700px;
        height: 700px;
        border-radius: 12px;
    }

    .section-title{
        font-size:80px;
    }

    .content-box p{
        font-size:20px;
    }
}
@media (min-width:1800px) and (max-width:2199px){

    .custom-container{
        max-width:1700px;
    }

    .main-image{
        height:700px;
    }

    .section-title{
        font-size:72px;
    }

    .content-box p{
        font-size:18px;
    }
}
@media (max-width:1399px){

    .main-image{
        height:600px;
    }

    .section-title{
        font-size:52px;
    }
}
@media (max-width:1199px){

    .main-image{
        height:520px;
    }

    .content-box{
        padding-left:20px;
    }

    .section-title{
        font-size:46px;
    }
}
@media (max-width:991px){

    .about-section{
        padding:70px 0;
    }

    .main-image{
        height:450px;
    }

    .content-box{
        padding-left:0;
        margin-top:40px;
    }

    .section-title{
        font-size:42px;
    }
}
@media (max-width:767px){

    .about-section{
        padding:60px 0;
    }

    .main-image{
        height:350px;
        border-radius:16px;
    }

    .section-title{
        font-size:34px;
    }

    .subtitle{
        font-size:18px;
    }

    .experience-box{
        width:150px;
        height:85px;

        top:-10px;
        left:-10px;

        padding:12px;
    }

    .experience-box h2{
        font-size:32px;
        margin-bottom:4px;
    }

    .experience-box p{
        font-size:10px;
    }

   

    .explore-btn{
        width:100%;
    }
}
@media (max-width:500px) and (min-width:375px){

    .about-section{
        padding:40px 0;
    }

    .main-image{
        height:260px;
    }

    .section-title{
        font-size:26px;
    }

    .experience-box{
        width:130px;
        height:75px;
    }

    .experience-box h2{
        font-size:26px;
    }

    .experience-box p{
        font-size:9px;
    }

    .service-card span{
        font-size:14px;
    }

      .service-grid .col-md-6{
        width:100%;
        flex:unset;
        max-width:100%;
        padding-left:6px;
        padding-right:6px;
    }

    .service-grid{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
    }

    .content-box{
        margin-top: -30px;
    }
}


