/* pagination */

#our-projects .single-project-item {
	display: none;
	margin-bottom: 40px;
}

.post-pagination ul {
	display: flex;
	gap: 10px;
	justify-content: center;
	padding: 0;
}

.post-pagination ul li {
	list-style: none;
}

.post-pagination ul li a {
	display: inline-block;
	padding: 8px 14px;
	background: #eee;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.post-pagination ul li.active a {
	background: #ff6600;
	color: #fff;
}


/* before and after */

.before-after-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: ew-resize;
}

.before-after-container img {
    width: 100%;
    display: block;
}

/* AFTER WRAPPER */
.after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

/* HANDLE */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #ff6600;
    z-index: 5;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #ff6600;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 5px;
}

.arrow.left {
    left: -15px;
    transform: rotate(135deg) translateY(-50%);
}

.arrow.right {
    right: -15px;
    transform: rotate(-45deg) translateY(-50%);
}

/* LABELS */
.label {
    position: absolute;
    top: 20px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    z-index: 6;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .slider-handle::before {
        width: 30px;
        height: 30px;
    }
}


/* navigation projects */
.project-navigation {
    margin-top: 60px;
}

.project-nav-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.project-nav {
    position: relative;
    display: flex;
    align-items: center;
    width: 48%;
    background: #fff;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* IMAGE */
.project-nav .nav-img {
    width: 40%;
    overflow: hidden;
}

.project-nav .nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* TEXT */
.project-nav .nav-content {
    padding: 20px;
    width: 60%;
}

.nav-label {
    font-size: 13px;
    color: #999ea3;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.project-nav h5 {
    margin: 0;
    font-size: 18px;
    color: #073D51;
    transition: color 0.3s ease;
}

/* HOVER EFFECT */
.project-nav:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-nav:hover img {
    transform: scale(1.1);
}

.project-nav:hover h5,
.project-nav:hover .nav-label {
    color: #FD8404;
}

/* DIRECTION STYLES */
.project-nav.prev {
    flex-direction: row;
}

.project-nav.next {
    flex-direction: row-reverse;
    text-align: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .project-nav {
        width: 100%;
    }
}


/* side bar CTA button */
/* ============================= */
/* SIDEBAR CTA BUTTON */
/* ============================= */

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    margin-top: 25px;
    padding: 14px 18px;

    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    color: #fff;
    background: linear-gradient(135deg, #073D51, #0a5b75);

    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    position: relative;

    transition: all 0.4s ease;
}

/* ICON */
.sidebar-cta-btn i {
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.sidebar-cta-btn:hover {
    background: linear-gradient(135deg, #FD8404, #ff9d2f);
    box-shadow: 0 10px 25px rgba(253, 132, 4, 0.35);
    transform: translateY(-3px);
}

/* ICON MOVE */
.sidebar-cta-btn:hover i {
    transform: translateX(6px);
}

/* SHINE EFFECT */
.sidebar-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.sidebar-cta-btn:hover::before {
    left: 125%;
}

/* ACTIVE CLICK */
.sidebar-cta-btn:active {
    transform: scale(0.98);
}

/* MOBILE */
@media (max-width: 576px) {
    .sidebar-cta-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

.faq-question::before{
    background-color: transparent;
}


.faq-question::after{
    display: none;
}