/* .da-testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.da-testimonial-item {
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
}

.da-title {
    font-size: 30px;
    margin-bottom: 10px;
    color: #111;
}

.da-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    color: #777;
}

.da-description {
    margin-bottom: 20px;
    line-height: 1.7;
}

.da-button {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.da-button:hover {
    background: #333;
    color: #fff;
}

.da-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.da-gallery-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.da-gallery-item img:hover {
    transform: scale(1.05);
} */


/* Featured Carousel */
.featured-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 0 60px 0;
    scrollbar-width: none;
    /* Firefox */
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}

.featured-card {
    flex: 0 0 85%;
    max-width: 1000px;
    scroll-snap-align: center;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.1);
}

.feat-img-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.feat-img-wrapper .proj-slider-track img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .feat-img-wrapper .proj-slider-track img {
    transform: scale(1.05);
}

.feat-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.feat-tag {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feat-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feat-content p {
    color: #151515;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .feat-img-wrapper {
        min-height: 250px;
    }

    .feat-content {
        padding: 32px;
    }

    .feat-content h3 {
        font-size: 26px;
    }

    .projects-hero-title {
        font-size: 36px;
    }

    .projects-hero {
        height: auto;
        min-height: 350px;
        padding: 80px 0;
    }
}


/* --- Project Card Slider --- */
.proj-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.proj-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-slider-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--dark);
}

.project-card:hover .slider-arrow,
.featured-card:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: var(--green);
    color: white;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}