.evdContainer {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/*==========================================
      Evidence Section
      ==========================================*/

#evdMasterSection {
    padding: 45px 0;
    background: #fff;
    overflow: hidden;
}

/* Heading */

.evdHeadingWrap {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.evdHeadingTitle {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.evdHeadingTitle span {
    color: #f61a02;
    font-family: "Playfair Display", serif !important;
    font-family: var(--ltn__heading-font);
}

.evdHeadingText {
    font-size: 20px;
    line-height: 34px;
    color: #555;
}

/*==========================================
      Slider
      ==========================================*/

.evdSliderOuter {
    position: relative;
    margin-top: 50px;
    padding: 20px 10px 70px;
}

.evdSliderViewport {
    overflow: hidden;
}

.evdSliderTrack {
    display: flex;
    will-change: transform;
    cursor: grab;
}

.evdSliderTrack:active {
    cursor: grabbing;
}

.evdSlide {
    flex-shrink: 0;
    padding: 0 15px;
}

/*==========================================
      Card
      ==========================================*/

.evdCardBox {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.evdCardBox:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/*==========================================
      Image
      ==========================================*/

.evdImageBox {
    height: 240px;
    overflow: hidden;
}

.evdImageBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
    pointer-events: none;
}

.evdCardBox:hover img {
    transform: scale(1.08);
}

/*==========================================
      Content
      ==========================================*/

.evdContentBox {
    padding: 28px;
    text-align: center;
}

.evdContentBox h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.evdContentBox p {
    font-size: 16px;
    line-height: 31px;
    color: #666;
    margin-bottom: 0;
}

/*==========================================
      Slider Buttons
      ==========================================*/

.evdNavBtn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: box-shadow 0.3s, transform 0.3s;
}

.evdNavBtn:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.evdNavBtn:active {
    transform: translateY(-50%) scale(0.94);
}

.evdNavBtn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #f61a02;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.evdNavPrev {
    left: -24px;
}

.evdNavNext {
    right: -24px;
}

/*==========================================
      Pagination
      ==========================================*/

.evdPagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.evdDot {
    width: 12px;
    height: 12px;
    border-radius: 20px;
    background: #d6d6d6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.evdDot.active {
    background: #f61a02;
    width: 30px;
}

/*==========================================
      Responsive
      ==========================================*/

@media (max-width: 1199px) {
    .evdHeadingTitle {
        font-size: 42px;
    }

    .evdImageBox {
        height: 220px;
    }
}

@media (max-width: 991px) {
    #evdMasterSection {
        padding: 70px 0;
    }

    .evdHeadingTitle {
        font-size: 36px;
    }

    .evdHeadingText {
        font-size: 18px;
        line-height: 30px;
    }

    .evdContentBox {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    #evdMasterSection {
        padding: 60px 0;
    }

    .evdHeadingTitle {
        font-size: 30px;
    }

    .evdHeadingText {
        font-size: 18px;
        line-height: 30px;
        padding: 0 10px;
    }

    .evdImageBox {
        height: 220px;
    }

    .evdContentBox h3 {
        font-size: 20px;
    }

    .evdContentBox p {
        font-size: 18px;
        line-height: 30px;
    }

    .evdNavBtn {
        display: none;
    }
}

@media (max-width: 575px) {
    .evdHeadingTitle {
        font-size: 28px;
    }

    .evdHeadingText {
        font-size: 18px;
    }

    .evdImageBox {
        height: 210px;
    }

    .evdContentBox {
        padding: 20px;
    }
}


#evdMasterSection {
    padding: 45px 0;
    background: #f61a02;
    overflow: hidden;
}

.evdHeadingTitle span {
    color: #ffffff;
    font-family: (--ltn__heading-font) !important;
    font-family: "Playfair Display", serif
;
}

.evdHeadingText {
    font-size: 20px;
    line-height: 34px;
    color: #ffffff;
}