
.main-header {
    background: #f0f2f5;
    color: var(--white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
}

.nav-list a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #004085 100%);
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Footer Styling */
.main-footer {
    background: #1e40af;
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2663eb, #0081cc);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.footer-info h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.footer-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer Icons */
.footer-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.footer-icon-link {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon-link:hover {
    opacity: 1;
    color: #00d4ff;
    transform: translateY(-3px);
}

.footer-icon-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Help Desk Widget */
.help-desk-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}

.help-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.help-btn:hover {
    transform: scale(1.05);
}

.help-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: none;
    color: var(--text-dark);
}

.help-panel.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(to right, #28a745, #85e085);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Dashboard Specific Styles */
@media (max-width: 992px) {
    .dashboard-wrapper {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100% !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }

    .sidebar-nav ul {
        flex-direction: row !important;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .sidebar-nav li a {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {

    .nav-list,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.site-logo {
    max-height: 100px;
    width: auto;
    display: block;
}