/*=========================================
            ABOUT HOME SECTION
=========================================*/

.about-home{
    padding:100px 0;
    background:#f8fbff;
    overflow:hidden;
}

.about-home .container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*================ IMAGE =================*/

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
    object-fit:cover;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.6s;
}

.about-image:hover img{

    transform:scale(1.05);

}

/*================ Experience Card =================*/

.experience-box{

    position:absolute;

    left:-30px;
    bottom:40px;

    width:180px;

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:30px 20px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    animation:float 3s infinite ease-in-out;

}

.experience-box h2{

    color:#0b3d91;

    font-size:55px;

    margin-bottom:5px;

}

.experience-box span{

    color:#555;

    font-size:17px;

    font-weight:600;

}

/*================ CONTENT =================*/

.section-tag{

    display:inline-block;

    background:#e8f1ff;

    color:#0b3d91;

    padding:10px 25px;

    border-radius:50px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.about-content h2{

    font-size:48px;

    line-height:1.3;

    color:#0d1b4c;

    margin-bottom:25px;

}

.about-content h2 span{

    color:#ff6b00;

}

.about-content p{

    font-size:18px;

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

/*================ FEATURES =================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    font-weight:600;

    color:#333;

}

.feature i{

    color:#16a34a;

    font-size:20px;

}

/*================ BUTTONS =================*/

.about-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.about-btn,
.download-btn{

    text-decoration:none;

    padding:16px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

/* Primary Button */

.about-btn{

    background:linear-gradient(135deg,#0b3d91,#004aad);

    color:#fff;

    box-shadow:0 12px 30px rgba(11,61,145,.3);

}

.about-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(11,61,145,.4);

}

/* Secondary Button */

.download-btn{

    border:2px solid #0b3d91;

    color:#0b3d91;

    background:#fff;

}

.download-btn:hover{

    background:#0b3d91;

    color:#fff;

}

/*================ FLOAT =================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ------------------------------- */

/*=========================================
        INITIAL STATE
=========================================*/

.about-image,
.about-content,
.feature,
.about-buttons,
.experience-box{

    opacity:0;

}

/*=========================================
        IMAGE
=========================================*/

.show-image{

    animation:imageLeft 1s forwards;

}

/*=========================================
        CONTENT
=========================================*/

.show-content{

    animation:contentRight 1s .3s forwards;

}

/*=========================================
        EXPERIENCE
=========================================*/

.show-experience{

    animation:zoomIn .8s .6s forwards;

}

/*=========================================
        FEATURES
=========================================*/

.show-feature{

    animation:fadeUp .6s forwards;

}

/*=========================================
        BUTTONS
=========================================*/

.show-buttons{

    animation:buttonUp .8s .8s forwards;

}

/*=========================================
        KEYFRAMES
=========================================*/

@keyframes imageLeft{

from{

opacity:0;

transform:translateX(-100px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes contentRight{

from{

opacity:0;

transform:translateX(100px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes zoomIn{

from{

opacity:0;

transform:scale(.5);

}

to{

opacity:1;

transform:scale(1);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes buttonUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}