﻿/*==================================================
                    ABOUT
==================================================*/

.about {
    position: relative;
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

    .about::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(200,155,60,.05);
        top: -220px;
        right: -180px;
    }

    .about::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(8,17,31,.03);
        bottom: -180px;
        left: -140px;
    }

.about-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/*==================================================
                    IMAGE
==================================================*/

.about-image {
    position: relative;
    animation: fadeUp .8s ease forwards;
}

    .about-image img {
        width: 100%;
        display: block;
        border-radius: 26px;
        box-shadow: 0 25px 70px rgba(0,0,0,.12);
        transition: .45s;
    }

    .about-image:hover img {
        transform: scale(1.03);
    }

    .about-image::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border: 2px solid rgba(200,155,60,.25);
        border-radius: 36px;
        top: -25px;
        right: -25px;
        z-index: -1;
    }

    .about-image::after {
        content: "";
        position: absolute;
        width: 430px;
        height: 430px;
        border-radius: 50%;
        background: radial-gradient( rgba(200,155,60,.10), transparent 70% );
        left: -120px;
        bottom: -120px;
        z-index: -2;
    }

/*==================================================
                EXPERIENCE CARD
==================================================*/

.experience-card {
    position: absolute;
    top: 35px;
    left: -35px;
    width: 170px;
    height: 170px;
    border-radius: 26px;
    background: linear-gradient(145deg,#D8AF58,#B88628);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 60px rgba(200,155,60,.35);
    z-index: 5;
}

    .experience-card h3 {
        font-size: 54px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
        margin-bottom: 10px;
    }

    .experience-card span {
        font-size: 17px;
        font-weight: 700;
        text-align: center;
    }

/*==================================================
                    CONTENT
==================================================*/

.about-content {
    animation: fadeUp .9s ease forwards;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 44px;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 2;
    margin-bottom: 40px;
}
/*==================================================
                    FEATURES
==================================================*/

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.feature {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(200,155,60,.15);
    border-radius: 18px;
    transition: .35s;
    animation: fadeUp .8s forwards;
}

    .feature:nth-child(1) {
        animation-delay: .10s;
    }

    .feature:nth-child(2) {
        animation-delay: .20s;
    }

    .feature:nth-child(3) {
        animation-delay: .30s;
    }

    .feature:nth-child(4) {
        animation-delay: .40s;
    }

    .feature::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
        transform: scaleX(0);
        transition: .35s;
    }

    .feature::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -40%;
        width: 55%;
        height: 260%;
        background: rgba(255,255,255,.25);
        transform: rotate(25deg);
        transition: .8s;
    }

    .feature:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,.08);
    }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature:hover::after {
            left: 150%;
        }

    /*==================================================
                    ICON
==================================================*/

    .feature i {
        position: relative;
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FBF6EC;
        color: var(--primary-color);
        font-size: 24px;
        overflow: hidden;
        transition: .45s;
    }

        .feature i::after {
            content: "";
            position: absolute;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: radial-gradient(rgba(200,155,60,.20),transparent);
            transform: scale(.6);
            transition: .45s;
        }

    .feature:hover i {
        background: var(--primary-color);
        color: #fff;
        transform: rotateY(180deg);
    }

        .feature:hover i::after {
            transform: scale(1.2);
        }

    .feature h4 {
        font-size: 20px;
        color: var(--secondary-color);
        margin-bottom: 6px;
    }

    .feature span {
        color: var(--text-color);
        font-size: 15px;
    }

/*==================================================
                    STATS
==================================================*/

.about-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.about-stat {
    text-align: center;
}

    .about-stat h3 {
        font-size: 42px;
        color: var(--primary-color);
        font-weight: 900;
        margin-bottom: 8px;
    }

    .about-stat span {
        color: var(--text-color);
        font-size: 15px;
    }

/*==================================================
                    BUTTON
==================================================*/

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 38px;
    border-radius: 60px;
    background: linear-gradient(145deg,#D8AF58,#B88628);
    color: #fff;
    font-weight: 700;
    transition: .35s;
    box-shadow: 0 18px 40px rgba(200,155,60,.25);
}

    .about-btn:hover {
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 25px 50px rgba(200,155,60,.35);
    }

    .about-btn i {
        transition: .35s;
    }

    .about-btn:hover i {
        transform: translateX(-6px);
    }

/*==================================================
                FADE UP
==================================================*/

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .about {
        padding: 90px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .about-content {
        text-align: center;
    }

        .about-content h2 {
            font-size: 36px;
        }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .experience-card {
        top: 20px;
        left: 20px;
        width: 140px;
        height: 140px;
    }

        .experience-card h3 {
            font-size: 42px;
        }
}

@media(max-width:576px) {

    .about {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }
}