
    /* Hide scrollbar - Chrome, Safari */
    ::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar - IE, Edge */
    body {
        -ms-overflow-style: none;
    }

    /* Hide scrollbar - Firefox */
    body {
        scrollbar-width: none;
    }



.card {
    height: 320px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 40px;
    cursor: pointer;
    border: none;
}

.overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #000000;
    background-color: #ffffffbf;
    padding: 15px;
    border-radius: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.overlay h3 {
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    font-size: 23px;
    font-family: 'Cormorant Garamond', serif;
}

.overlay p {
    margin: 8px 0;
    font-size: 19px;
}

.overlay span {
    font-size: 17px;
    margin-top: 20px;
}

.overlay span i {
    margin-right: 3px;
}

.my-btn {
    margin-top: 15px !important;
}

/* ================= POPUP ================= */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup.active {
    display: flex;
}

/* POPUP CONTENT */
.popup-content {
    width: 90%;
    /* max-width:1200px; */
    height: 90vh;
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* LEFT TEXT PANEL */
.popup-left {
    width: 25%;
    padding: 60px 40px;
    background: #f3eee9;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.popup-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
        font-family: 'Cormorant Garamond', serif;

}

.popup-left p {
    /* margin: 15px 0; */
color: #000;
line-height: 1.6;
        font-family: 'Cormorant Garamond', serif;

}

.popup-left #desc {
    margin-top: 70px;
    font-family: 'Cormorant Garamond', serif;
}

/* RIGHT IMAGE SLIDER */
.popup-right {
    width: 75%;
    position: relative;
}

.slider {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 0.4s;
}

.slide.active {
    opacity: 1;
}

/* NAV BUTTONS */
.nav {
    position: absolute;
    bottom: 25px;
    right: 30px;
    color: #000000;
    font-size: 14px;
}

.arrow {
    cursor: pointer;
    margin: 0 10px;
}

/* CLOSE */
.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
}


.card {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    /* reduce movement */
    transition: all 0.6s ease;
    /* smoother */
    will-change: transform, opacity;
    /* performance fix */
}

.card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (min-width: 769px){

/* SIDE SCROLL LINE */
.side-indicator {
    position: fixed;
    right: 30px;
    top: 10%;
    height: 80vh;
    width: 6px;
    display: flex;
    justify-content: center;
}

/* FULL HEIGHT LINE */
.side-indicator::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #ccc;
}

/* MOVING BAR */
.scroll-bar {
    position: absolute;
    width: 4px;
    height: 70px;
    background: #929292;
    border-radius: 10px;
    transition: transform 0.2s linear;
}

}



/* ================= MOBILE (≤768px) ================= */
@media (max-width: 768px) {

    .popup-content {
    /* max-width: 1200px; */
    height: 48vh;
    }

    .card {
        height: 220px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .overlay {
        bottom: 10px;
        left: 10px;
        padding: 10px;
        border-radius: 10px;
    }

    .overlay h3 {
        font-size: 16px;
    }

    .overlay p {
        font-size: 14px;
        margin: 5px 0;
    }

    .overlay span {
        font-size: 13px;
    }

}


@media (max-width: 768px) {
    .my-btn {
        margin-top: 5px !important;
    }

    .popup-content {
        flex-direction: column;
        /* height: 95vh; */
        width: 95%;
    }

    .popup-left {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .popup-left h2 {
        font-size: 20px;
    }

    .popup-left p {
        font-size: 14px;
    }

    .popup-left #desc {
        margin-top: 10px;
    }

    .popup-right {
        width: 100%;
        height: 100%;
    }

    .slider {
        height: 100%;
    }

    .nav {
        bottom: 10px;
        right: 15px;
        font-size: 12px;
    }

    .close {
        top: 10px;
        right: 15px;
        font-size: 20px;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {

    .card {
        height: 260px;
    }

    .overlay h3 {
        font-size: 20px;
    }

    .overlay p {
        font-size: 16px;
    }

    .popup-left {
        padding: 30px;
    }

}

.card {
    -webkit-tap-highlight-color: transparent;
}

