

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

.ac-services-section{
    max-width:1300px;
    margin:auto;
    padding:70px 20px;
}

.service-row{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:80px;
}

.service-row.reverse{
    flex-direction:row-reverse;
}

.service-image{
    flex:1;
}

.service-image img{
    width:100%;
    border-radius:25px;
    display:block;
}

.service-content{
    flex:1;
}

.service-tag{
    display:inline-block;
    background:#f4f4f4;
    color:#000;
    padding:8px 9px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:5px;
}

.service-content h2{
    font-size:30px;
    line-height:1.3;
    margin-bottom:10px;
    color:#111;
}

.service-content p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:10px;
}

.feature-box{
    background:#f5f7fd;
    padding:5px;
    border-radius:15px;
    text-align:center;
    font-weight:600;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-4px);
}

.service-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.service-btn:hover{
    background:#007aff;
}

/* Tablet */

@media(max-width:991px){

    .service-row,
    .service-row.reverse{
        flex-direction:column;
        gap:30px;
    }

    .service-content h2{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:767px){

    .ac-services-section{
        padding:40px 15px;
    }

    .service-row{
        margin-bottom:50px;
    }

    .service-content h2{
        font-size:26px;
    }

    .service-content p{
        font-size:15px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .service-btn{
        width:100%;
        text-align:center;
    }

    .service-image img{
        border-radius:18px;
    }
}


/* =========================
   FAQ SECTION
========================== */

.faq-section{
    background:#ffffff;
}

/* Heading */

.faq-subtitle{
    display:inline-block;
    color:#000;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.faq-heading h2{
    font-size:42px;
    font-weight:800;
    color:#000;
    margin-bottom:15px;
}

.faq-heading h2 span{
    color:#000;
}

.faq-heading p{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

/* Accordion */

.custom-accordion .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:18px !important;
    overflow:hidden;
    background:#f5f7fd;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.custom-accordion .accordion-button{
    background:#f5f7fd;
    color:#000;
    font-size:18px;
    font-weight:700;
    padding:22px 25px;
    box-shadow:none !important;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#000;
    color:#fff;
}

.custom-accordion .accordion-button::after{
    filter:brightness(0);
}

.custom-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}

.custom-accordion .accordion-body{
    background:#fff;
    font-size:16px;
    color:#555;
    line-height:1.9;
    padding:25px;
}

/* =========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:991px){

    .faq-heading h2{
        font-size:34px;
    }

    .custom-accordion .accordion-button{
        font-size:17px;
    }
}

@media(max-width:576px){

    .faq-section{
        padding:50px 0;
    }

    .faq-heading h2{
        font-size:28px;
    }

    .faq-heading p{
        font-size:15px;
    }

    .custom-accordion .accordion-button{
        font-size:15px;
        padding:18px;
        line-height:1.6;
    }

    .custom-accordion .accordion-body{
        font-size:14px;
        padding:20px;
    }
}



/* =========================
   REVIEW SECTION
========================== */

.review-section{
    background:#f5f7fd;
}

/* Heading */

.review-subtitle{
    display:inline-block;
    color:#000;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.review-heading h2{
    font-size:42px;
    font-weight:800;
    color:#000;
    margin-bottom:15px;
}

.review-heading h2 span{
    color:#000;
}

.review-heading p{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:16px;
    line-height:1.8;
}

/* Review Card */

.review-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.review-stars{
    font-size:22px;
    color:#000;
    margin-bottom:18px;
    letter-spacing:2px;
}

.review-text{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.review-name{
    font-size:20px;
    font-weight:700;
    color:#000;
    margin:0;
}

/* Desktop Active Animation */

.desktop-review .col-lg-3{
    transition:0.4s ease;
}

.desktop-review .active-review .review-card{
    transform:translateY(-12px) scale(1.03);
    border:2px solid #000;
    box-shadow:0 15px 35px rgba(234,25,23,0.15);
}

/* Mobile Controls */

.review-controls{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:30px;
}

.review-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#000;
    color:#fff;
    font-size:18px;
    transition:0.3s ease;
}

.review-btn:hover{
    background:#007aff;
}

/* =========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:991px){

    .review-heading h2{
        font-size:34px;
    }

    .mobile-review .review-card{
        padding:35px 25px;
    }

    .mobile-review .review-text{
        font-size:16px;
    }
}

@media(max-width:576px){

    .review-section{
        padding:50px 0;
    }

    .review-heading h2{
        font-size:28px;
    }

    .review-heading p{
        font-size:15px;
    }

    .mobile-review .review-card{
        padding:28px 20px;
    }

    .review-text{
        font-size:14px;
    }

    .review-name{
        font-size:18px;
    }

    .review-btn{
        width:45px;
        height:45px;
        font-size:16px;
    }
}
