@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;600;800&display=swap');

:root {
    --bg-color: #F8F0FF;
    --primary-glow: #8D6EBF;
    --secondary-glow: #D0B3FF;
    --text-main: #2D1A47;
    --text-muted: #6B5B95;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(141, 110, 191, 0.2);
    --card-shadow: 0 8px 32px 0 rgba(141, 110, 191, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

/* --- Layout --- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 5%; /* Tight header for desktop */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    border-bottom: 1px solid var(--glass-border);
}

.menu-toggle {
    display: none; /* Hidden on desktop */
}

.logo {
    order: 1; /* Left on desktop */
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #2D1A47 0%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1100;
}

.logo span {
    color: var(--primary-glow);
    font-weight: 300;
    -webkit-text-fill-color: var(--primary-glow); /* Reset for gradient */
    margin-left: 1px;
    letter-spacing: 0px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-glow);
    transition: width 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
}

.logo:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-btn-link {
    order: 3; /* Right on desktop */
    text-decoration: none;
    z-index: 1300;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--primary-glow);
    border-radius: 50px;
    color: #2D1A47;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    white-space: nowrap;
}

.login-btn i {
    width: 16px;
    height: 16px;
    color: var(--primary-glow);
}

.login-btn:hover {
    background: var(--primary-glow);
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(141, 110, 191, 0.3);
}

.login-btn:hover i {
    color: #FFFFFF;
}

/* Tooltip design */
.login-btn::after {
    content: 'Login to see our AI tool';
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 180px;
    padding: 10px;
    background: #2D1A47;
    color: #FFFFFF;
    font-size: 0.75rem;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1200;
}

.login-btn:hover::after {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.logo:hover .brand-logo {
    transform: scale(1.05);
}

.nav-links {
    order: 2; /* Center on desktop */
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-glow);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-main);
    z-index: 1100;
}

/* --- Hero Section --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/upkar_hero_premium.png') center/cover no-repeat;
    opacity: 0.9;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-content {
    text-align: left;
    max-width: 900px;
    margin-right: auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    line-height: 1;
    color: #2D1A47;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards 0.2s;
    opacity: 0;
}

.cta-button {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary-glow), #4A306D);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(141, 110, 191, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(141, 110, 191, 0.5);
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.hero-content .cta-button {
    animation: fadeInUp 1s ease forwards 0.4s;
    opacity: 0;
}

/* --- Showreel Section --- */

.showreel {
    background: #050816; /* Dark background to make the GIF pop */
    padding: 100px 5%;
}

.showreel h2 {
    color: #FFFFFF !important;
}

.showreel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    border: 3px solid var(--primary-glow);
    box-shadow: 0 0 50px rgba(141, 110, 191, 0.4);
    aspect-ratio: 16/9;
}

.noticeable-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.2);
}

.showreel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(5, 8, 22, 0.9) 100%);
    z-index: 2;
}

.showreel-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 15px 35px;
    background: var(--primary-glow);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 30px var(--primary-glow);
    backdrop-filter: blur(5px);
}

.innovation-banner {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.innovation-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.9) contrast(1.1);
    transform: translateY(-10%);
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-color), transparent 15%, transparent 85%, var(--bg-color));
    z-index: 2;
}

.innovation-text {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.innovation-text h2 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #2D1A47;
}

.innovation-text p {
    font-size: 1.4rem;
    color: #4A306D;
    font-weight: 500;
}

.side-by-side {
    display: flex;
    align-items: center;
    gap: 80px;
}

.side-by-side.reverse {
    flex-direction: row-reverse;
}

.side-by-side .content {
    flex: 1;
}

.side-by-side .visual-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-image {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(141, 110, 191, 0.2);
    animation: floating 6s infinite ease-in-out;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.feature-list i {
    color: var(--primary-glow);
    font-size: 1.5rem;
}

.service-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.bubble {
    padding: 10px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-glow);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--card-shadow);
}

.stat-card {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(141, 110, 191, 0.2);
    border: 1px solid var(--primary-glow);
    animation: floating 5s infinite linear alternate-reverse;
}

.stat-card h4 {
    font-size: 2.2rem;
    color: var(--primary-glow);
    margin-bottom: 5px;
}

.stat-card:nth-child(1) { top: -20px; left: 0; }
.stat-card:nth-child(2) { bottom: -20px; right: 0; animation-delay: 2s; }

.canvas-wrapper {
    width: 100%;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

#visual-canvas {
    width: 100% !important;
    height: 100% !important;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@media (max-width: 968px) {
    .side-by-side, .side-by-side.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .side-by-side .feature-list li {
        justify-content: center;
    }
    .side-by-side .service-bubbles {
        justify-content: center;
    }
}

/* --- Showreel Light Theme --- */

.showreel.light-theme {
    background: var(--bg-color);
}

.showreel-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 968px) {
    .showreel-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.showreel-text {
    flex: 1;
}

.showreel-text h3 {
    font-size: 2.2rem;
    color: #2D1A47;
    margin-bottom: 20px;
}

.showreel-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.showreel-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-glow);
}

.feature-item i {
    color: var(--primary-glow);
}

.showreel.light-theme .glitch-wrapper {
    flex: 1.5;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(141, 110, 191, 0.1);
}

