section[data-module="home-wedo"] {
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(26, 26, 26, 0.16) 50%,
        #ffffff 100%
    );
}

section[data-module="home-wedo"] .wedo-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

section[data-module="home-wedo"] .wedo-title {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #C0392B;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

section[data-module="home-wedo"] .wedo-slider {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 40px 20px;
}

section[data-module="home-wedo"] .wedo-slider::-webkit-scrollbar {
    display: none;
}

section[data-module="home-wedo"] .wedo-slider.active-drag {
    cursor: grabbing;
}

section[data-module="home-wedo"] .wedo-track {
    display: flex;
    gap: 50px;
    width: max-content;
    user-select: none;
}

section[data-module="home-wedo"] .wedo-card {
    flex: 0 0 auto;
    width: 381px;
    height: 393px;
    padding: 5px;
    border-radius: 24px;
    background: linear-gradient(to bottom, #C0392B 0%, #5A1B14 100%);
    box-sizing: border-box;
}

section[data-module="home-wedo"] .wedo-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 19px;
    overflow: hidden;
    background: #d9d9d9;
    position: relative;
}

section[data-module="home-wedo"] .wedo-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 19px;
    background: #d9d9d9;
}

section[data-module="home-wedo"] .wedo-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

section[data-module="home-wedo"] .wedo-image-wrap img[src=""] {
    opacity: 0;
}

section[data-module="home-wedo"] .wedo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(192, 57, 43, 0.11);
    z-index: 1;
}

section[data-module="home-wedo"] .wedo-image-wrap h3 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    word-break: break-word;
}

section[data-module="home-wedo"] .wedo-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

section[data-module="home-wedo"] .wedo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 325px;
    min-height: 54px;
    padding: 14px 32px;
    border-radius: 14px;
    background: linear-gradient(90deg, #C0392B 0%, #1A1A1A 50%, #C0392B 100%);
    background-size: 200% 100%;
    background-position: left center;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: background-position 0.45s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

section[data-module="home-wedo"] .wedo-btn span,
section[data-module="home-wedo"] .wedo-btn {
    position: relative;
    z-index: 1;
}

section[data-module="home-wedo"] .wedo-btn:hover {
    background-position: right center;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

section[data-module="home-wedo"] .wedo-btn:hover span {
    color: #ffffff;
}



/* Extra hover effect for What We Do cards - no View More */

section[data-module="home-wedo"] .wedo-card {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


section[data-module="home-wedo"] .wedo-image-wrap img {
    transform: scale(1);
    filter: brightness(0.95);
    transition: transform 0.65s ease, filter 0.65s ease;
}

section[data-module="home-wedo"] .wedo-card:hover .wedo-image-wrap img {
    transform: scale(1.12);
    filter: brightness(0.72);
}

section[data-module="home-wedo"] .wedo-overlay {
    transition: background 0.35s ease;
}

section[data-module="home-wedo"] .wedo-card:hover .wedo-overlay {
    background: rgba(90, 27, 20, 0.48);
}

section[data-module="home-wedo"] .wedo-image-wrap h3 {
    transition: transform 0.35s ease, letter-spacing 0.35s ease, text-shadow 0.35s ease;
}

section[data-module="home-wedo"] .wedo-card:hover .wedo-image-wrap h3 {
    transform: translate(-50%, -50%) scale(1.06);
    letter-spacing: 0.5px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.65);
}

/* Light sweep effect only */
section[data-module="home-wedo"] .wedo-image-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: -85%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.32) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    z-index: 3;
    transition: left 0.7s ease;
    pointer-events: none;
}

section[data-module="home-wedo"] .wedo-card:hover .wedo-image-wrap::before {
    left: 135%;
}

/* Card fade right animation only */

section[data-module="home-wedo"] .wedo-card {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.75s ease, transform 0.75s ease, box-shadow 0.35s ease;
}

section[data-module="home-wedo"] .wedo-card.wedo-card-active {
    opacity: 1;
    transform: translateX(0);
}



@media (max-width: 767px) {

    section[data-module="home-wedo"] .wedo-card.wedo-card-active {
        transform: translateX(0);
    }

}

@media (max-width: 767px) {


    section[data-module="home-wedo"] .wedo-card:hover .wedo-image-wrap h3 {
        transform: translate(-50%, -50%) scale(1.04);
    }
}


@media (max-width: 1024px) {
    section[data-module="home-wedo"] {
        padding: 60px 0 50px;
    }

    section[data-module="home-wedo"] .wedo-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    section[data-module="home-wedo"] .wedo-slider {
        padding: 0 20px 20px;
    }

    section[data-module="home-wedo"] .wedo-card {
        width: 320px;
        height: 350px;
    }

    section[data-module="home-wedo"] .wedo-image-wrap h3 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    section[data-module="home-wedo"] {
        padding: 50px 0 40px;
    }

    section[data-module="home-wedo"] .wedo-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    section[data-module="home-wedo"] .wedo-slider {
        padding: 0 16px 20px;
    }

    section[data-module="home-wedo"] .wedo-track {
        gap: 18px;
    }

    section[data-module="home-wedo"] .wedo-card {
        width: 280px;
        height: 300px;
        border-radius: 20px;
    }

    section[data-module="home-wedo"] .wedo-card-inner,
    section[data-module="home-wedo"] .wedo-image-wrap {
        border-radius: 15px;
    }

    section[data-module="home-wedo"] .wedo-image-wrap h3 {
        width: calc(100% - 24px);
        font-size: 24px;
        line-height: 1.2;
    }

    section[data-module="home-wedo"] .wedo-btn {
        min-width: auto;
        width: calc(100% - 32px);
        max-width: 320px;
        font-size: 15px;
        padding: 14px 20px;
    }
	section[data-module="home-wedo"] .wedo-btn-wrap {
	  text-align: center;
	  margin-top: 5px;
	}
}