/* ======= Typography style ======= */
:root {
    --primary-pink: #E83F8E;
    --secondary-blue: #153CAF;
    --dark-blue: #05054f;
    --text-gray: #67696c;
    --bg-color: #FAFAF7;
    --light-gray: #F5F4EE;
    --soft-white: #F9F9F9;
    --black: #000000;
    --white: #FFFFFF;

}







html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;

}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    color: var(--text-gray);
    background: var(--bg-color);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
}


h1,
h2 {
    font-family: 'Boldonse', sans-serif;
    color: var(--secondary-blue);
    font-weight: 400;
    line-height: 1.5em;
    margin-bottom: 5px;
    margin: 0 0 15px 0;
}













/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/end-of-lease-cleaning-5.webp') center center / cover no-repeat;
    width: 100%;
    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 900px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-size: clamp(35px, 6vw, 55px);
    color: var(--white);
}

.breadcrumb-content p {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--white);
}


.breadcrumb-content a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.3s ease;
}

.breadcrumb-content a:hover {
    background-size: 100% 2px;
}



.breadcrumb-content span {
    text-transform: capitalize;
    text-decoration: none;
    color: var(--white);
}







@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 900px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */























/* ABOUT INTRO SECTION */


.about-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us-container p {
    max-width: 1100px;
}







.about-featured-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.about-featured {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    margin: 0px;
}

.two-border {
    border-top: 1px solid #dcd7d7;
    border-bottom: 1px solid #dcd7d7;
}

.about-featured-icon {
    width: 90px;
    height: 90px;
    display: flex;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--secondary-blue);
    margin-right: 10px;
}

.about-featured-icon img {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.about-featured-text {
    padding: 0px;
}

.about-featured-text h3 {
    margin: 0px;
    font-family: 'Boldonse', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.about-featured-text p {
    margin: 0px;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
}


.about-intro-img {
    padding: 10px;
}

.about-intro-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
}


/* ABOUT INTRO SECTION */
























/* ======= Our Service SECTION ======= */

.bci-services-section {
    background: var(--bg-white);
}

/* HEADER */
.bci-services-header {
    background: transparent;
    color: var(--white);
}

.bci-services-header h2 {
    letter-spacing: 1px;
    color: var(--black);
    margin: 0px;
}

.bci-services-header h2 span {
    color: var(--secondary-blue);
}

.bci-services-header p {
    font-size: 20px;
    color: var(--black);
}

/* CARD */
.bci-service-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    height: 100%;
    transition: transform 0.4s ease;
}

.bci-service-card:hover {
    transform: translateY(-8px);
}

.bci-service-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px;
}

/* CARD BODY */
.bci-service-card .bci-card-body {
    padding: 20px 10px 10px;
}

.bci-service-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-blue);
    border-bottom: 2px solid var(--secondary-blue);
    display: inline-block;
    padding-bottom: 4px;
}

.bci-service-card p {
    font-size: 16px;
    margin: 15px 0;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bci-services-header {
        padding-bottom: 140px;
    }

    .bci-services-container {
        margin-top: -120px;
    }
}

/* ======= Our Service SECTION ======= */



















/* ================= WHY CHOOSE US SECTION ================= */
.service-process-step {
    padding: 20px;
}


.service-process-step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}




.service-process-step-icon {
    padding: 10px;
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--light-black);
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.service-process-step img {
    text-align: center;
    width: 50px;
    height: 50px;
}

.service-process-step h5 {
    text-align: center;
}

.service-process-step p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
}

.botton-link {
    text-align: center;
    padding-top: 20px;
}

.service-process-step-content:hover .service-process-step-icon {
    background-color: var(--secondary-blue);
}


@media (max-width:767px) {
    .content {
        text-align: center;
    }
}

/* ================= WHY CHOOSE US SECTION ================= */

























/* ================= OUR PROCESS SECTION ================= */
.process-section {
    padding: 80px 20px 100px;
    background-color: var(--white);
}

/* Header Section */
.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon svg {
    width: 100%;
    height: 100%;
}


/* Steps Container */
.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
}

/* Dotted Lines */
.step-connector {
    position: absolute;
    top: 50px;
    height: 2px;
    border-top: 2px dashed #d1d5db;
    z-index: 0;
}

.connector-1 {
    left: calc(16.66% + 40px);
    width: calc(16.66% - 40px);
}

.connector-2 {
    left: calc(50% + 40px);
    width: calc(16.66% - 40px);
}

/* Curved connectors */
.curved-connector {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 0;
}

.curved-line {
    fill: none;
    stroke: var(--secondary-blue);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
}

/* Individual Step */
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 300px;
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 15px;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

/* Icon circles */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.step-1 .icon-circle {
    background: var(--bg-white);
    border: 2px dashed #90caf9;
}

.step-2 .icon-circle {
    background: var(--bg-white);
    border: 2px dashed #90caf9;
}

.step-3 .icon-circle {
    background: var(--bg-white);
    border: 2px dashed #80cbc4;
}

.icon-circle svg {
    width: 45px;
    height: 45px;
}

.step-1 .icon-circle svg {
    fill: var(--primary-blue);
}

.step-2 .icon-circle svg {
    fill: #26a69a;
}

.step-3 .icon-circle svg {
    fill: #4c26a6;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-gray-color);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* Hover effects */
.process-step:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 8px, rgba(0, 0, 0, 0.23) 0px 3px 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .steps-wrapper {
        gap: 15px;
    }

    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle svg {
        width: 35px;
        height: 35px;
    }

    .connector-1,
    .connector-2 {
        top: 40px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 20px 80px;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .process-step {
        max-width: 100%;
    }

    .step-connector,
    .curved-connector {
        display: none;
    }

    /* Vertical connectors for mobile */
    .process-step::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -50px;
        width: 2px;
        height: 40px;
        border-left: 2px dashed #d1d5db;
        transform: translateX(-50%);
    }

    .process-step:last-child::after {
        display: none;
    }

    .step-description {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .process-header h2 {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.process-step {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step:nth-child(3) {
    animation-delay: 0.5s;
}

/* ================= OUR PROCESS SECTION ================= */