﻿/* ===============================
   ABOUT US - MODERN SHOWCASE
   =============================== */

.home-about-alt {
    position: relative;
    background: linear-gradient(120deg, #fff 60%, #f8fafc 100%);
    padding: 100px 0;
    overflow: hidden;
    padding-top: 50px;
}

    .home-about-alt:before {
        content: "";
        position: absolute;
        background: url(../../../Design/img/images/mobileFix.jpg) no-repeat;
        background-size: cover;
        opacity: .2;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

.home-about-decor.right {
    right: 0;
}

.home-about-decor.left {
    left: 0;
}

.home-about-decor {
    position: absolute;
    bottom: 0;
}

.home-about-decor {
    position: absolute;
    bottom: 0;
}

.home-about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

    .home-about-inner:before {
        content: "";
        position: absolute;
        width: 287px;
        height: 20px;
        background: linear-gradient(90deg,rgba(255, 197, 58, 1) 0%, rgba(0, 0, 0, 1) 100%);
        z-index: 2;
        bottom: 110px;
        border-radius: 10px;
    }

.about-img-box {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-main {
    position: relative;
    width: 526px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

    .about-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .about-img-main:hover img {
        transform: scale(1.08);
    }

.about-img-overlay {
    position: absolute;
    bottom: -48px;
    right: -70px;
    width: 305px;
    height: 247px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 2;
}

    .about-img-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-stamp {
    position: absolute;
    bottom: -48px;
    left: -30px;
    background: var(--default-color-1);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* -------------------------------
   TEXT CONTENT
-------------------------------- */
.about-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

    .about-content .label {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 30px;
        background: var(--default-color-1);
        color: #fff;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 36px;
        color: #222;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0px;
        margin-top: 2px;
    }

        .about-content h2 span {
            color: var(--default-color-1);
        }

    .about-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 35px;
    }

/* -------------------------------
   BUTTONS
-------------------------------- */
.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    display: flex;
    align-items: center;
    margin-top: 21px;
    background: var(--default-color-1);
    width: max-content;
    border-radius: 44px;
    padding: 4px 10px;
    position: relative;
}

    .about-actions:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 106px;
        transition: .3s;
        animation: zoomin 2s infinite linear;
        pointer-events: none;
    }

.btn-main {
    display: inline-flex;
    align-items: center;
    background: var(--default-color-2);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease;
}

    .btn-main:hover {
        background: #fff;
        color: var(--default-color-2);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all .3s ease;
    color: #fff;
    font-family: 'InterB';
    font-size: 24px;
    font-style: normal;
    font-weight: 575;
    line-height: normal;
    position: relative;
    margin-top: 3px;
}

    .btn-call:hover {
        color: var(--default-color-2);
    }

/* -------------------------------
   RESPONSIVE
-------------------------------- */
/* ===============================
   RESPONSIVE MOBILE (max-width: 739px)
   =============================== */
@media (max-width: 739px) {
    .home-about-alt {
        padding: 15px 0 40px;
    }

    .home-about-inner:before {
        bottom: 10px;
    }

    .home-about-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 0px;
        padding: 0;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
    }

        .about-content .label {
            font-size: 14px;
            padding: 5px 12px;
        }

        .about-content h2 {
            font-size: 24px;
            line-height: 1.35;
            margin-bottom: 12px;
        }

        .about-content p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 25px;
            padding: 0 4px;
            text-align: justify;
        }

    .about-actions {
        flex-direction: row;
        align-items: center;
        margin: 0 auto;
        gap: 10px;
        padding: 6px 14px;
    }

    .btn-main {
        font-size: 15px;
        padding: 10px 22px;
    }

    .btn-call {
        font-size: 14px;
    }

    .about-img-box {
        margin-top: 25px;
    }

    .about-img-main {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    .about-img-overlay,
    .about-stamp {
        display: none;
    }
}


@keyframes zoomin {
    0% {
        opacity: 0;
        box-shadow: 0 0 0 #b07e04;
    }

    70% {
        box-shadow: 0 0 0 30px transparent;
        opacity: 1;
    }

    100% {
        opacity: 0;
        box-shadow: 0 0 0 transparent;
    }
}


@media (max-width: 576px) {


    .btn-main {
        padding: 10px 22px;
        font-size: 15px;
    }
}
