/* Pastikan carousel ada position relative untuk positioning control dan overlay */
  .carousel {
    position: relative;
  }

  .carousel-caption-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* latar gelap lut */
    padding: 40px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    z-index: 20;
    text-align: center;
  }

	.carousel-caption-overlay h1 {
	  font-size: 2rem;
	  font-weight: bold;
	  color: #FF6F00; /* oren terang */
	  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
	}

  .carousel-caption-overlay .btn {
	  font-size: 1rem;
	  padding: 10px 25px;
	  font-weight: 600;
	  color: #fff;
	  background: linear-gradient(45deg, #007bff, #00c6ff);
	  border: none;
	  border-radius: 30px;
	  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	  transition: all 0.3s ease;
	}

	.carousel-caption-overlay .btn:hover {
	  background: linear-gradient(45deg, #0056b3, #00a3cc);
	  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
	}


  /* Controls fix */
  .carousel-control-prev,
  .carousel-control-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 5%;
    z-index: 30;
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.7);
    background-size: 60% 60%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    filter: none;
  }

  /* Extra padding on mobile */
  @media (max-width: 576px) {
    .carousel-caption-overlay {
      padding: 30px 15px;
    }

    .carousel-caption-overlay h1 {
      font-size: 1.5rem;
    }

    .carousel-caption-overlay .btn {
      font-size: 0.9rem;
    }
  }

  #page-loader.fade {
    opacity: 0;
    transition: opacity 0.5s ease;
  }