body{
    background-image: url(../img/background.png);
    background-repeat: repeat-y;
    background-size: cover;
}

.neumorphism {
  background-color: #f0f0f0;
  border-radius: 20px;
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.7),
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}

.neumorphism-dark {
  background-color: #2c2c2c;
  border-radius: 20px;
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.4),
    -6px -6px 12px rgba(255, 255, 255, 0.05),
    inset 6px 6px 12px rgba(0, 0, 0, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.05);
}


/* Nav Start */
.navbar {
    background-color: #0A4D68;
    border-radius: 20px;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
  }

  .navbar-brand img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
  }

  .navbar-nav .nav-item {
    margin-right: 10px;
  }

  .nav-link {
    color: #fff;
  }

  .dropdown-menu {
    background-color: #f9f9f9;
    border-radius: 10px;
  }

  .dropdown-item {
    color: #0A4D68;
  }

  .search-form {
    display: flex;
    align-items: center;
    border-radius: 50px;
    margin-left: 10px;
  }

  .search-form input[type="text"] {
    border: 1.5;
    background-color: transparent;
    outline: none;
    font-family: Verdana, Geneva, sans-serif;
    color: #fff;
  }

  .search-form button {
    border: none;
    background-color: transparent;
    outline: none;
    font-family: Verdana, Geneva, sans-serif;
    cursor: pointer;
  }

  .btn-outline-light {
    border-color: #fff;
    color: #fff;
  }
/* End Nav */

/* Footer Start */
.subscribe{
  border-radius: 20px 20px 20px 20px;
  background-color: #0A4D68;
}

.btn-langganan{
  background-color: #D7BA6D;
  color: #0A4D68;
}

.footer{
  background-color: #2c2c2c;
}

.link-container {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.link-container a {
  text-decoration: none;
  color: #fff;
  display: block;
  margin-bottom: 5px; /* Atur jarak antar tautan */
}

.link-container a:hover {
  color: #0A4D68; /* Warna yang ingin Anda gunakan saat dihover */
}


@media (max-width: 576px) {
.logo-footer{
  justify-content: center;
}
}

.right-section {
  display: flex;
  align-items: center;
}

.circle {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.circle a {
  color: #2c2c2c;
  text-decoration: none;
}
.circle a:hover {
  color: #0A4D68;
  text-decoration: none;
}

/* End Footer */