/* =========================================================
ADVANCED CORPORATE SHOWCASE
========================================================= */

.advanced-corporate-showcase {

    position: relative;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fafc
        );

    overflow: hidden;

}

/* =========================================================
TITLE AREA
========================================================= */

.corporate-mini-title {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background:
        rgba(13,110,253,0.10);

    color: #0d6efd;

    font-size: 0.9rem;
    font-weight: 600;

    margin-bottom: 22px;

}

.corporate-main-title {

    font-size: 3rem;
    font-weight: 700;

    line-height: 1.3;

    color: #0f172a;

    margin-bottom: 28px;

}

.corporate-main-description {

    font-size: 1.05rem;

    line-height: 2;

    color: #475569;

}

/* =========================================================
ROWS
========================================================= */

.corporate-row {

    margin-bottom: 140px;

}

/* =========================================================
CONTENT
========================================================= */

.corporate-content {

    position: relative;

    padding-right: 40px;

}

/* NUMBER */

.corporate-count {

    position: absolute;

    top: -55px;
    left: 0;

    font-size: 5.5rem;
    font-weight: 700;

    color:
        rgba(13,110,253,0.07);

}

/* TITLE */

.corporate-content h3 {

    font-size: 2.2rem;
    font-weight: 700;

    line-height: 1.4;

    color: #020617;

    margin-bottom: 25px;

    position: relative;
    z-index: 2;

}

/* PARAGRAPH */

.corporate-content p {

    font-size: 1.02rem;

    line-height: 2;

    color: #475569;

    margin-bottom: 30px;

    position: relative;
    z-index: 2;

}

/* LIST */

.corporate-content ul {

    padding-left: 0;

    margin-bottom: 35px;

}

.corporate-content ul li {

    list-style: none;

    position: relative;

    padding-left: 30px;

    margin-bottom: 14px;

    color: #334155;

    font-weight: 500;

}

.corporate-content ul li::before {

    content: "\f058";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    left: 0;
    top: 0;

    color: #0d6efd;

}

/* BUTTON */

.corporate-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 34px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #6610f2
        );

    color: #ffffff;

    font-weight: 600;

    transition: all 0.35s ease;

    text-decoration: none;

}

.corporate-btn:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(13,110,253,0.25);

}

/* =========================================================
IMAGE BOX
========================================================= */

.corporate-image-box {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.14);

}

/* IMAGE */

.corporate-image-box img {

    width: 100%;
    height: 550px;

    object-fit: cover;

    transition: all 0.6s ease;

}

/* HOVER */

.corporate-image-box:hover img {

    transform: scale(1.08);

}

/* OVERLAY */

.corporate-image-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.25)
        );

    z-index: 1;

}

/* GLOW */

.corporate-image-box::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    top: -70px;
    right: -70px;

    background:
        radial-gradient(
            rgba(13,110,253,0.22),
            transparent
        );

    z-index: 1;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .corporate-main-title {

        font-size: 2.5rem;

    }

}

@media (max-width: 991px) {

    .corporate-row {

        margin-bottom: 100px;

    }

    .corporate-content {

        text-align: center;

        padding-right: 0;

    }

    .corporate-count {

        left: 50%;

        transform: translateX(-50%);

    }

    .corporate-content ul li {

        text-align: left;

    }

}

@media (max-width: 768px) {

    .corporate-main-title {

        font-size: 2rem;

    }

    .corporate-content h3 {

        font-size: 1.8rem;

    }

    .corporate-image-box img {

        height: 420px;

    }

}

@media (max-width: 576px) {

    .corporate-row {

        margin-bottom: 70px;

    }

    .corporate-main-title {

        font-size: 1.7rem;

    }

    .corporate-content h3 {

        font-size: 1.45rem;

    }

    .corporate-image-box img {

        height: 300px;

    }

    .corporate-btn {

        width: 100%;

    }

}