/* about section */
.about-company-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.about-company-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-company-content p {
    margin-bottom: 18px;
    color: #6b6b6b;
}

.about-intro {
    font-size: 17px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.about-stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-stat-item span {
    font-size: 14px;
    color: #777;
}

/* Feature List */
.about-feature-list {
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-feature i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Button */
.about-btn {
    margin-top: 15px;
}

/* Image Layout */
.about-company-images {
    position: relative;
}

.about-main-image img {
    width: 100%;
    border-radius: 12px;
    animation: fadeSlideUp 1s ease forwards;
}

.about-secondary-image {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 60%;
}

.about-secondary-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Reserved Image Space */
.about-extra-image {
    position: absolute;
    top: -130px;
    right: -190px;
    width: 50%;
}

.about-extra-image img {
    border-radius: 12px;
    border: 5px solid white;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

/* Animation */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:991px){

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-secondary-image,
    .about-extra-image {
        position: relative;
        width: 100%;
        margin-top: 20px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

}
