
html {
  max-width: 100%;
  overflow-x: hidden;
}

.menu-sub-dropdown {
    position: absolute;  /* supaya bisa keluar dari flow layout */
    top: 100%;           /* muncul tepat di bawah parent menu */
    left: 0;
    z-index: 10000;      /* lebih tinggi dari section */
}

#loading-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  overflow-x: hidden;
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 26px solid #333;
  border-color: rgb(34, 16, 197) transparent rgb(33, 10, 136) transparent; 
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}


.menu-link, 
.menu-sub .menu-link .menu-title, 
.menu-sub .menu-item a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.landing-header .menu .menu-link.active{
    color: #20419A;
}

.contact-btn {
    background-color: #20419A;
    width: 79px;
    height: 35px;
    padding: 8px; /* sesuai Figma */
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 16px; /* 100% dari 16px */
    letter-spacing: 0;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover,
.contact-btn:focus,
.contact-btn:active {
    color: #FFFFFF;
    background-color: #20419A !important;
   
    border-color: #20419A !important;
}
/* 
[data-kt-sticky-landing-header="on"] .landing-header .menu .menu-link.active {
    color: #20419A !important;
} */

/* Untuk semua menu utama saat hover dan focus */
.landing-header .menu .menu-link:hover,
.landing-header .menu .menu-link:focus,
.landing-header .menu .menu-link:hover .menu-title,
.landing-header .menu .menu-link:focus .menu-title {
    color: #20419A !important;
}

/* Untuk submenu dropdown (English, China, Indonesia) */
.menu-sub.menu-sub-dropdown .menu-link:hover,
.menu-sub.menu-sub-dropdown .menu-link:focus,
.menu-sub.menu-sub-dropdown .menu-link:hover .menu-title,
.menu-sub.menu-sub-dropdown .menu-link:focus .menu-title {
    color: #20419A !important;
}

/* Optional: jika menu-arrow juga perlu ikut berubah */
.menu-link:hover .menu-arrow {
    color: #20419A !important;
}

/* hero 	 */
            .hero-section {
				width: 100%;
				height: 750px;
				border-bottom-left-radius: 80px;
				border-bottom-right-radius: 80px;
				background-image: url('../media/landing/landing.png');

				background-size: cover;
				background-repeat: no-repeat;
				position: relative;
				z-index: 2;
				overflow: hidden;
			}

            @media (max-width: 767px) {
                .hero-section {
                    height: 350px; /* Atur sesuai kebutuhan mobile */
                }
            }

            .mt-responsive {
                margin-top: -120px;
            }

            @media (max-width: 767px) {
                .mt-responsive {
                    margin-top: -60px;
                }
            }


            .hero-title {
				font-family: 'Inter', sans-serif;
				font-weight: 700;
				font-style: normal; /* 'Bold' Figma = font-weight: 700, font-style tetap normal */
				font-size: 96px;
				line-height: 1; /* 100% = line-height: 1 */
				letter-spacing: 0;
				margin: 0;
			}

              /* Laptop & Tablet (≤1024px) */
			@media (max-width: 1024px) {
			    .hero-title {
					font-size: 52px;
				}
			}

			/* Tablet (≤768px) */
			@media (max-width: 768px) {
				.hero-title {
					font-size: 52px;
				}
			}

			/* Mobile (≤576px) */
			@media (max-width: 576px) {
				.hero-title {
					font-size: 32px;
				}
			}

			
            .image-rounded {
                border-top-right-radius: 24px;
                border-bottom-right-radius: 24px;
            }

            /* Di mobile: radius semua sisi */
            /* @media (max-width: 767px) {
                .image-rounded {
                    border-radius: 24px !important;
                }

                .rounded-on-mobile {
                    display: flex;
                    justify-content: center;
                }
            } */

            @media (max-width: 767px) {
            .rounded-on-mobile {
                display: flex;
                justify-content: center;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .rounded-on-mobile img {
                max-width: 100%;
                width: 100%;
                max-width: 500px; /* Atur ukuran maksimum gambar */
            }
            .image-rounded {
                            border-radius: 24px !important;
                        }
        }


			.custom-card {
                width: 100%;
                max-width: 320px;
                height: auto;
                background-color: #ffffff;
                color: #000000;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                padding: 12px;
                display: flex;
                flex-direction: column;
                gap: 14px;
                opacity: 1;
            }

            /* Responsive: shrink slightly on smaller screens */
            @media (max-width: 576px) {
                .custom-card {
                    max-width: 100%;
                }
            }

            .custom-card .card-body{
				padding: 1px

			}

           .custom-card .card-title {
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 38px;
                line-height: 100%;
                letter-spacing: 0;
                color: #000000;
                text-align: left;
            }

            .custom-card .card-text {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 14px;
                line-height: 1.4;
                letter-spacing: 0;
                color: #000000;
                text-align: left;
                margin-bottom: 1rem;
            }

            /* Laptop & Tablet (≤1024px) */
			@media (max-width: 1024px) {
			    .custom-card .card-title {
                    font-size: 32px;
                }

                .custom-card .card-text {
                    font-size: 16px;
                }
			}

            /* RESPONSIVE */
            @media (max-width: 992px) {
                /* Tablet */
                .custom-card .card-title {
                    font-size: 32px;
                }

                .custom-card .card-text {
                    font-size: 13px;
                }
            }

            @media (max-width: 768px) {
                /* Mobile */
                .custom-card .card-title {
                    font-size: 26px;
                }

                .custom-card .card-text {
                    font-size: 12px;
                }
            }

            @media (max-width: 576px) {
                /* Extra small mobile */
                .custom-card .card-title {
                    font-size: 22px;
                }

                .custom-card .card-text {
                    font-size: 11px;
                }
            }


            .btn-custom {
                display: block;
                width: 286px;
                max-width: 100%;
                height: 40px;
                border-radius: 8px;
                padding: 8px;
                background-color: #20419A;
                color: #ffffff;
                text-align: center;
                line-height: 24px;
                font-size: 14px;
                text-decoration: none;
                transition: background-color 0.2s ease-in-out;
                margin: 0 auto;
                font-family: 'Inter', sans-serif;
                font-weight: 600;
            }

            /* Hover effect */
            .btn-custom:hover {
                color: #20419A;
                background-color: #ffffff;
                border: 2px solid #20419A;
            }

            /* Responsive button width for smaller screens */
            @media (max-width: 576px) {
                .btn-custom {
                    width: 100%;
                }
            }
/* 
    next section */
    
/* Section setelah home */
			#next-section {
				/* margin-top: -80px; tarik ke atas agar menyambung */
				background: linear-gradient(180deg, #20419A 61.19%, rgba(11, 22, 52, 0) 100%);
				padding: 150px 20px;
                 margin-top: -1px; /* atau 0 */
				color: white;
				position: relative;
				z-index: 1;
			}
			


            @media (max-width: 768px) {
				#next-section .row.align-items-center {
					text-align: center;
				}
			}

            .heading-title {
				font-family: 'Inter', sans-serif;
				font-weight: 700;
				font-style: normal;
				line-height: 100%;
				letter-spacing: 0;
				text-transform: capitalize;
				color: white;

			/* Default (desktop) */
			font-size: 40px;
			}

			/* Laptop & Tablet (≤1024px) */
			@media (max-width: 1024px) {
			.heading-title {
				font-size: 32px;
			}
			}

			/* Mobile (≤768px) */
			@media (max-width: 768px) {
			.heading-title {
				font-size: 26px;
			}
			}

			/* Extra Small Mobile (≤480px) */
			@media (max-width: 480px) {
			.heading-title {
				font-size: 22px;
			}
			}

			.paragraph-text {
				font-family: 'Inter', sans-serif;
				font-weight: 400;
				font-style: normal;
				font-size: 16px;
				line-height: 160%;
				letter-spacing: 0;
				color: rgba(255, 255, 255, 0.75);
				margin: 0;
			}

			/* Tablet */
			@media (max-width: 992px) {
				.paragraph-text {
					font-size: 15px;
					line-height: 150%;
				}
			}

			/* Mobile */
			@media (max-width: 576px) {
				.paragraph-text {
					font-size: 14px;
					line-height: 140%;
				}
			}


			.image-wrapper-start {
                flex: 1 1 100%;
                width: 100vw;
                margin-left: calc(-1 * ((100vw - 100%) / 2));
                aspect-ratio: 745 / 255;
                overflow: hidden;
                position: relative;
                max-width: none;
            }


            .image-wrapper-start img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                display: block;
            }

            
            /* Tablet & laptop (dari 768px sampai <1440px) */
            @media (min-width: 768px) and (max-width: 1439.98px) {
                .image-wrapper-start {
                    flex: 1 1 50%;
                }
            }

            /* Desktop besar (1440px ke atas) */
            @media (min-width: 1440px) {
                .image-wrapper-start {
                    flex: 1 1 75%;
                    width: 100vw;
                    margin-left: calc(-1 * ((100vw - 1140px) / 2)); /* sesuaikan container tengah */
                }
            }

			.text-content {
				flex: 1 1 45%;
				max-width: none;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
			}
			.custom-figma-btn {
				display: inline-block;
				width: 120px;
				height: 30px;
				padding: 8px;
				background-color: #FFFFFF;
				color: #20419A;
				text-decoration: none;
				text-align: center;
				border-radius: 8px;

				font-family: 'Inter', sans-serif;
				font-weight: 700;
				font-size: 16px;
				line-height: 1;
				letter-spacing: 0;

				/* Optional: transition for hover/focus */
				transition: all 0.2s ease-in-out;
			}

            .custom-figma-btn:hover {
                color: #FFFFFF;
                background-color: #20419A;
                border: 2px solid #FFFFFF;
            }

			/* Tablet (≤992px) */
			@media (max-width: 992px) {
				.custom-figma-btn {
					width: 100px;
					height: 28px;
					font-size: 15px;
				}
			}

			/* Mobile (≤576px) */
			@media (max-width: 576px) {
				.custom-figma-btn {
					width: 90px;
					height: 26px;
					font-size: 14px;
					padding: 6px;
				}
			}

            @media (min-width: 992px) {
            .mb-responsive {
                margin-bottom: 10rem; /* contoh: 80px */
            }
            }

            @media (max-width: 991.98px) {
            .mb-responsive {
                margin-bottom: 5rem; /* contoh: 32px */
            }
            }

            @media (min-width: 992px) {
            .mb-peta {
                margin-bottom: 8rem; /* contoh: 80px */
            }
            }

            @media (max-width: 991.98px) {
            .mb-peta {
                margin-bottom: 2rem; /* contoh: 32px */
            }
            }
