.case-study-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.case-study-slide {
    position: relative;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow:hidden;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-top-left {
    max-width: 700px;
}

.slide-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
}

.slide-subtitle {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.slide-location {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.custom-slider-nav {
    position: absolute;
    right: 80px;
    bottom: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap:12px;
}

.custom-slider-nav button {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: opacity .3s ease;
    padding:0;
}

.custom-slider-nav button:hover {
    opacity: .7;
}

.slide-counter {
    min-width: 70px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}
.case-study-nav {
    width: 95px;
    height: 95px;
    background-color: #bb9e4d61;
    border-radius: 50%;
}
.case-study-nav .circle {
    width: 80px;
    height: 80px;
    background-color: #BB9E4D;
    border-radius: 50%;
    z-index: 3;
}
.case-study-nav .circle span {
    font-size:14px;
}
@media (max-width: 768px) {

    .case-study-slide {
        height: 700px;
    }

    .slide-content {
        padding: 40px 24px;
    }

    .slide-title {
        font-size: 40px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .custom-slider-nav {
        right: 24px;
        bottom: 24px;
    }

}