/* 
Don't want to use sass and simply modify the stylesheet in the old css fashion? 
Just customize your theme here.
================================================== */

body {}



.bg-bluedark-untirta {
  background-color: #0b183a; /* ganti sesuai warna tema */
}
a.text-light:hover {
  opacity: 0.75;
  text-decoration: underline;
}


.blur {
  filter: blur(70px);
}


.hero-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 7rem 0; /* sebelumnya 4rem, ditambahin biar lebih tinggi */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}


.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .btn {
    width: 100%;
  }
}

.section-heading {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.section-heading h2 {
  font-size: 32px;
  margin: 0;
}

.section-content {
  padding: 60px 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col {
  position: relative;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-absolute {
  position: absolute;
  top: -30px;
  left: 0;
  width: auto;
}
.img-absolute-small {
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 64px;
}
.info-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.info-box h3 {
  margin-top: 0;
}
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #005baa;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.bg-biru-muda {
  background: #D8EEF2;
}



/* ====== TOPBAR STYLE ====== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000; /* lebih tinggi dari navbar */
  background-color: #05285e;
  border-bottom: 1px solid #dee2e6;
}

/* Tambahan untuk spacing & responsive */
.topbar .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  color: #212529;
}

.topbar .social-icons a {
  color: #333;
  margin-left: 0.5rem;
}

@media (max-width: 576px) {
  .topbar .container {
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Geser navbar ke bawah sesuai tinggi topbar (misalnya 40px) */
.navigation-wrap {
  top: 40px; /* ini menyesuaikan tinggi .topbar */
  background: #fcca0b;
  padding: 5px 0;
}

img.me-2 {
    height: 35px;
}


.angka-section {
  background: #e9ecef;
}

.angka-box {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.angka-box:hover {
  transform: translateY(-5px);
}

.angka {
  color: #05285e;
}