/* 
    peta */
            #chartdiv {
                width: 100%;
                aspect-ratio: 16 / 9;
                min-height: 250px;
                max-height: 417px;
            }

            .responsive-heading {
				font-family: 'Inter', sans-serif;
				font-weight: 700;
				line-height: 100%;
				letter-spacing: 0;
				margin-bottom: 1rem;
			}

			/* Default (desktop) */
			.responsive-heading {
				font-size: 40px;
			}

			/* Laptop & tablet */
			@media (max-width: 1024px) {
				.responsive-heading {
				font-size: 32px;
				}
			}

			/* Mobile phones */
			@media (max-width: 768px) {
				.responsive-heading {
				font-size: 26px;
				}
			}

			/* Extra small (gadget kecil, 375px ke bawah) */
			@media (max-width: 480px) {
				.responsive-heading {
				font-size: 22px;
				}
			}

            .responsive-text {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 14px;
                line-height: 1.4; /* 100% */
                letter-spacing: 0;
                color: #ffffff;
                text-align: left;
                margin-bottom: 1rem;
            }

            /* Responsiveness */

            /* Extra large screens (desktops > 1200px) */
            @media (min-width: 1200px) {
                .responsive-text {
                    font-size: 16px;
                }
            }

            /* Large devices (laptop: 992px - 1199px) */
            @media (min-width: 992px) and (max-width: 1199px) {
                .responsive-text {
                    font-size: 15px;
                }
            }

            /* Medium devices (tablet: 768px - 991px) */
            @media (min-width: 768px) and (max-width: 991px) {
                .responsive-text {
                    font-size: 14px;
                }
            }

            /* Small devices (mobile: < 768px) */
            @media (max-width: 767px) {
                .responsive-text {
                    font-size: 13px;
                }
            }

    /* badge status */

            @media (max-width: 768px) {
				.badge-info-fixed {
					position: static !important;
					transform: none !important;
					margin-top: 2rem !important;
					flex-direction: row !important;
					align-items: center !important;
					justify-content: center;
				}

				.badge-info-fixed > div {
					width: 100% !important;
					max-width: 220px;
				}
			}

            
            .stat-card {
                width: 131px;
                height: 121px;
                background-color: rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(6px);
                border-radius: 1rem; /* rounded-4 */
                box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* shadow-sm */
                padding: 2rem 3rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            /* Number */
            .stat-number {
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 40px;
                line-height: 100%;
                letter-spacing: 0;
                color: #ffffff;
                text-transform: capitalize;
                margin-bottom: 6px;
                text-align: left;
            }

            .stat-label {
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 18px;
                line-height: 100%;
                letter-spacing: 0;
                color: rgba(255, 255, 255, 0.7);
                text-align: left;
                text-transform: capitalize;
            }


            /* RESPONSIVE ADJUSTMENTS */

            /* Extra Large Screens (≥1200px) */
            @media (min-width: 1200px) {
                .stat-card {
                    width: 131px;
                    height: 121px;
                }
                .stat-number {
                    font-size: 48px;
                }
                .stat-label {
                    font-size: 32px;
                }
            }

            /* Medium Devices (Tablet: 768px–991px) */
            @media (max-width: 991px) {
                .stat-card {
                    width: 120px;
                    height: 115px;
                    padding: 1.5rem;
                }
                .stat-number {
                    font-size: 38px;
                }
                .stat-label {
                    font-size: 24px;
                }
            }

            /* Small Devices (Phone: <768px) */
            @media (max-width: 767px) {
                .stat-card {
                    width: 100px;
                    height: 100px;
                    padding: 1rem;
                }
                .stat-number {
                    font-size: 30px;
                }
                .stat-label {
                    font-size: 18px;
                }
            }

/* app */

            /* Kontainer utama */
            .blue-card-container {
                background-color: #20419A;
                height: 290px;
                border-top-left-radius: 24px;
                border-bottom-left-radius: 24px;
                overflow: visible;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 2rem;
            }

            /* Konten dalam card */
            .blue-card-content {
                margin-top: -180px;
                position: relative;
                width: 100%;
                max-width: 708px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            /* Gambar phone */
            .blue-card-phone {
                max-width: 550px;
                height: auto;
                z-index: 2;
                position: relative;
            }

            /* Bayangan di bawah phone */
            .blue-card-shadow {
                position: absolute;
                bottom: 10px;
                width: 120px;
                height: 20px;
                background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
                border-radius: 50%;
                transform: scaleX(1.2);
                z-index: 1;
            }

   @media (max-width: 767px) {
  .blue-card-container {
    width: auto !important;     /* override full width Bootstrap */
    max-width: 80vw;            /* maksimal lebar setengah viewport */
    margin-left: auto;          /* dorong ke kanan */
            /* jarak ke kanan */
    padding-left: 1rem;         /* jarak isi dari kiri */
  }
}



            /* RESPONSIVE BREAKPOINTS */
            @media (max-width: 991.98px) {
                .blue-card-container {
                    flex-direction: column;
                    border-top-left-radius: 24px;
                     border-bottom-left-radius: 24px;
                    height: auto;
                  
                }

                .blue-card-content {
                    flex-direction: column;
                    max-width: 100%;
                }

                .blue-card-phone {
                    max-width: 100%;
                    width: 300px;
                }

                .blue-card-shadow {
                    width: 100px;
                    height: 16px;
                    bottom: 5px;
                }
            }

           .heading-section {
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: 36px;
                line-height: 100%;
                letter-spacing: 0;
                text-transform: capitalize;
                color: #1e1e2d; /* sesuai Metronic text-dark */
                margin-bottom: 2rem;
            }

            /* Style span Benevesia */
            .heading-section .heading-highlight {
                display: inline-block;
                color: #20419A;
                border-radius: 0.4rem;
            }
            /* Responsiveness */
            @media (max-width: 1200px) {
                .heading-section {
                    font-size: 36px;
                }
            }

            @media (max-width: 992px) {
                .heading-section {
                    font-size: 32px;
                }
            }

            @media (max-width: 768px) {
                .heading-section {
                    font-size: 28px;
                    line-height: 110%;
                    text-align: left;
                }
            }

            @media (max-width: 576px) {
                .heading-section {
                    font-size: 24px;
                    line-height: 110%;
                    text-align: left;
                }

                .heading-section .heading-highlight {
                    display: block;
                    margin-top: 0.5rem;
                }
            }

            .section-description {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-style: normal;
                font-size: 14px;
                line-height: 1.4; /* 100% */
                letter-spacing: 0;
                color: #5e6278; /* text-gray-700 */
                margin-bottom: 1.75rem; /* mb-7 (Metronic spacing) */
            }

            /* Responsiveness */
            @media (max-width: 992px) {
                .section-description {
                    font-size: 13px;
                }
            }

            @media (max-width: 768px) {
                .section-description {
                    font-size: 12.5px;
                    text-align: left;
                }
            }

            @media (max-width: 576px) {
                .section-description {
                    font-size: 12px;
                    text-align: left;
                }
            }

            .btn-download-app {
                display: inline-block;
                font-family: 'Inter', sans-serif;
                font-weight: 600;
                font-size: 16px; /* fs-6 equivalent */
                color: #ffffff;
                background-color: #20419A;
                padding: 6px 10px; /* py-3 px-6 */
                border-radius: 8px;
                text-decoration: none;
                transition: background-color 0.3s ease;
                line-height: 1;
            }

            /* Hover effect */
            .btn-download-app:hover {
                background-color: #16316e; /* slightly darker shade */
            }

            /* Responsiveness */
            @media (max-width: 768px) {
                .btn-download-app {
                    font-size: 14px;
                    padding: 6px 20px;
                }
            }

            @media (max-width: 576px) {
                .btn-download-app {
                    font-size: 13px;
                    width: 100%;
                    text-align: center;
                }
            }


/* 
slide news */

			/* .card-news {
				
				background-color: #ffffff; 
				color: #000000;
				border-radius: 16px;
			
				box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
				width: 320px;
				pointer-events: auto;
			}

           
			

			
			/* .image-wrapper-start {
				width: 100%;
				max-width: clamp(745px, 55vw, 1200px); 
				aspect-ratio: 745 / 255;
				overflow: hidden;
			} */

			

			
/* 
			.card-news {
				width: 320px;
				height: 389px;
				border-radius: 16px;
				padding: 16px;
				opacity: 1;
			}
			@media (max-width: 767.98px) {
				.card-news {
					width: 100% !important;
					height: auto !important;
				}
			}  */

            

           /* Responsive Card Layout */
            .responsive-card {
                width: 100%;
                max-width: 320px;
                height: auto;
                border-radius: 16px;
                padding: 16px;
                display: flex;
                background-color: #ffffff;
                flex-direction: column;
            }

            /* Responsive Image */
           .responsive-card img {
                width: 100%;
                height: clamp(127px, 25vw, 127px); /* tinggi responsif tapi minimum 127px seperti di Figma */
                object-fit: cover;
                 object-position: 50% 30%; /* horizontal 50% (tengah), vertikal 30% antara top dan center */
                border-radius: 8px; /* opsional sesuai Figma */
                opacity: 1; /* default, bisa dihapus kalau tidak diubah */
            }

            /* Responsive Title */

            .card-news {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-news .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-news .read-more-btn {
    margin-top: auto;       /* dorong ke paling bawah */
    align-self: center;     /* selalu rata tengah */
    white-space: normal;    /* biar teks panjang bisa ke bawah */
    word-wrap: break-word;
}

          .news-title {
                font-family: 'Inter', sans-serif;
                font-weight: 700; /* bold */
                font-style: normal;
                font-size: clamp(1.25rem, 2vw, 1.5rem); /* dari 20px sampai 24px */
                line-height: 1; /* 100% */
                letter-spacing: 0;
                text-align: left;
                margin-bottom: 0.5rem; /* opsional: untuk jarak bawah */
                color: #000000;
            }
            .news-text {
                font-family: 'Inter', sans-serif;
                font-weight: 400; /* Regular */
                font-style: normal;
                font-size: clamp(0.875rem, 1.25vw, 1rem); /* 14px - 16px */
                line-height: 1.6; /* lebih nyaman dibaca di responsif, bisa disesuaikan */
                letter-spacing: 0;
                text-align: left;
                margin: 0; /* opsional: reset margin bawaan */
                color: #000000;

                display: -webkit-box;
                -webkit-line-clamp: 4; /* tampilkan maksimal 3 baris */
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .read-more-btn {
                display: inline-flex;
                justify-content: center;
                align-items: center;

                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-style: normal;
                font-size: clamp(14px, 4vw, 20px); /* Responsif: min 14px - max 20px */
                line-height: 1; /* 100% */
                letter-spacing: 0;

                color: #20419A;
                background-color: transparent;

                border: 2px solid #20419A;
                border-radius: 8px;
                padding: 8px 16px;

                width: 100%;
                max-width: 286px;
                min-height: 40px;

                text-decoration: none;
                box-sizing: border-box;
                transition: all 0.3s ease;
            }

            /* Tablet: tombol lebih kecil */
            @media (min-width: 768px) {
                .read-more-btn {
                    width: 60%;
                    font-size: 14px;
                }
            }

            /* Desktop: tombol sesuai ukuran Figma */
            @media (min-width: 1024px) {
                .read-more-btn {
                    width: 286px;
                    font-size: 18px;
                }
            }

            /* Hover effect for responsive card */
            .responsive-card:hover {
                background-color: #20419A;
            }

            /* Change title and text to white on card hover */
            .responsive-card:hover .news-title,
            .responsive-card:hover .news-text {
                color: #FFFFFF;
            }

            /* Read more button hover effect inside hovered card */
            .responsive-card:hover .read-more-btn {
                background-color: #FFFFFF;
                color: #20419A;
                border-color: #FFFFFF;
            }

           

            .slider-nav-button {
                width: 20px;
                height: 40px;
                border: 4px solid #20419A;
                border-radius: 8px; /* opsional, bisa dihilangkan */
                background-color: transparent;
                display: flex;
                align-items: center;
                justify-content: center;
                transform: rotate(0deg); /* default, bisa ubah -180deg untuk rotate kiri */
                padding: 0;
            }
            .slider-nav-button svg {
                width: 16px;
                height: 16px;
                color: #20419A;
            }

            .tns {
                overflow: visible !important;
                position: relative;
                padding: 0 10px; /* Biar panah kiri/kanan tidak mentok */
            }
            .tns-outer {
                overflow: visible !important;
                position: relative;
            }
            #kt_team_slider_prev1,
            #kt_team_slider_next1 {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 20;
                width: 40px;
                height: 40px;
            }

            #kt_team_slider_prev1 {
                left: -10px; /* Atur sesuai padding/margin */
            }

            #kt_team_slider_next1 {
                right: -10px; /* Tambahkan negatif jika terlalu rapat */
            }
            .tns-item {
                display: flex !important;
                justify-content: center;
                align-items: center;
            }

            .tns-item > .text-center {
                width: 100%;
                max-width: 600px; /* Atur sesuai kebutuhan card */
            }
/* 
banner */

@media (max-width: 767px) {
  .custom-agent-row .col-right {
    text-align: left !important;
    align-items: flex-start !important; /* jika pakai flex */
  }
}

       /* === Agent Title === */
        .agent-title {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 40px;
            line-height: 100%;
            color: #FFFFFF;
            text-align: left;
            text-transform: capitalize;
        }

        @media (max-width: 768px) {
            .agent-title {
                font-size: 28px !important;

                text-align: left !important;

            }
        }

        @media (max-width: 576px) {
            .agent-title {
                font-size: 18px !important;
                text-align: left !important;

            }
        }

        @media (min-width: 768px) {
            .agent-title {
                font-size: 32px;
                
            }
        }

        /* === Agent Paragraph === */
        .agent-paragraph {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 1.4;
            color: #FFFFFF;
            text-align: left;
        }

        @media (max-width: 768px) {
            .agent-paragraph {
                font-size: 13px;
                text-align: left;
            }
        }

        @media (max-width: 576px) {
            .agent-paragraph {
                font-size: 10px;
                text-align: left !important;
            }
        }

        @media (min-width: 768px) {
            .agent-paragraph {
                font-size: 13px;
                text-align: left;
            }
        }

        /* === Learn More Button === */
        .learn-more-btn {
            width: 127px;
            height: 40px;
            background-color: #20419A;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 100%;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 16px;
        }

        .learn-more-btn:hover {
            background-color: #20419A;
            color: #FFFFFF;
            text-decoration: none;
        }

        /* Responsive Button */
        @media (max-width: 768px) {

             .col-right {
                align-items: flex-start !important; /* Biar isi col-right rata kiri */
            }
  
            .learn-more-btn {
                width: 110px;
                font-size: 14px;
                padding: 4px 12px;
                 align-self: flex-start !important;
            }
        }

        @media (max-width: 480px) {
            .learn-more-btn {
                width: 80px;
                font-size: 10px;
                padding: 4px 10px;
                 align-self: flex-start !important;
            }
        }


        /* === Responsive Layout Row === */
        .custom-agent-row {
            display: flex;
            flex-wrap: wrap;
            transform: translateY(-60px);
            height: auto;
        }

        @media (min-width: 768px) {
            .custom-agent-row {
                height: 260px;
            }

            .col-left {
                width: 54.17%;
            }

            .col-right {
                width: 45.83%;
            }
        }

        @media (max-width: 767.98px) {
            .custom-agent-row {
                margin-top: 105px;
                height: auto;
                text-align: center;
            }
            .col-left {
                display: none;
            }

            .col-right {
                width: 100%;
            }
        }

        /* === Background Section === */
        .responsive-banner {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background-image: url('../media/landing/footer.png');
            background-size: cover;
            background-position: bottom;
            height: 465px;
        }

        @media (max-width: 992px) {
            .responsive-banner {
                height: 380px;
                background-size: cover;
                background-position: bottom;
            }
        }

        @media (max-width: 576px) {
            .responsive-banner {
                background-position: right bottom;
                 background-size: 320%;
            }
        }

/* Logo */
.company-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 10px;
}

