/* Custom Styles */
.logo-wrapper {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.logo-img {
  height: 55px !important; /* or more, like 80px */
  width: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}


.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neumorphic-btn {
    background: #111827;
    box-shadow: 5px 5px 10px #0a0e15, -5px -5px 10px #1c2239;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.neumorphic-btn:hover {
    box-shadow: 3px 3px 6px #0a0e15, -3px -3px 6px #1c2239;
}

.nav-btn {
    color: #F3F4F6;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #9333EA;
}

.tab-btn {
    background: #510698;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.tab-btn:hover {
    background: #bea561;
}

/* Logo Styling */
nav img {
    max-height: 40px; /* Default size for nav bar */
    object-fit: contain;
}

@media (max-width: 768px) {
    nav img {
        max-height: 32px; /* Smaller for mobile */
    }
}

.landing-logo {
    max-height: 80px; /* Larger for landing page hero */
    object-fit: contain;
}