.showreel-overlay.light {
    background: radial-gradient(circle, transparent 30%, rgba(248, 240, 255, 0.6) 100%);
}

.showreel-label.light {
    background: var(--primary-glow) !important;
    color: #FFFFFF !important;
    box-shadow: 0 10px 20px rgba(141, 110, 191, 0.3) !important;
}

.zoom-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    animation: fastPulseZoom 2.5s infinite ease-in-out !important;
    filter: brightness(1.1) contrast(1.1); /* Removed grayscale to let the better GIF colors through */
    transition: filter 0.3s ease;
}

.glitch-wrapper:hover .zoom-image {
    animation: glitch-vhs 0.2s infinite, hypnoticZoom 40s infinite linear alternate !important;
    filter: brightness(1.2) contrast(1.2);
}

/* --- Keyframes --- */
@keyframes fastPulseZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes hypnoticZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

@keyframes grainFlicker {
    0% { transform: translate(0,0); }
    10% { transform: translate(-1%, -0.5%); }
    20% { transform: translate(0.5%, 1%); }
    30% { transform: translate(-0.5%, 0.5%); }
    40% { transform: translate(1%, -0.5%); }
    100% { transform: translate(0,0); }
}

@keyframes glitch-vhs {
    0% { transform: translate(0); }
    1% { transform: translate(-8px, 3px); }
    2% { transform: translate(8px, -3px); }
    3% { transform: translate(0); }
    100% { transform: translate(0); }
}

/* --- Features Section --- */

.section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    transition: color 0.4s ease;
}

/* Enhancing h2 visibility specifically in reveal sections */
.reveal h2 {
    color: #FFFFFF !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.light-theme.reveal h2 {
    color: #2D1A47 !important;
    text-shadow: none;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary-glow);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-glow);
    box-shadow: 0 20px 40px rgba(141, 110, 191, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-glow);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2D1A47;
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Visual Section --- */

.visual-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F0FF 0%, #E6D9FF 100%);
    overflow: hidden;
    margin: 50px 0;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 80%);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
.feature-card.reveal-active:nth-child(2) { transition-delay: 0.1s; }
.feature-card.reveal-active:nth-child(3) { transition-delay: 0.2s; }

/* --- Animations --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Footer --- */

footer {
    padding: 80px 5% 50px 5%;
    background: #FFFFFF;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-glow), #4A306D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-contact h4, .footer-network h4 {
    color: #2D1A47;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-glow) !important;
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.network-links a:hover {
    transform: translateX(10px);
    color: #4A306D !important;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    text-align: center;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #2D1A47 0%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--primary-glow);
    font-weight: 300;
    -webkit-text-fill-color: var(--primary-glow);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-glow);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- Global Responsive Adjustments --- */

@media (max-width: 968px) {
    .side-by-side {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .side-by-side.reverse {
        flex-direction: column !important;
    }

    .hero-content h1 {
        font-size: 3.5rem; /* Better scaling for mobile */
    }

    .innovation-text h2 {
        font-size: 2.2rem;
    }

    .showreel-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 4%;
        height: 60px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        width: 35px; 
        order: 1; 
        justify-content: flex-start;
        font-size: 1.1rem;
        padding: 0;
        z-index: 1300;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2; 
        font-size: 1.15rem; 
        letter-spacing: -0.8px;
        white-space: nowrap;
        z-index: 1200;
    }

    .login-btn-link {
        order: 3; 
        width: 65px;
        display: flex;
        justify-content: flex-end;
        z-index: 1300;
    }

    .login-btn {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--primary-glow);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .login-btn i {
        display: none; 
    }

    .nav-links {
        order: 4; 
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 60vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: top 0.5s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        top: 60px; 
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .section {
        padding: 40px 5%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .innovation-banner {
        height: 300px;
    }

    .mobile-hide {
        display: none !important;
    }

    .showreel-content-wrapper {
        gap: 20px;
    }
}

/* Dashboard Nav Specifics */
.nav-left-dashboard {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right-dashboard {
    display: flex;
    align-items: center;
}

.logout-link-dash {
    color: #4A306D;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logout-link-dash:hover {
    opacity: 1;
    color: #FF4136;
}

.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(141, 110, 191, 0.05);
    border: 1px solid rgba(141, 110, 191, 0.1);
    border-radius: 50px;
    color: #2D1A47;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-btn:hover {
    background: rgba(141, 110, 191, 0.1);
    border-color: var(--primary-glow);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2500;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: #4A306D;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #2D1A47;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(141, 110, 191, 0.05);
    color: var(--primary-glow);
}

.dropdown-item.logout-item:hover {
    background: rgba(255, 65, 54, 0.05);
    color: #FF4136;
}
/* Dashboard Layout Overrides */
.dashboard-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 768px) {
    .dashboard-nav {
        padding: 0 5%;
        height: 65px;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .dashboard-nav .logo {
        position: static !important; /* Force override centering */
        transform: none !important;
        font-size: 1.3rem !important;
    }

    .dashboard-nav .nav-right-dashboard {
        display: flex !important;
    }
    
    .dashboard-nav .menu-toggle {
        display: none !important; /* No menu on dashboard */
    }
}
