
    body {
      background-color: #f8f9fa;
      padding-top: 10px;
    }
    .navbar {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	  border-bottom: 2px solid  #bf00ff;
    }
    .navbar-brand img {
      height: 90px;
      transition: height 0.3s ease;
    }
    @media (max-width: 768px) {
      .navbar-brand img {
        height: 50px;
      }
    }

    /* Carousel */
    .banner-slider-fullscreen .carousel,
    .banner-slider-fullscreen .carousel-inner,
    .banner-slider-fullscreen .carousel-item {
      height: 100%;
    }
    .banner-slider-fullscreen .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carousel-indicators [data-bs-target] {
      background-color: #fff;
    }

    /* Gallery */
    .gallery-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      transition: 0.3s ease-in-out;
    }
    .gallery-img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .modal-content {
      background-color: transparent;
      border: none;
    }
    .modal-img-wrapper {
      background-color: #fff;
      padding: 15px;
      border-radius: 10px;
    }

    /* Artikel slider */
    .artikel-slider .card {
      border: none;
      transition: transform 0.3s ease;
    }
    .artikel-slider .card:hover {
      transform: translateY(-5px);
    }
    .artikel-slider .card img {
      height: 200px;
      object-fit: cover;
    }

    /* Pengumuman */
    .pengumuman-banner {
      background-color: #f8f9fa;
      border-bottom: 1px solid #ddd;
    }
    .pengumuman-banner img {
      max-height: 120px;
      object-fit: contain;
    }

    /* Icon hover */
    .info-box i,
    .feature-box i {
      transition: transform 0.3s ease;
    }
    .info-box:hover i,
    .feature-box:hover i {
      transform: scale(1.2);
    }

    /* Section title */
    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    /* Banner Slick */
    .banner-slider-fullscreen {
      width: 100%;
      margin: 0;
      padding: 0;
    }
    .banner-slider .slick-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .slick-dots {
      bottom: 20px;
    }
    .slick-prev,
    .slick-next {
      z-index: 10;
    }
  
  /* Submenu styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  border-radius: 0.25rem;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
  display: block;
}

/* Optional: pointer cursor for submenu toggler */
.dropdown-submenu > a.dropdown-toggle {
  cursor: pointer;
}
 .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .card-img-top {
      height: 250px;
      object-fit: cover;
      border-bottom: 1px solid #dee2e6;
    }

    .btn-outline-primary:hover {
      background-color: #007bff;
      color: white;
    }

    select.form-select,
    input.form-control {
      border-radius: 50px;
    }

    button.btn-primary {
      border-radius: 50px;
    }