
.floating-hamburger {
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 2000;
    width: 64px;
    height: 64px;
    background: rgba(26, 18, 64, 0.85);
    border-radius: 50%;
    box-shadow: 0 4px 32px rgba(26, 18, 64, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    border: 2px solid #5f78fc;
}

.floating-hamburger:hover {
    background: #5f78fc;
    box-shadow: 0 8px 48px #5f78fcaa;
}

.hamburger-icon {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.hamburger-icon span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
}

.floating-hamburger.open .hamburger-icon span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.floating-hamburger.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.floating-hamburger.open .hamburger-icon span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.floating-menu {
    position: fixed;
    top: 6.5rem;
    right: 2.5rem;
    z-index: 1999;
    background: rgba(26, 18, 64, 0.97);
    border-radius: 1.5rem;
    box-shadow: none !important;
    padding: 2.5rem 2rem 2rem 2rem;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px) scale(0.95);
    transition: all 0.35s cubic-bezier(.4, 2, .6, 1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.floating-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.floating-menu a {
    color: #fff;
    font-family: 'Outfit', 'Tondu', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 1rem;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.floating-menu a:hover {
    background: #5f78fc;
    color: #1a1240;
    box-shadow: 0 2px 12px #5f78fcaa;
}

.mobile-x-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-x-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/***** Desktop Navbar Styles *****/
.desktop-navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    width: 1400px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 5000;
    background: rgba(42, 79, 217, 0.92);
    box-shadow: 0 8px 32px rgba(54, 94, 255, 0.25), 0 2px 8px rgba(255, 255, 255, 0.1) inset;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.5rem 0;
    transition: background 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 0.8s;
}

.navbar-container {
    width: 95%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.navbar-logo {
    font-family: 'Outfit', 'Tondu', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.08em;
    text-shadow: none;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}

.navbar-logo:hover {
    color: #fff !important;
    text-shadow: 0 2px 12px #ffffffaa;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-action-btn {
    font-family: 'Outfit', 'Tondu', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.5rem 1.5rem;
    margin: 0;
    box-shadow: 0 4px 16px rgba(161, 211, 255, 0.06), 0 1px 4px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    width: 200px;
    text-align: center;
    display: inline-block;
}

.navbar-action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(161, 211, 255, 0.15), 0 2px 8px rgba(255, 255, 255, 0.15) inset;
    transform: translateY(-1px) scale(1.02);
}

/***** Responsive: Hide desktop navbar on mobile, show on desktop *****/
@media (max-width: 991px) {
    .desktop-navbar {
        display: none !important;
    }

    .floating-hamburger {
        display: flex !important;
    }

}

@media (min-width: 992px) {
    .desktop-navbar {
        display: flex !important;
    }

    .floating-hamburger {
        display: none !important;
    }
}

.navbar-links a {
    font-family: 'Outfit', 'Tondu', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 1.2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.navbar-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08), 0 1px 4px rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-1px);
}

/* Remove underline animation */
.navbar-links a::after {
    display: none !important;
}

.navbar-logo,
.navbar-logo:hover,
.navbar-action-btn,
.navbar-action-btn:hover {
    text-decoration: none !important;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    text-shadow: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
