/* ------------------ ABOUT AREA ------------------ */
.about-us-area {
    min-height: 100vh;
    display: flex;
    gap: 4rem;
    padding: 12vh 6vw;
    align-items: center;
    background-color: rgba(20, 36, 57, 0.2);

}

/* ------------------ TEXT AREA ------------------ */
.text-area {
    flex: 1;
    animation: fadeSlideLeft 1s ease forwards;
}

.about-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.about-text-1,
.about-text-2,
.about-text-3 {
    display: inline-block;
    background: rgba(26, 115, 232, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    animation: fadeIn 1.2s ease forwards;
    margin-bottom: 0.5dvh;
}

.about-para {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 520px;
}

.text-area ul {
    list-style: none;
    margin-top: 1.5rem;
}

.text-area li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    animation: fadeSlideUp 0.8s ease forwards;
}

.text-area li i {
    color: #16a34a;
}

/* ------------------ IMAGE AREA ------------------ */
.image-area {
    flex: 1.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideRight 1s ease forwards;
    height: 50dvh;
}

/* main image */
.image-area .main-image {
    width: 80%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.image-area .main-image:hover {
    transform: translateY(-8px) scale(1.02);
}

/* floating images */
.image-area .exp-container,
.image-area .sub-image {
    position: absolute;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 5s ease-in-out infinite;
}

.image-area .exp-container {
    top: -5%;
    right: 5%;
    width: clamp(120px, 19vw, 220px);
    height: clamp(200px, 20vh, 250px);
}

.image-area .sub-image {
    bottom: -5%;
    left: 5%;
    width: clamp(140px, 20vw, 260px);
    height: clamp(200px, 24vh, 300px);
    animation-delay: 1.5s;
}

.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-action-btns .btn-hero-action {
    background-color: var(--hero-section-text-1);
    color: #f1f1f1;
    border-radius: 50px;
    height: 6dvh;
}

/* ------------------ ANIMATIONS ------------------ */
@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 992px) {
    .about-us-area {
        flex-direction: column;
        padding: 10vh 5vw;
        gap: 3rem;
    }

    .image-area {
        width: 100%;
    }

    .image-area .main-image {
        width: 90%;
        height: auto;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 576px) {
    .about-title {
        text-align: center;
    }

    .about-para {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .text-area ul {
        align-items: center;
    }

    .image-area .exp-container,
    .image-area .sub-image {
        display: none;
        /* cleaner on mobile */
    }
}