  .logo-container img {
      height: 40px;
    }

    .logo-container h3 {
      font-size: 1.5rem;
    }

 .custom-navmenu .nav-item-custom.active {
      color: black;
    }
    .custom-navmenu a {
      all: unset;
      cursor: pointer;
      color: #212529;
      padding: 0.6rem 1rem;
      display: inline-block;
      position: relative;
      font-size: 1.05rem;
      border-radius: 0.2rem;
      transition: all 0.3s ease;
    }

    .custom-navmenu a:hover {
      color: #212529;
    }

    /* ===== Efek Garis Line ===== */
    @media (min-width: 1200px) {
      .custom-navmenu a::after {
        content: '';
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 0;
        height: 2px;
        background-color: #270486;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }

      .custom-navmenu a:hover::after {
        transform: scaleX(1);
      }

      .custom-navmenu .nav-item-custom.active::after {
        transform: scaleX(1);
        height: 2px;
      }
    }

    /* ===== Menu Mobile Floating Style ===== */
    .custom-navmenu .nav-menu-list {
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      background-color: #ffffffff;
      position: absolute;
      top: 70px;
      right: 15px;
      z-index: 999;
      padding: 1rem;
      border-radius: 0rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      width: 50%;

      /* Hilangkan bullet/titik dari ul dan li */
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* ===== Menu Desktop ===== */
    @media (min-width: 1200px) {
      .custom-navmenu .nav-menu-list {
        display: flex !important;
        flex-direction: row;
        position: static;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
        max-width: none;
        gap: 1rem; 
      }

      .mobile-nav-toggle {
        display: none !important;
      }
    }

    /* ===== Show menu saat toggle aktif di mobile ===== */
    .custom-navmenu.show .nav-menu-list {
      display: flex !important;
    }

    /* ===== Tombol Toggle Mobile ===== */
    .mobile-nav-toggle {
      font-size: 1.75rem;
      cursor: pointer;
      color: #212529;
      margin-left: 1rem;
    }
    
   @media (max-width: 500px) {
      .logo-container img {
        height: 25px;
      }

      .logo-container h3 {
        font-size: 1rem;
      }
    }