/* === Custom Styles for Improved Service Pages === */

/* Breadcrumb Area */
.breadcrumb__area {
    padding-top: 180px;
    padding-bottom: 120px;
    background-color: var(--clr-bg-sky);
}
.breadcrumb__sub-title {
    font-size: 18px;
    color: var(--clr-text-1);
    max-width: 650px;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* Service Hero Area */
.service-hero__thumb img {
    width: 100%;
    border-radius: 10px;
}
.features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 17px;
    margin-bottom: 15px;
}
.features-list li i {
    font-size: 18px;
    color: var(--clr-theme-1);
    margin-top: 5px;
}

/* Service Types Area */
.service-types__area {
    background-color: var(--clr-bg-gray-3);
}
.service-type__card {
    background-color: var(--clr-common-white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #e1e1e1;
    transition: all .3s ease;
    height: calc(100% - 30px);
}
.service-type__card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-theme-1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}
.service-type__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(56, 135, 254, 0.1);
    color: var(--clr-theme-1);
    font-size: 24px;
    border-radius: 50%;
    margin-bottom: 25px;
}
.service-type__card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Our Process Area */
.process__item {
    padding: 30px;
    position: relative;
    border-right: 1px dashed #d1d1d1;
}
.process-flow .col-lg-3:last-child .process__item {
    border-right: none;
}
.process__step-number {
    font-size: 60px;
    font-weight: 700;
    color: #f0f0f0;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: -1;
}
.process__item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}
@media (max-width: 991px) {
    .process__item {
        border-right: none;
        border-bottom: 1px dashed #d1d1d1;
    }
    .process-flow .col-md-6:last-child .process__item {
        border-bottom: none;
    }
}

/* Technology Stack Area */
.tech-stack__area {
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
}
.tech-stack__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.tech-stack__logos img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all .3s ease;
}
.tech-stack__logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Reusing Portfolio Card for Featured Projects */
.featured-projects__area .portfolio__card {
    /* Styles are inherited from main.css and portfolio-page.css */
    /* You can add overrides here if needed */
}

/* CTA Area Improvement */
.cta__area.gradient-bg {
    background: var(--clr-theme-4);
}
.cta__area .border__btn.white {
    border-color: var(--clr-common-white);
}
.cta__area .border__btn.white:hover {
    background: var(--clr-common-white);
    color: var(--clr-theme-4);
}

/* === Add this to the end of service-page.css === */

/* FAQ Section */
.faq-section__area .accordion-item {
    background-color: var(--clr-common-white);
    border: 1px solid #e1e1e1;
    border-radius: 8px !important; /* Overriding bootstrap */
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-section__area .accordion-header button {
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-common-heading);
    padding: 20px 25px;
    text-align: left;
    width: 100%;
}
.faq-section__area .accordion-header button:not(.collapsed) {
    color: var(--clr-theme-1);
    background-color: #f7faff;
    box-shadow: none;
}
.faq-section__area .accordion-header button:focus {
    box-shadow: none;
}
.faq-section__area .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c1c1c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section__area .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233887FE'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section__area .accordion-body {
    padding: 0 25px 25px 25px;
}