/*=========================
    ABOUT PAGE BANNER
=========================*/

.aboutpage-bannersection {
    position: relative;
    width: 100%;
    height: 340px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.aboutpage-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.24);
}

.aboutpage-banner-content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
}

.aboutpage-banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.aboutpage-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 500;
}

.aboutpage-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.aboutpage-breadcrumb a:hover {
    color: #b0c8ff;
}

.aboutpage-breadcrumb i {
    color: #b0c8ff;
    font-size: 14px;
}

.aboutpage-breadcrumb .active {
    color: #b0c8ff;
    font-weight: 600;
}

@media (max-width:991px) {

    .aboutpage-bannersection {
        height: 300px;
    }

    .aboutpage-banner-content h1 {
        font-size: 42px;
    }

}

@media (max-width:768px) {

    .aboutpage-bannersection {
        height: 260px;
    }

    .aboutpage-banner-content h1 {
        font-size: 34px;
    }

    .aboutpage-breadcrumb {
        font-size: 16px;
    }

}

@media (max-width:480px) {

    .aboutpage-bannersection {
        height: 220px;
    }

    .aboutpage-banner-content h1 {
        font-size: 28px;
    }

    .aboutpage-breadcrumb {
        font-size: 15px;
        gap: 6px;
    }

}



/*=====================================
        ABOUT FIRST SECTION
======================================*/

.aboutfirst-section {
    padding: 100px 0;
    background: #f7f6f2;
}

.aboutfirst-wrapper {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/*========================
        LEFT CARD
=========================*/

.aboutfirst-left {
    background: linear-gradient(135deg, #0f43b8 0%, #0f43b8 70%, #2158d8 100%);
    border-radius: 18px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.aboutfirst-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bcd7ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.aboutfirst-subtitle i {
    font-size: 12px;
}

.aboutfirst-left h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 22px;
}

.aboutfirst-left p {
    color: #e8f4ef;
    line-height: 1.8;
    font-size: 16px;
}

.aboutfirst-text {
    margin-top: 28px;
}

/*========================
        TABS
=========================*/

.aboutfirst-tabs {
    display: flex;
    gap: 0;
    margin-top: 35px;
    margin-bottom: 20px;
}

.aboutfirst-tabs a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    background: #051436;
    color: #fff;
    font-weight: 700;
    transition: .35s;
    border-right: 2px solid rgba(255, 255, 255, .15);
}

.aboutfirst-tabs a:first-child {
    border-radius: 8px 0 0 8px;
}

.aboutfirst-tabs a:last-child {
    border-radius: 0 8px 8px 0;
    border-right: none;
}

.aboutfirst-tabs a.active {
    background: #ffffff;
    color: #0f43b8;
}

.aboutfirst-text,
.aboutfirst-feature span {
    transition: .3s;
}

.aboutfirst-tabs a:hover {
    background: #fff;
    color: #0f43b8;
}

/*========================
        FEATURES
=========================*/

.aboutfirst-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.aboutfirst-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aboutfirst-feature i {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: #051436;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.aboutfirst-feature span {
    background: #fff;
    color: #254fb1;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    width: 100%;
}

/*========================
        BOTTOM
=========================*/

.aboutfirst-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.aboutfirst-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #ffffff;
    color: #1c4cbe;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: .35s;
}

.aboutfirst-btn:hover {
    background: #051436;
    color: #ffffff;
}




/*=====================================
        RIGHT SIDE
======================================*/

.aboutfirst-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*========================
        TOP IMAGES
=========================*/

