.projects-section {
    padding: 120px 0;
    
}

.projects-section .sec-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.projects-section .sec-title .text {
    color: #595959;
    max-width: 700px;
    margin: 0 auto;
}

.project-block {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    transition: all 0.4s ease;
}

.project-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.project-block .image {
    height: 100%;
    overflow: hidden;
}

.project-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-block:hover img {
    transform: scale(1.08);
}

.project-block .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px;
}

.project-block h2 {
    color: #C94A2E;
    font-size: 28px;
    margin-bottom: 15px;
}

.project-block h2:hover {
    color: #a83e27;
}

.project-block .text {
    color: #595959;
    font-size: 16px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .project-block .content {
        padding: 30px;
    }
}

/* before - after */

.before-after-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    cursor: ew-resize;
}

/* Images */
.before-after-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* Before image wrapper */
.before-img-wrapper {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

/* Divider line */
.slider-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: #ffffff;
    z-index: 3;
}

/* Handle */
.slider-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: #c9a14a;
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.slider-handle span {
    width: 14px;
    height: 14px;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
}

/* Labels */
.label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    font-size: 14px;
    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;
}

/* Responsive */
@media (max-width: 768px) {
    .before-after-slider {
        height: 320px;
    }
}

/* faq */

.faq-section {
    padding: 120px 0;
    
}

.faq-section .sec-title h2 {
    color: #242424;
    font-size: 42px;
    margin-bottom: 10px;
}

.faq-section .sec-title p {
    color: #595959;
    max-width: 700px;
    margin: 0 auto;
}

/* Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

/* Item */
.faq-item {
    background: #293035;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

/* Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    cursor: pointer;
}

.faq-question h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

/* Icon */
.faq-question .icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
    content: '';
    position: absolute;
    background: #C94A2E;
    transition: 0.3s;
}

.faq-question .icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
}

.faq-question .icon::after {
    width: 2px;
    height: 100%;
    left: 9px;
}

/* Active icon */
.faq-item.active .icon::after {
    transform: scaleY(0);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

/* Hover */
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 20px;
    }

    .faq-section .sec-title h2 {
        font-size: 28px;
    }
}

.widget_search figure{
    display: flex;
    justify-content: center;
    
}