  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            overflow-x: hidden;
            color: #1e3a8a;
        }

        /* Header / Navbar */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.3s;
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

         .navbar {
        max-width: 1280px;
        margin: 0 auto;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }

      .logo-icon {
        width: 45px;
        height: 45px;
        /* background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); */
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
      }
      .language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px; /* opsional */
}

      .logo-text {
        font-size: 20px;
        font-weight: 700;
        color: #1e3a8a;
      }

      .nav-menu {
        display: flex;
        gap: 35px;
        align-items: center;
      }

      .nav-link {
        color: #64748b;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
      }
      .nav-link.active {
        color: #2d5bff;
      }
      .nav-link:hover {
        color: #2d5bff;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
        transition: width 0.3s;
      }

      .nav-link:hover::after,
      .nav-link.active::after {
        width: 100%;
      }

      /* Dropdown Styles */
      .nav-item {
        position: relative;
      }

      .nav-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        padding: 12px 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 8px;
      }

      .nav-item:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown-item {
        display: block;
        padding: 10px 20px;
        color: #64748b;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
      }

      .dropdown-item:hover {
        background: rgba(45, 91, 255, 0.08);
        color: #2d5bff;
        padding-left: 25px;
      }

      .nav-link.has-dropdown {
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .nav-link.has-dropdown::before {
        content: "▾";
        font-size: 12px;
        transition: transform 0.3s;
      }

      .nav-item:hover .nav-link.has-dropdown::before {
        transform: rotate(-180deg);
      }

      .language-selector {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(45, 91, 255, 0.08);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
      }

      .language-selector::before {
        content: "▾";
        font-size: 12px;
        color: #2d5bff;
        transition: transform 0.3s;
      }

      .nav-item:hover .language-selector::before {
        transform: rotate(-180deg);
      }

      .language-selector:hover {
        background: rgba(45, 91, 255, 0.15);
      }

      .language-flag {
        font-size: 18px;
      }

      .language-text {
        font-size: 14px;
        font-weight: 600;
        color: #2d5bff;
      }

      .btn-login {
        padding: 10px 24px;
        background: white;
        color: #2d5bff;
        border: 2px solid #2d5bff;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-family: "Poppins", sans-serif;
      }

      .btn-login:hover {
        background: #2d5bff;
        color: white;
        transform: translateY(-2px);
      }

      .mobile-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 28px;
        color: #1e3a8a;
        cursor: pointer;
      }

        /* Footer */
        .footer {
            background: #1e3a8a;
            color: white;
            padding: 80px 40px 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            transform: translateY(-3px);
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

          /* Responsive */
        @media (max-width: 1024px) {
              .nav-menu {
          display: none;
        }

        .nav-menu.active {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: 85px;
          left: 0;
          right: 0;
          background: white;
          padding: 20px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          gap: 15px;
        }

        .nav-item {
          width: 100%;
        }

        .nav-dropdown {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          margin-top: 8px;
          background: rgba(45, 91, 255, 0.05);
          border-radius: 8px;
          display: none;
        }

        .nav-item:hover .nav-dropdown {
          transform: none;
        }

        .nav-item.active .nav-dropdown {
          display: block;
        }

        .language-selector {
          width: 100%;
          justify-content: center;
        }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

         @media (max-width: 768px) {
           

        .nav-menu {
          display: none;
        }

        .nav-menu.active {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: 85px;
          left: 0;
          right: 0;
          background: white;
          padding: 20px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          gap: 15px;
        }
        .mobile-toggle {
          display: block;
        }
          
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }