/* =========================
   GLOBAL SPACING FIX
========================= */
body{
    overflow-x:hidden;
}

.container{
    max-width:1200px;
}

/* =========================
   PAGE HEADER
========================= */
.page-header{
    position:relative;
    padding:90px 0 80px;
    text-align:center;
    background:#f7f7f7;
    margin:0;
}

.page-header__inner h3{
    font-size:48px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    line-height:1.2;
}

.thm-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:0;
    padding:0;
}

/* =========================
   TEAM DETAILS SECTION
========================= */
.team-details{
    padding:70px 0 50px;
    margin:0;
    background:#fff;
}

.team-details__top{
    margin-bottom:20px;
}

.team-details__client-box{
    width:100%;
}

.team-details__client-name{
    font-size:36px;
    line-height:1.3;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
    text-transform:uppercase;
}

/* =========================
   TEXT ALIGNMENT
========================= */
.project-details__text-4{
    font-size:17px;
    line-height:1.6;
    color:#555;
    margin-bottom:18px;
    text-align:justify;
}

/* =========================
   SERVICES LIST
========================= */
.project-details__img-and-points{
    margin-top:0px;
    margin-bottom:30px;
}

.project-details__points{
    padding:0;
    margin:0;
}

.project-details__points li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:10px;
    padding:11px 20px;
    margin-bottom:18px;
    transition:all .3s ease;
}

.project-details__points li:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.project-details__points .icon{
    min-width:22px;
    margin-top:4px;
}

.project-details__points .icon span{
    color:#c59d5f;
    font-size:14px;
}

.project-details__points p{
    margin:0;
    color:#444;
    font-size:16px;
    line-height:1.8;
}

.project-details__points strong{
    color:#111;
}

/* =========================
   REMOVE EXTRA ROW SPACING
========================= */
.row{
    margin-left:0;
    margin-right:0;
}

.col-xl-12,
.col-lg-12,
.col-md-12{
    padding-left:0;
    padding-right:0;
}

/* =========================
   FOOTER FIX
========================= */
.site-footer{
    margin-top:0;
}

.site-footer__top{
    padding-top:20px;
    padding-bottom:20px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:991px){

    .page-header{
        padding:70px 20px;
    }

    .page-header__inner h3{
        font-size:36px;
    }

    .team-details{
        padding:50px 15px;
    }

    .team-details__client-name{
        font-size:28px;
    }

    .project-details__text-4{
        font-size:16px;
        line-height:1.8;
        text-align:left;
    }
}

@media(max-width:576px){

    .page-header__inner h3{
        font-size:28px;
    }

    .team-details__client-name{
        font-size:22px;
    }

    .project-details__points li{
        padding:15px;
    }

    .project-details__points p{
        font-size:15px;
    }
}