/* Informasi Perusahaan */
.company-info {
  max-width: 326px;
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(16px, 5vw, 20px); /* Responsive: 18px on small, 24px on large */
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF; /* Sesuaikan jika perlu */
    margin-bottom: 0;
}

.company-address {
     font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 5vw, 14px); /* Responsive: 18px on small, 24px on large */
    line-height: 140%;
    letter-spacing: 0;
    color: #FFFFFF; /* Sesuaikan jika perlu */
    margin-bottom: 0;
}

/* Judul Section */
.follow-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

/* Responsive Breakpoints */
/* Untuk tampilan mobile (max-width: 768px) */
@media (max-width: 768px) {
  .company-logo {
   max-width: 200px;
    display: block;
    margin-left: 0;  /* Pastikan logo rata kiri */
    margin-right: auto;
  }

  .company-info {
    max-width: 100%;
    margin-top: 10px;
    margin-left: 0; /* Pastikan info perusahaan rata kiri */
    margin-right: auto;
    text-align: left;  /* Atur teks ke kiri */
  }

  .company-name {
    font-size: 18px;
    text-align: left !important;  /* Atur nama perusahaan rata kiri */
  }

  .company-address {
    font-size: 14px;
    text-align: left !important;  /* Atur alamat rata kiri */
  }

  .follow-title {
    font-size: 20px;
    text-align: left !important;  /* Pastikan judul ini rata kiri */
  }
}

