/*=========================================
ABOUT SECTION
=========================================*/

.about-section{
    position:relative;
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

/* Decorative Shapes */

.about-section::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:linear-gradient(135deg,#0d6efd22,#00c6ff18);
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.about-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:linear-gradient(135deg,#4facfe18,#00f2fe10);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
}

/*==============================
Section Tag
==============================*/

.section-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(90deg,#213166,#3f7cff);

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    box-shadow:0 10px 30px rgba(33,49,102,.25);

}

.section-tag i{

    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    color:#213166;

    display:flex;
    align-items:center;
    justify-content:center;

}

/*==============================
Heading
==============================*/

.section-title{

    font-size:48px;

    font-weight:800;

    color:#1c2748;

    line-height:1.25;

    margin-top:25px;

}

.section-title span{

    background:linear-gradient(90deg,#213166,#0d6efd,#00b4ff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.section-text{

    font-size:17px;

    line-height:1.9;

    color:#6d7486;

    margin-bottom:18px;

}

/*==============================
Image Section
==============================*/

.about-image{

    position:relative;

    overflow:visible;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transition:.6s;

    border:8px solid #fff;

}

.about-image:hover img{

    transform:scale(1.05);

}

/* Floating Border */

.about-image::before{

    content:'';

    position:absolute;

    top:-18px;

    left:-18px;

    width:100%;

    height:100%;

    border:3px solid #213166;

    border-radius:25px;

    z-index:-1;

}

.about-image::after{

    content:'';

    position:absolute;

    bottom:-18px;

    right:-18px;

    width:100%;

    height:100%;

    border:3px solid #00b4ff;

    border-radius:25px;

    z-index:-2;

}

/*==============================
Experience Card
==============================*/

.experience-card{

    position:absolute;

    bottom:35px;

    left:-40px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);

    padding:28px 35px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    text-align:center;

    min-width:220px;

    animation:floatCard 4s ease-in-out infinite;

}

.experience-card h2{

    font-size:48px;

    font-weight:800;

    color:#213166;

    margin-bottom:5px;

}

.experience-card p{

    margin:0;

    color:#666;

    font-size:15px;

    font-weight:500;

}

/*==============================
Floating Animation
==============================*/

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*==============================
Hover Effect
==============================*/

.about-section:hover .experience-card{

    box-shadow:0 25px 60px rgba(13,110,253,.25);

}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.section-title{

font-size:38px;

}

.experience-card{

left:20px;

bottom:20px;

}

}

@media(max-width:768px){

.about-section{

padding:70px 0;

}

.section-title{

font-size:30px;

}

.section-text{

font-size:16px;

}

.experience-card{

position:relative;

left:0;

bottom:0;

margin-top:-40px;

display:inline-block;

}

.about-image::before,
.about-image::after{

display:none;

}

}

@media(max-width:576px){

.section-tag{

font-size:13px;

padding:10px 18px;

}

.section-title{

font-size:28px;

}

.experience-card{

padding:22px;

min-width:180px;

}

.experience-card h2{

font-size:38px;

}

}