/* before / after slider */
.before-after-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: ew-resize;
}

/* IMAGES */
.before-after-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* AFTER IMAGE MASK */
.after-img {
    clip-path: inset(0 50% 0 0);
    transition: 0.1s ease-out;
}

/* HANDLE */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ff6600;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: #ff6600;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* LABELS */
.label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
    z-index: 5;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

/* META */
.project-meta {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-meta li {
    font-size: 14px;
    color: #555;
}

/* Project Navigation */
.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    margin-top: 40px;
}

.project-navigation .prev-project,
.project-navigation .next-project {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 48%;
}

.project-navigation i {
    font-size: 22px;
    color: #ff6600;
}

.project-navigation span {
    font-size: 13px;
    color: #888;
    display: block;
}

.project-navigation h4 {
    font-size: 16px;
    margin: 5px 0 0;
}

.project-navigation a {
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.project-navigation a:hover {
    color: #ff6600;
}

.text-end {
    text-align: right;
}

.share.next-project {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 12px;
}

/* faq */

.faq-section {
    padding: 60px 0;
}

.faq-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6600;
}

.faq-item summary {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 25px;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #ff6600;
    transition: 0.3s;
}

/* Open state */
.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
}

/* sidebar service btn */

.services-btn-contaier{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}