
  .extraBtn {
    padding: 3px 0 0 0 !important;
  }

  .extraBtn a:hover {
    color: #fff !important;
  }


  /* ==============================
   HEADER BASE
============================== */
  #header {
    transition: all 0.4s ease;
    z-index: 999;
    padding: 15px 0;
  }

  .header-transparent {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header-dark {
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }

  .logo img {
    max-height: 42px;
    transition: transform 0.3s ease;
  }

  .logo img:hover {
    transform: scale(1.05);
  }

  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover,
  .nav-menu .current-menu-item>a {
    color: #FD7B33;
  }

  .nav-menu .menu-item-has-children {
    position: relative;
  }

  .nav-menu .menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg);
    position: relative;
    top: -2px;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.8;
  }

  .nav-menu .menu-item-has-children:hover>a::after {
    transform: rotate(135deg);
    opacity: 1;
    color: #FD7B33;
  }

  /* Submenu */
  .nav-menu .menu-item-has-children ul.sub-menu {
    position: absolute;
    /* top: 135%; */
    top: 150%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 15px;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .nav-menu .menu-item-has-children:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu .menu-item-has-children ul.sub-menu a {
    color: #333;
    font-size: 14px;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.25s ease;
  }

  .nav-menu .menu-item-has-children ul.sub-menu a:hover {
    background: #f5f5f5;
    color: #FD7B33;
    transform: translateX(4px);
  }

  /* Button */
  .get-started-btn {
    border: 2px solid #FD7B33;
    color: #fff;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .get-started-btn:hover {
    background: #FD7B33;
    color: #fff;
  }

  /* ==============================
   MOBILE NAVIGATION
============================== */

  /* Mobile Nav Header (logo + close icon inside overlay) */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
  }

  .mobile-logo img {
    height: 40px;
    max-width: 120px;
  }

  .mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .mobile-nav-close:hover {
    color: #FD7B33;
  }


  .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1100;
    border: none;
    background: transparent;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .mobile-nav-toggle.active i {
    transform: rotate(90deg);
  }

  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #111;
    color: #fff;
    z-index: 1101;
    /* padding: 10px 70px 25px 40px; */
    padding: 10px 26px 25px 25px;
    overflow-y: auto;
    border-left: 2px solid #FD7B33;
    transition: right 0.4s ease;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav li {
    margin-bottom: 15px;
  }

  .mobile-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    transition: color 0.3s;
  }

  .mobile-nav a:hover {
    color: #FD7B33;
  }

  .mobile-nav .menu-item-has-children>a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
  }

  .mobile-nav .menu-item-has-children.open>a::after {
    transform: rotate(180deg);
  }

  .mobile-nav .menu-item-has-children ul.sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav .menu-item-has-children.open ul.sub-menu {
    display: block;
  }

  /* Active */
  .mobile-nav-active .mobile-nav {
    right: 0;
  }

  .mobile-nav-active .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  .get-started-mobile-btn {
    border: 2px solid #FD7B33;
    color: #fff;
    border-radius: 50px;
    padding: 8px 22px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .get-started-mobile-btn:hover {
    background: #FD7B33;
    color: #fff;
  }
.home-header.scrolled {
    background: rgba(50, 50, 50, 0.9);
}

.app-header{
    background: rgba(50, 50, 50, 0.9);
}
