  /* Logo and Phone Number Styling */
  .logo-desktop { display: block; }
  .logo-mobile { display: none; }
  .desktop-phone { font-size: 1.1rem; font-weight: 500; }
  .mobile-phone { font-size: 1rem; }

  /* Mega Menu Desktop Styles */
  @media (min-width: 992px) {
    .mega-menu .dropdown-menu {
      transform: translateX(0) !important;
      top: 100% !important;
      margin-top: 0 !important;
    }
    
    .mega-menu:hover .dropdown-menu {
      display: block !important;
    }
    
    .navbar-nav .nav-item {
      position: static;
    }
    
    .navbar-nav {
      margin-left: 0 !important;
    }
  }

  /* Mobile Styles */
  @media (max-width: 991.98px) {
    .logo-desktop { display: none !important; }
    .logo-mobile { display: block !important; }
    
    .navbar-toggler {
      order: 2;
    }
    
    .mobile-phone {
      order: 1;
      margin-right: auto;
      padding-left: 15px;
    }
    
    .navbar-collapse {
      margin-top: 15px;
    }
  }

  /* Consistent Mega Menu Styles */
  .mega-menu .dropdown-menu {
    border-radius: 0 0 0.5rem 0.5rem;
    overflow: hidden;
  }
  
  .mega-menu-category {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .mega-menu-category:hover {
    background-color: rgba(13, 110, 253, 0.05);
  }
  
  .mega-menu .dropdown-item {
    transition: all 0.2s ease;
    border-radius: 0.25rem;
  }
  
  .mega-menu .dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
    padding-left: 1.5rem !important;
  }
  
  .nav-link {
    font-weight: 500;
    position: relative;
  }
  
  .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0d6efd;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover:after {
    width: 70%;
    left: 15%;
  }
/* Footer Styles */
.footer {
  background-color: #1c1c1c;
  color: #fff;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #aaa;
}