/* Untuk tampilan lebih kecil (max-width: 576px) */
@media (max-width: 576px) {
  .company-info {
    max-width: 100%;
    margin-top: 10px;
    margin-left: 0; /* Pastikan info perusahaan rata kiri */
    margin-right: auto;
    text-align: left;  /* Atur teks ke kiri */
  }

  .company-logo {
    max-width: 200px;
    display: block;
    margin: 0 auto;
    margin-left: 0; /* Pastikan logo tetap rata kiri */
    margin-right: auto;
  }

  .company-name {
    font-size: 16px;
    text-align: left !important;  /* Atur nama perusahaan rata kiri */
  }

  .company-address {
    font-size: 12px;
    text-align: left !important;  /* Atur alamat rata kiri */
  }

  .follow-title {
    font-size: 18px;
    text-align: left !important;  /* Pastikan judul ini rata kiri */
  }
}




.social-logo {
  width: auto;
  max-width: 99px;
  height: auto;
  object-fit: contain;
}

/* Untuk tampilan mobile (max-width: 768px) */
@media (max-width: 768px) {
  .social-logo {
    max-width: 80px;
    display: inline-block;
    margin: 0;
    text-align: left;  /* Pastikan ikon sosial media rata kiri */
  }
}

/* Untuk tampilan lebih kecil (max-width: 480px) */
@media (max-width: 480px) {
  .social-logo {
    max-width: 74px;
    display: inline-block;
    margin: 0;
    text-align: left;  /* Pastikan ikon sosial media rata kiri */
  }
}


