      /* Custom styles for navbar and animations */
      .navbar {
        background: linear-gradient(135deg, #1e5799, #207cca) !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }
      
      .nav-item {
        margin: 0 8px;
      }
      
      .nav-link {
        font-weight: 600;
        transition: all 0.3s ease;
        color: white !important;
      }
      
      .nav-link:hover {
        transform: translateY(-2px);
      }
      
      .login-btn {
        border: 2px solid white;
        border-radius: 30px;
        padding: 5px 20px;
        transition: all 0.3s ease;
      }
      
      .login-btn:hover {
        background: white;
        color: #1e5799 !important;
        transform: translateY(-3px);
      }
