 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            /* tinggi navbar */
        }

        body {
            font-family: "poppins", sans-serif;
            line-height: 1.6;
            background: #000;
        }

        /* Header Styles */
        header {
            background-color: #000000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0 5px;


        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .logo a {
            text-decoration: none;
            color: #333;
        }

        /* Navigation Menu */
        nav {
            display: flex;
            margin: 0 auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            padding: 5px 0;
            transition: color 0.3s;
            font-weight: 600;
            display: block;
        }

        .nav-menu a:hover {
            color: #ff4444;
        }

        /* Indikator aktif (border-top merah) */
        .nav-menu a.active {
            border-top: 2px solid #ff0000;
            padding-top: 3px;
            color: #ff0000;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
            z-index: 1;
            top: 100%;
            left: 0;
            margin-top: 5px;
        }

        .dropdown-content.show {
            display: block;
        }

        .dropdown-content a {
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            display: block;
            border-top: none !important;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #ff4444;
        }

        .dropdown>a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown>a::after {
            content: "▼";
            font-size: 10px;
            margin-left: 5px;
        }

        /* Hamburger Menu (Mobile) */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: #ffffff;
            transition: all 0.3s;
        }

        .NavMobile {
            display: none;
        }

        .logoNavDesktop {
            display: block;
            /* background: red; */
            text-align: center;
            margin-bottom: 10px;
        }

        .garisMerahHeader {
            border: .5px solid red;
            width: 70%;
            margin: 2px auto 0;
        }