.aboutfirst-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.aboutfirst-image {
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #ddd;
    transition: .4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.aboutfirst-image:hover {
    transform: translateY(-8px);
}

/*========================
        COUNTER CARD
=========================*/

.aboutfirst-counter {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 18px;
}


.progress-circle {

    --progress: 0deg;

    width: 78px;
    height: 78px;

    border-radius: 50%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: conic-gradient(#164ecf 0deg,

            #164ecf var(--progress),

            #ececec var(--progress),

            #ececec 360deg);

}

.progress-circle::before {

    content: "";

    position: absolute;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #fff;

}

.progress-circle span {

    position: relative;

    z-index: 2;

    font-size: 18px;

    font-weight: 700;

    color: #051436;

}

.counter-item h4 {
    font-size: 20px;
    color: #1b1b1b;
    margin-bottom: 5px;
}

.counter-item p {
    color: #777;
    font-size: 15px;
    line-height: 1.5;
}

/*========================
        JOURNEY CARD
=========================*/




.journey-left {
    background: linear-gradient(145deg, #90b0fc49, #0f42b859);
    border-radius: 18px;
    padding: 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-left i {
    width: 60px;
    height: 60px;
    background: #2057d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}

.journey-left h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0f43b8;
}

.journey-left p {
    color: #0f43b8;
    line-height: 1.8;
}


/*========================
        HOVER EFFECT
=========================*/

.aboutfirst-left,
.aboutfirst-counter,
.journey-left {
    transition: .35s ease;
}

.aboutfirst-left:hover,
.aboutfirst-counter:hover,
.journey-left:hover {
    transform: translateY(-6px);
}

.aboutfirst-counter:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.aboutfirst-image:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}


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

@media (max-width:1200px) {

    .aboutfirst-left {
        padding: 35px;
    }

    .aboutfirst-left h2 {
        font-size: 42px;
    }

    .aboutfirst-image {
        min-height: 280px;
    }


}

@media (max-width:991px) {

    .aboutfirst-section {
        padding: 80px 0;
    }

    .aboutfirst-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aboutfirst-left h2 {
        font-size: 38px;
    }

    .aboutfirst-images {
        grid-template-columns: 1fr 1fr;
    }

    .aboutfirst-image {
        min-height: 260px;
    }

    .aboutfirst-counter {
        grid-template-columns: 1fr 1fr;
    }

    .aboutfirst-journey {
        grid-template-columns: 1fr;
    }


}

@media (max-width:768px) {

    .aboutfirst-section {
        padding: 70px 0;
    }

    .aboutfirst-left {
        padding: 30px 25px;
    }

    .aboutfirst-left h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .aboutfirst-tabs {
        flex-direction: column;
    }

    .aboutfirst-tabs a {
        border-radius: 8px !important;
        margin-bottom: 10px;
        border-right: none;
    }

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

    .aboutfirst-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .aboutfirst-images {
        grid-template-columns: 1fr;
    }

    .aboutfirst-image {
        min-height: 320px;
    }

    .aboutfirst-counter {
        grid-template-columns: 1fr;
    }

    .counter-item {
        justify-content: flex-start;
    }



}

@media (max-width:576px) {

    .aboutfirst-section {
        padding: 60px 0;
    }

    .aboutfirst-left {
        border-radius: 15px;
        padding: 25px 20px;
    }

    .aboutfirst-subtitle {
        font-size: 13px;
    }

    .aboutfirst-left h2 {
        font-size: 28px;
    }

    .aboutfirst-left p,
    .aboutfirst-text {
        font-size: 15px;
    }

    .aboutfirst-feature span {
        font-size: 14px;
        padding: 10px 14px;
    }

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



    .aboutfirst-image {
        min-height: 260px;
    }

    .aboutfirst-counter {
        padding: 20px;
    }

    .progress-circle {
        width: 70px;
        height: 70px;
    }

    .progress-circle::before {
        width: 52px;
        height: 52px;
    }

    .progress-circle span {
        font-size: 16px;
    }

    .counter-item h4 {
        font-size: 18px;
    }

    .counter-item p {
        font-size: 14px;
    }

    .journey-left {
        padding: 25px;
    }

    .journey-left h3 {
        font-size: 24px;
    }


    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }

}

@media (max-width:420px) {

    .aboutfirst-left h2 {
        font-size: 24px;
    }

    .aboutfirst-image {
        min-height: 220px;
    }


    .aboutfirst-feature {
        gap: 10px;
    }

    .aboutfirst-feature span {
        font-size: 13px;
    }

}


/*=====================================
        CTA SECTION
======================================*/

.cta-cleaning {

    position: relative;

    overflow: hidden;

    background: #2f7cf6;

    padding: 90px 0;

}

/* watermark */

.cta-cleaning::before {

    content: "";

    position: absolute;

    left: 8%;

    bottom: -20px;

    width: 520px;

    height: 520px;

    opacity: .08;

    background-repeat: no-repeat;

    background-size: contain;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cg fill='none' stroke='white' stroke-width='12'%3E%3Cpath d='M120 170h270l-30 220H150z'/%3E%3Cpath d='M170 170c0-45 35-80 80-80s80 35 80 80'/%3E%3Ccircle cx='110' cy='90' r='18'/%3E%3Ccircle cx='390' cy='120' r='22'/%3E%3Ccircle cx='320' cy='55' r='10'/%3E%3Ccircle cx='180' cy='40' r='8'/%3E%3C/g%3E%3C/svg%3E");

}

.cta-cleaning::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at 22% 30%, rgba(255, 255, 255, .08) 0 22px, transparent 22px),

        radial-gradient(circle at 38% 18%, rgba(255, 255, 255, .08) 0 18px, transparent 18px),

        radial-gradient(circle at 44% 36%, rgba(255, 255, 255, .08) 0 28px, transparent 28px),

        radial-gradient(circle at 30% 55%, rgba(255, 255, 255, .05) 0 16px, transparent 16px);

    pointer-events: none;

}

.cta-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 2fr;

    align-items: center;

    /* gap: 80px; */

}

.cta-image {

    text-align: center;
    margin: 0 auto;

}

.cta-image img {

    width: 100%;

    max-width: 380px;
    border-radius: 100%;

}

.cta-content {

    color: #fff;

}

.cta-content h2 {

    font-size: 62px;

    line-height: 1.15;

    font-weight: 300;

}

.cta-content h2 strong {

    font-weight: 800;

}

.cta-content p {

    margin: 35px 0;

    max-width: 540px;

    color: #edf5ff;

    line-height: 1.9;

    font-size: 17px;

}

.cta-btn-about {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 34px;

    background: #0a2661;

    color: #ffffff;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.cta-btn-about:hover {

    background: #fff;

    transform: translateY(-5px);
    color: #0f43b8;

}

@media(max-width:991px) {

    .cta-wrapper {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;

    }

    .cta-content p {

        margin: auto;

        margin-top: 25px;

        margin-bottom: 30px;

    }

    .cta-content h2 {

        font-size: 45px;

    }

}

@media(max-width:576px) {

    .cta-cleaning {

        padding: 70px 0;

    }

    .cta-content h2 {

        font-size: 34px;

    }

    .cta-image img {

        max-width: 300px;

    }

}