*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* Banner */
/*==========================
        Banner
==========================*/

.page-banner{
    position:relative;
    width:100%;
    min-height:320px;
    background:url("https://i.pinimg.com/1200x/0d/13/46/0d1346fe637831714d4a0a704c4c48a8.jpg") center center/cover no-repeat;
    background-attachment:fixed;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Dark Overlay */

.page-banner .overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.82) 65%,
        rgba(0,0,0,0.75) 90%,
        rgba(0,0,0,0.65) 100%
    );

    z-index:1;
}

/* Content */










/* portfolio */

.containered{
    width:90%;
    max-width:1250px;
    margin:auto;
}

.portfolio-section{
    padding:30px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:30px;
    font-weight:500;
    color:#000;
    margin-bottom:18px;
}

.section-title span {
    margin-bottom: 15px;
    display: inline-block;
    width: 150px;
    height: 3px;
    background: #f6b53f;
    border-radius: 20px;
}

/* Grid */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: -32px;
}

/* Card */

.portfolio-item{
    overflow:hidden;
    background:#fff;
    border:1px solid #e4e4e4;
    cursor:pointer;
    transition:.35s;
}

.portfolio-item img{
    width:100%;
    display:block;
    
    transition:.5s;
}

/* Hover */

.portfolio-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.portfolio-item:hover img{
    transform:scale(1.08);
}

/* Tablet */

@media(max-width:992px){

.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:42px;
}

}

/* Mobile */

@media(max-width:576px){

.portfolio-section{
    padding:50px 0;
}

.portfolio-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.section-title h2{
    font-size:32px;
}

.section-title span{
    width:80px;
}

}


/* review */


/* ----------------------------service-section-link end ------------------------- */



.reviews-slider-container {

    display: flex;

    align-items: center;

    gap: 10px;

}



.scroll-btn {

    background-color: white;

    color: gray;

    border: none;

    font-size: 20px;

    padding: 10px;

    border-radius: 80%;

    cursor: pointer;

}



.reviews-slider {

    overflow-x: auto;

    scroll-behavior: smooth;

    flex: 1;

}



.reviews-wrapper {

    display: flex;

    gap: 15px;

    padding-bottom: 10px;

}



.business-card,

.review-card {

    width: 270px;

    flex: 0 0 auto;

    padding: 15px;

    border-radius: 10px;

}

.review-card {
    background: #ffffff;
    color: #222;
}



.business-card img {

    width: 160px;

    height: 49px;

    object-fit: contain;

}


.business-card h3 {

    font-size: .9em;

    font-weight: 400;

    font-family: system-ui;

    margin: 0px 0;

}



.stars {

    font-size: 28px;

    color: gold;

    margin: 0px 10px 5px 0px;

}



.review-count {

    background: #ffffff;
    color: #000000;

    font-size: .9em;

    font-family: system-ui;

    margin-bottom: 10px;

}



.review-card {



    background-color: #f4f4f4 !important;

}



.review-card .review-header {

    display: flex;

    align-items: center;

    margin-bottom: 0px;

}



.avatar img {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    margin-right: 10px;

}

.review-info span {
    color: #555;
    /* ðŸ”¥ dark grey */
    font-size: 14px;
}

.review-info h4 {
    color: #000;
    margin: 0;
    font-weight: 400;

    font-size: 1em;

}



.review-info span {

    color: #555;
    /* ðŸ”¥ dark grey */
    font-size: 14px;

    font-weight: 400;

}



.review-stars {

    font-size: 25px;

    color: #ffb400;

    margin-bottom: 5px;

}



.review-text {

    overflow: hidden;

    max-height: 105px;

    font-weight: 400;

    color: #222;

    font-family: system-ui;

    margin-bottom: 10px;

    font-size: 1em;

}



.toggle-btn {

    color: #d70006;
    /* dark blue */
    background: none;
    border: none;

    padding: 5px 10px;

    border-radius: 5px;

    cursor: pointer;

}



.toggle-btn:hover {
    text-decoration: underline;

    color: #d70006;

}



.reviews-slider::-webkit-scrollbar {

    height: 6px;

}



.reviews-slider::-webkit-scrollbar-thumb {

    background: #ccc;

    border-radius: 3px;

}



.reviews-slider::-webkit-scrollbar-track {

    background: #f4f4f4;

}



button a {

    text-decoration: none;

    color: rgb(41, 39, 39);

    font-weight: bold;

}



.reviews-slider::-webkit-scrollbar {

    display: none;

}



/*  */

.portfolio-showcase{
    padding:40px 0;
    background:#fff;
}

.portfolio-showcase .container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.portfolio-content{
    flex:1;
}

.portfolio-content h2 {
    font-size: 30px;
    color: #18303F;
    font-weight: 600;
    font-family: system-ui;
    margin-bottom: 25px;
    line-height: 1.2;
}

.portfolio-content p {
    font-size: 16px;
    color: #555;
    line-height: 32px;
    margin-bottom: 35px;
        font-family: system-ui;
}

.portfolio-btn{
    display:inline-block;
    padding:15px 35px;
    background:#d70006;
    color:#fff;    font-family: system-ui;
    text-decoration:none;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.4s;
}

.portfolio-btn:hover {
    background:#fff;
    color:#d70006;
    border: 1px dotted #d70006;
    border-radius: 24px;
    transform:translateY(-4px);
}


.portfolio-image{
    flex:1;
    text-align:center;
}

.portfolio-image img{
    width:100%;

    max-width: 567px;
    border-radius:15px;
    transition:.4s;
}

.portfolio-image img:hover{
    transform:scale(1.03);
}


@media(max-width:992px){

.portfolio-showcase .container{
    flex-direction:column;
    text-align:center;
}

.portfolio-content h2{
    font-size:38px;
}

.portfolio-content p{
    font-size:17px;
    line-height:30px;
}

}

@media(max-width:768px){

.portfolio-showcase{
    padding:60px 0;
}

.portfolio-content h2{
    font-size:30px;
}

.portfolio-content p{
    font-size:15px;
    line-height:28px;
}

.portfolio-btn{
    padding:14px 28px;
    font-size:15px;
}

.portfolio-image img{
    max-width:100%;
}

}
