.top-bar {
            position: fixed;
            background-color: #243a6a;
            height: 32px;
            font-size: 0.875rem;
            color: white;
        }
        .top-bar a {
            color: white;
            text-decoration: none;
        }
        .top-bar a:hover {
            color: #d1d5db;
        }

        /* Navbar */
        .navbar-custom {
            position: fixed;
            background-color: #3f5a8a;
        }
        .nav-link-custom {
            color: white;
            font-weight: 600;
            font-size: 0.875rem;
            font-family: Arial, sans-serif;
        }
        .nav-link-custom:hover,
        .nav-link-custom:focus {
            text-decoration: none;
            color: white;
        }

        /* Dropdown Menu - Animasi */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }

        /* Dropdown background */
        .dropdown-menu-custom {
            background-color: #3f5a8a;
            border-color: #4b6aa3;
        }
        .dropdown-menu-custom a.dropdown-item {
            color: white;
        }
        .dropdown-menu-custom a.dropdown-item:hover,
        .dropdown-menu-custom a.dropdown-item:focus {
            background-color: #2c4470;
            color: white;
            text-decoration: underline;
        }

        /* Logo */
        .logo-text {
            font-weight: 800;
            font-size: 0.875rem;
            font-family: Arial, sans-serif;
            color: white;
            user-select: none;
        }

        a {
            text-decoration: none !important;
            color: white !important;
        }

        .fade-hover {
          transition: opacity 0.4s ease;
        }

        .fade-hover:hover {
          opacity: 0.6;
        }

        /* ini animasi */
        .fade-in {
          opacity: 0;
          transform: translateY(20px);
          animation: fadeIn ease-in-out 1s forwards;
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
            transform: translateY(20px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .strech {
            width: 100%;
            height: 350px;
        }

        .award {
            width: 250px;
            height: 150px;
        }
        .shadow {
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
        }

        /* ini maps */
        #map {
            height: 500px;
            width: 100%;
        }

        .floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }
