 /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger {
    width: 25px;
    height: 2.5px;
    background: #2b3f6f;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #333333;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }

  .mobile-nav-list {
    list-style: none;
    margin: 60px 0 30px;
    padding: 0;
  }

  .mobile-nav-item {
    margin-bottom: 5px;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: #27316c;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .mobile-nav-link:hover {
    background: #f5f5f5;
    transform: translateX(5px);
  }

  @media (max-width: 768px) {
    body {
      padding: 10px;
    }

    .hero-container {
      padding: 15px 15px 50px;
      border-radius: 30px;
    }

    .navbar {
      padding: 12px 20px;
      margin-bottom: 40px;
      gap: 0;
      justify-content: space-between;
    }

    .nav-links,
    .contact-btn {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .logo img {
      height: 38px;
    }

  }

  /* Desktop Menu - Active Page */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  font-weight: 600;
}

/* Mobile Menu - Active Page */
.mobile-nav-list .current-menu-item > a,
.mobile-nav-list .current_page_item > a {
  font-weight: 600;
}
.nav-links .current-menu-item > a,
.mobile-nav-list .current-menu-item > a {
  color: #f4873f; /* change if needed */
}

.logo img{
  height: 44px;
  width: auto;
}


.nav-links a:hover {
    font-weight: 200;
}