
/* Efek Pleksus Background */
#plexus-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pastikan berada di belakang konten lain */
    background: #FFFFFF; /* Latar belakang putih */
}

/* Ubah juga warna body */
body {
    background-color: #FFFFFF; /* Latar belakang utama body menjadi putih */
    color: #333333; /* Warna teks default agar tetap terbaca */
}

/* Custom GNS Loader */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary); /* Menggunakan warna biru dari tema */
}

.loader span {
    animation: loader-pulse 1.5s infinite ease-in-out;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes loader-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Styling Card Kontak versi 3 (Sesuai Gambar) */
.card-contact-v3 {
    position: relative;
    background-color: #FFFFFF;
    border: none;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    height: 100%;
}

.icon-box-v3 {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #06A3DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-v3 .fa {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.card-contact-v3 p.text-dark {
    font-size: 1rem;
    color: #000000 !important;
}

.card-contact-v3 p.text-primary {
    font-size: 1rem;
    color: #06A3DA !important;
}

.card-contact-v3:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.promo-banner {
  position: relative;
  width: 100%;
  max-height: 450px; /* sesuaikan tinggi banner */
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: 450px; /* sesuaikan tinggi */
  object-fit: cover; /* agar gambar tetap proporsional */
  border-radius: 10px;
}

/* Tombol Slider */
/* Tombol Slider Modern */
.custom-prev,
.custom-next {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #007bff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev svg,
.custom-next svg {
  width: 24px;
  height: 24px;
  stroke: #007bff;
  transition: stroke 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.custom-prev:hover svg,
.custom-next:hover svg {
  stroke: #fff;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
  box-sizing: border-box;
}

/* Dots Indicator Stylish */
.owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: rgba(200,200,200,0.6);
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0,123,255,0.6);
}

.logo-pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

 body {
    /*background: #000; /* biar keliatan jelas */
    /* color: #fff; */
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
  }

/*
 * KODE EFEK BINTANG (SPARKLE)
 * Ini adalah kode CSS untuk animasi bintang mengikuti kursor.
 */

/* Mengatur tampilan dasar bintang */
.spark {
    position: fixed; /* Posisi tetap di layar */
    width: 8px; /* Ukuran bintang */
    height: 8px;
    border-radius: 50%; /* Membuat bentuk bulat */
    pointer-events: none; /* Mengabaikan interaksi mouse */
    background: #fff;
    box-shadow: 0 0 8px #0ff, 0 0 15px #0ff; /* Efek neon / cahaya */
    z-index: 9999;
}

/* Keyframes untuk animasi pudar dan menghilang */
@keyframes sparkle-fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0) translateY(-20px); /* Memudar dan sedikit naik */
        opacity: 0;
    }
}
  
