
        /* * {
            outline: 1px dashed red;
        } */




        /* .custom-card {
            background-image: url('https://via.placeholder.com/1024x600');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: auto;
            max-width: 1024px;
            width: 100%;
            height: 600px;
            color: white;
            border: none;
            position: relative;
        } */

        .bg-card {
            background-image: url('../../../assets/img/landscape/penyengat-up.jpg');
            background-repeat: no-repeat;
            background-position: center;
            /* Ganti properti ini */
            background-size: cover; /* Ini akan memastikan gambar menutupi seluruh area */
            width: 100%;
            color: #ffffff;
            position: relative; /* Lebih baik menggunakan relative untuk footer */
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

        .bg-card2 {
            /* background-image: url('../assets/img/landscape/under2.png'); */
            /* Ganti dengan gambar kamu */
            background-repeat: no-repeat;
            background-position: center;
            background-size: auto;
            /* Tidak stretch */
            width: 100%;
            /* min-height: 300px; */
            color: #ffffff;
            background: #253a4b;
            position: absolute;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            /* border: none; */
        }

        .bg-card3 {
            background-image: url('../../../assets/img/landscape/gurindam3.jpg');
            background-repeat: no-repeat;
            background-position: center;
            /* Ganti properti ini */
            background-size: cover; /* Ini akan memastikan gambar menutupi seluruh area */
            width: 100%;
            color: #ffffff;
            position: relative; /* Lebih baik menggunakan relative untuk footer */
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

        /* .bg-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
        } */

        .bg-overlay {
             background-color: rgba(0, 0, 0, 0.5);
            /* Overlay agar teks lebih mudah dibaca */
            height: 100%;
            padding: 1rem;
        }

        /* .card-footer {
            background-color: rgba(0, 0, 0, 0.7);
            color: #ccc;
        } */

        hr {
            border: none;
            height: 1.5px;
            /* Set the hr color */
            color: #202020;
            /* old IE */
            background-color: #202020;
            /* Modern Browsers */
        }

        .image-overlay {
            position: relative;
            display: inline-block;
            /* atau bisa pakai block tergantung kebutuhan */
        }

        .image-overlay img {
            display: block;
            width: 100%;
            /* Sesuaikan dengan kebutuhan */
            height: auto;
        }

        .image-overlay .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10%;
            background-color: rgba(0, 97, 162, 0.268);
            /* biru tua dengan 50% opacity */
            pointer-events: none;
            /* supaya tidak menghalangi interaksi */
        }

        /* Ensure Chocolat overlay is above nav and other elements */
        .chocolat-overlay,
        .chocolat-loader,
        .chocolat-wrapper {
            z-index: 14 !important;
        }

        .col-5th {
            width: 20%;
            padding: 15px;
        }

        @media (max-width: 768px) {
            .col-5th {
                width: 50%;
            }
        }

        @media (max-width: 576px) {
            .col-5th {
                width: 100%;
            }
        }

        .vr {
            padding-top: 50px;
            border-left: 1px solid #850074;
            /* warna garis */
            height: 100%;
            /* tinggi penuh container */
            margin: 0 10px;
            /* jarak kiri-kanan */
        }



        .slide-container{
            font-family: 'Poppins',sans-serif;
            /* width: 100%; */
            padding-top: 20px;
            height: 550px;
            background: #f2e9ff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3);

        }

        .slide-gallery{
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-img-box{
            width: 100px;
            height: 500px;
            margin: 10px;
            border-radius: 50px;
            background: url('../../../assets/img/landscape/lakse2.png');
            background-size: cover;
            background-position: center;
            position: relative;
            transition: width 0.5s;
        }

        .slide-img-box:nth-child(2){
            background: url('../../../assets/img/landscape/jongkong2.png');
            background-size: cover;
            background-position: center;
        }
        .slide-img-box:nth-child(3){
            background: url('../../../assets/img/landscape/makyong2.png');
            background-size: cover;
            background-position: center;
        }
        .slide-img-box:nth-child(4){
            background: url('../../../assets/img/landscape/gasing2.png');
            background-size: cover;
            background-position: center;
        }

        .slide-img-box h3{
            color: #fff;
            position: absolute;
            bottom: 0;
            left:30px;
            opacity: 0;
            transition: bottom 0.5s, opacity 0.5s;
        }

        .slide-img-box:hover{
            width: 800px;
            cursor: pointer;
        }

        .slide-img-box:hover h3{
            opacity: 1;
            bottom: 25px;
        }


        /* footer */
        .footer2{
            font-family: 'poppins',sans-serif;
            width: 100%;
            /* position: absolute; */
            bottom: 0;
            background: linear-gradient(to right, #00093c, #2d0b00);
            color: #fff;
            padding: 50px 0 30px;
            border-top-left-radius: 125px;
            font-size: 13px;
            line-height: 20px;
        }

        .footer-row {
            width: 85%;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
        }

        .footer-col{
            flex-basis: 25%;
            padding: 10px;


        }

        .footer-logo {
            width: 80px;
            margin-bottom: 30px;
        }

        .footer-col h3{
            font-size: 16px;
            font-weight: 600;
            width: fit-content;
            margin-bottom: 40px;
            position: relative;
        }

        .footer-col p{
            color: #c7c7c7;
        }

        .email-id{
            width: fit-content;
            border-bottom: 1px solid #ccc;
            margin: 20px 0;
        }

        .footer-hr{
            width: 90%;
            border: 0;
            border-bottom: 1px;
            margin: 20px auto;
            color: #c2c2c2;
            background-color: #c2c2c2;
        }

        .footer-copyright{
            text-align: center;
            color: #c7c7c7;

        }

        .footer-underline{
            width: 100%;
            height: 5px;
            background: #767676;
            border-radius: 3px;
            position: absolute;
            top: 25px;
            left: 0;
            overflow: hidden;
        }

        .footer-underline span{
            width: 15px;
            height: 100%;
            background: #fff;
            border-radius: 3px;
            position: absolute;
            top: 0;
            left: 10px;
            animation: moving 2s linear infinite;
        }
        @keyframes moving{
            0%{
                left: -20px;
            }
            100%{
                left: 100%;
            }
        }

        @media (max-width: 700px){
            .footer2{
                bottom:unset;
            }
            .footer-col{
                flex-basis: 100%;
            }
        }