.partner-logo {
  width: auto;
  max-width: 60px;
  height: auto;
  object-fit: contain;
}

/* Untuk tampilan mobile (max-width: 768px) */
@media (max-width: 768px) {
  .partner-logo {
    max-width: 60px;
    display: inline-block; /* Ubah ke inline-block agar bisa diatur rata kiri */
    margin: 0; /* Menghapus margin agar elemen tidak terpusat */
  }
}

/* Untuk tampilan lebih kecil (max-width: 480px) */
@media (max-width: 480px) {
  .partner-logo {
    max-width: 60px !important;
    display: inline-block !important; /* Menggunakan inline-block agar rata kiri */
    margin: 0; /* Hapus margin auto */
  }
}

/* Social media */
@media (max-width: 768px) {
  .col-12.col-md-3 ul {
    display: flex;
    flex-direction: row; /* Memastikan gambar sejajar secara horizontal */
    justify-content: flex-start; /* Mengatur ke kiri */
    padding-left: 0;
    margin-left: 0;
  }

  .social-logo, .partner-logo {
    display: inline-block;
    
    margin-right: 10px; /* Memberikan jarak antar gambar */
  }

  /* Mengatur ulang align-items */
  .col-12.col-md-3 {
    text-align: left; /* Menjaga teks dan gambar rata kiri */
  }
}

/* Untuk ukuran lebih kecil */
/* @media (max-width: 576px) {
  .social-logo, .partner-logo {
    max-width: 80px; 
  }
} */





.draggable-btn {
  position: fixed;
  top: 50%;            /* posisikan di tengah layar secara vertikal */
  right: 0;            /* tetap di sisi kanan */
  transform: translateY(-50%); /* geser ke atas setengah tinggi elemen */
  
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #c0392b;
  color: #fff;
  border-radius: 12px 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  cursor: grab;
  user-select: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 9999;
}



.draggable-btn:active {
  cursor: grabbing;
}

@media (max-width: 767px) {
    #dragBtn {
        display: none !important;
    }
}


			


			
			

