


#choose1 {
    background-image: url("~/assets/img/choose1.jpg") !important;
}
.d-flex {
    display: flex;
    gap: 10px; /* Adds space between buttons */
    flex-wrap: wrap; /* Ensures responsiveness */
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column; /* Stacks buttons vertically on small screens */
        gap: 5px;
    }
}

/* ============================================
   Global Utility Styles
   ============================================ */

/* Hide the ::after pseudo-element that's causing the red mark */
.dropdown-toggle::after {
    display: none !important;
    content: none !important;
}

/* Hide the red chevron icons on mobile (keep dropdowns functional) */
@media (max-width: 768px) {
    .main-menu__list .dropdown .fa-chevron-down,
    .main-menu__list .dropdown i {
        display: none !important;
    }
}

/* ============================================
   Dashboard Header Styles (Shared)
   ============================================ */

.dashboard-header,
.admin-dashboard-header {
    background: linear-gradient(135deg, #0d6efd 0%, #003b4f 100%);
    position: relative;
    padding: 3rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-header__bg,
.admin-dashboard-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.dashboard-header__inner,
.admin-dashboard-header__inner {
    position: relative;
    z-index: 2;
}

.dashboard-welcome-title,
.admin-dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.dashboard-welcome-subtitle,
.admin-dashboard-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.dashboard-content,
.admin-dashboard-content {
    background: #f8f9fa;
    min-height: 60vh;
    padding: 0 1rem 2rem;
}

/* ============================================
   Card Styles (Shared)
   ============================================ */

.admin-content-card,
.personal-info-card,
.cv-display-card,
.cv-upload-card,
.training-courses-card,
.saved-jobs-card,
.applications-card,
.change-password-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003b4f;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.card-body-section {
    padding: 2rem;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1200px) {
    .dashboard-welcome-title,
    .admin-dashboard-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header,
    .admin-dashboard-header {
        padding: 2rem 0;
    }

    .dashboard-welcome-title,
    .admin-dashboard-title {
        font-size: 1.75rem;
    }

    .dashboard-welcome-subtitle,
    .admin-dashboard-subtitle {
        font-size: 1rem;
    }

    .card-body-section {
        padding: 1.5rem;
    }

    .card-header-section {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .dashboard-welcome-title,
    .admin-dashboard-title {
        font-size: 1.5rem;
    }

    .card-body-section {
        padding: 1.25rem;
    }
}

/* ============================================
   Enhanced Navigation Menu Styles
   ============================================ */

/* Improved Navigation Link Items */
.main-menu__list .nav-link-item {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
}

.main-menu__list .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd 0%, #28a745 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu__list li:hover .nav-link-item::after,
.main-menu__list li.current .nav-link-item::after {
    width: 100%;
}

.main-menu__list li:hover .nav-link-item {
    color: #0d6efd;
    transform: translateY(-2px);
}

/* Dropdown toggle chevron animation */
.main-menu__list .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.main-menu__list .dropdown:hover .dropdown-toggle .fa-chevron-down,
.main-menu__list .dropdown.show .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Enhanced Dropdown Menus */
.main-menu__list .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-menu__list .dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #495057;
}

.main-menu__list .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    color: #0d6efd;
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.main-menu__list .dropdown-item i {
    width: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.main-menu__list .dropdown-item:hover i {
    transform: scale(1.2);
}

/* ============================================
   Enhanced Login/Register Buttons
   ============================================ */

.main-menu__btn-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Login Button */
.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0d6efd;
    background: transparent;
    border: 2px solid #0d6efd;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #004085 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-login:hover {
    color: #ffffff;
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-login:hover::before {
    left: 0;
}

.btn-login i {
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(2px);
}

/* Register Button */
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0d6efd 0%, #28a745 100%);
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #28a745 0%, #0d6efd 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
    border-color: transparent;
}

.btn-register:hover::before {
    opacity: 1;
}

.btn-register i {
    transition: transform 0.3s ease;
}

.btn-register:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* User Menu Button (when logged in) */
.user-menu-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    border: 1px solid rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #003b4f !important;
    font-weight: 600;
}

.user-menu-btn:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, rgba(40, 167, 69, 0.15) 100%);
    border-color: rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    color: #0d6efd !important;
}

.user-dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.user-dropdown-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.user-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
    padding-left: 1.5rem;
}

.user-dropdown-menu .dropdown-item.text-danger:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.15) 100%);
    color: #dc3545 !important;
}

/* ============================================
   Responsive Styles for Navigation
   ============================================ */

@media (max-width: 991px) {
    .main-menu__btn-box {
        gap: 0.5rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .user-menu-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .main-menu__btn-box {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .btn-login,
    .btn-register {
        flex: 1;
        min-width: 120px;
        padding: 0.6rem 1rem;
    }

    .main-menu__list .nav-link-item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .main-menu__btn-box {
        flex-direction: column;
        width: 100%;
    }

    .btn-login,
    .btn-register {
        width: 100%;
        padding: 0.7rem 1rem;
    }
}

/* ============================================
   Enhanced Home Page Hero Section
   ============================================ */

.hero-search-modern {
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Hero Text Styling and Animations */
.hero-text-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: heroTitleSlideIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-30px);
}

.hero-title i {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-subtitle {
    color: #ffffff !important;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    opacity: 0;
    animation: heroSubtitleSlideIn 1s ease-out forwards;
    animation-delay: 0.3s;
    transform: translateY(20px);
}

@keyframes heroTitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    60% {
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroSubtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    60% {
        transform: translateY(-3px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Ensure all hero section text is white */
.hero-search-modern,
.hero-search-modern * {
    color: #ffffff;
}

.hero-search-modern .text-white {
    color: #ffffff !important;
}

/* Hero search box text should remain dark for contrast */
.hero-search-box,
.hero-search-box * {
    color: initial;
}

.hero-search-box input,
.hero-search-box select,
.hero-search-box button {
    color: #212529;
}

.hero-background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none; /* Allow clicks to pass through */
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
    pointer-events: none; /* Allow clicks to pass through */
}

.hero-background-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-background-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.hero-background-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-search-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10; /* Ensure search box is above background shapes */
    animation: heroSearchBoxSlideIn 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroSearchBoxSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-input-wrapper {
    position: relative;
    z-index: 11;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.search-dropdown-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
    pointer-events: none; /* Allow clicks to pass through to select */
}

.search-input-modern {
    padding-left: 50px !important;
    padding-right: 50px !important; /* Add padding for dropdown icon */
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 11; /* Ensure inputs are clickable */
    pointer-events: auto; /* Explicitly allow interactions */
    appearance: none; /* Remove default browser dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none; /* Remove default dropdown arrow */
}

.search-input-modern:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.search-btn-modern {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 11; /* Ensure button is clickable */
    pointer-events: auto; /* Explicitly allow interactions */
}

.search-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}

.hero-quick-links {
    margin-top: 1.5rem;
    position: relative;
    z-index: 11;
}

.hero-cta-buttons {
    position: relative;
    z-index: 11;
    animation: heroCtaSlideIn 1s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroCtaSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-buttons .btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 12;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.quick-link-item {
    color: #003b4f;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
}

.quick-link-item:hover {
    background: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    transform: translateY(-2px);
}

/* ============================================
   Enhanced Job Cards
   ============================================ */

.job-card-enhanced {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.job-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.job-card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.job-type-badge {
    margin-bottom: 1rem;
}

.job-type-badge .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.company-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6efd 0%, #003b4f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.job-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003b4f;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.job-title-link {
    color: #003b4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-title-link:hover {
    color: #0d6efd;
    text-decoration: none;
}

.job-company-name {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.save-btn-enhanced {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.save-btn-enhanced:hover {
    transform: scale(1.1);
    background: #fff !important;
}

.job-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-wrapper.location {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0d6efd;
}

.info-icon-wrapper.schedule {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ff9800;
}

.info-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.info-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 0.9rem;
    color: #003b4f;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.salary-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #28a745;
}

.salary-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.salary-content {
    flex: 1;
}

.salary-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.salary-amount {
    display: block;
    font-size: 1.1rem;
    color: #28a745;
    font-weight: 700;
}

.job-card-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.job-card-footer .btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-card-footer .btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   Breadcrumbs Navigation
   ============================================ */

.breadcrumb-modern {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-modern .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-modern .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-modern .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern .breadcrumb-item a:hover {
    color: #0d6efd;
}

.breadcrumb-modern .breadcrumb-item.active {
    color: #003b4f;
    font-weight: 600;
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #6c757d;
    padding: 0 0.75rem;
}

/* ============================================
   Enhanced Empty States
   ============================================ */

.empty-state-modern {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.empty-state-icon-modern {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
}

/* ============================================
   No Jobs Available State
   ============================================ */

.no-jobs-available-state {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.no-jobs-available-state::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.no-jobs-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-jobs-icon-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0d6efd 0%, #28a745 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.3);
    position: relative;
    z-index: 2;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.no-jobs-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 3px solid #0d6efd;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.no-jobs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003b4f;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.no-jobs-message {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.no-jobs-submessage {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.no-jobs-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.no-jobs-cta-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #28a745 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.no-jobs-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
    color: white;
}

.no-jobs-cta-btn i.fa-arrow-down {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.no-jobs-tips {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(13, 110, 253, 0.1);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.tips-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #003b4f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tips-title i {
    color: #ffc107;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tips-list li {
    padding: 0.75rem 0;
    color: #495057;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tips-list li:hover {
    color: #0d6efd;
    padding-left: 0.5rem;
}

.tips-list li i {
    color: #28a745;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .no-jobs-available-state {
        padding: 3rem 1.5rem;
    }

    .no-jobs-title {
        font-size: 2rem;
    }

    .no-jobs-message {
        font-size: 1.1rem;
    }

    .no-jobs-submessage {
        font-size: 1rem;
    }

    .no-jobs-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .no-jobs-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .no-jobs-icon-circle {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .no-jobs-icon-wrapper {
        width: 120px;
        height: 120px;
    }
}

.empty-state-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003b4f;
    margin-bottom: 1rem;
}

.empty-state-text-modern {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Loading States
   ============================================ */

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   Responsive Improvements
   ============================================ */

@media (max-width: 991px) {
    .hero-search-box {
        padding: 2rem 1.5rem;
    }

    .job-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-search-modern {
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero-search-box {
        padding: 1.5rem;
    }

    .search-input-modern,
    .search-btn-modern {
        font-size: 0.9rem;
    }

    .job-card-header {
        padding: 1.25rem;
    }

    .job-card-body {
        padding: 1.25rem;
    }

    .job-card-footer {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-search-modern h1,
    .hero-title {
        font-size: 2rem !important;
        color: #ffffff !important;
    }

    .hero-search-modern .lead,
    .hero-subtitle {
        font-size: 1rem !important;
        color: #ffffff !important;
    }

    .quick-link-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ============================================
   Enhanced Section Titles
   ============================================ */

.section-title-enhanced {
    margin-bottom: 3rem;
}

.section-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003b4f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Page Header Improvements
   ============================================ */

.page-header-modern {
    background: linear-gradient(135deg, #0d6efd 0%, #003b4f 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.page-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Enhanced Buttons
   ============================================ */

.btn-enhanced {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Improved Spacing and Typography
   ============================================ */

.section-spacing {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .page-header-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   Sticky Navigation Menu
   ============================================ */

/* Make main navigation sticky */
.main-menu {
    position: relative;
    z-index: 990;
    transition: all 0.3s ease;
}

.main-menu__wrapper {
    position: relative;
    background: #fff;
    transition: all 0.3s ease;
}

/* When sticky, add shadow and ensure it stays on top */
.main-menu.sticky,
.main-menu.stricky-fixed,
.stricked-menu.stricky-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 991 !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure sticky header works on all screen sizes */
.stricky-header.stricky-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 991 !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Make sure the main menu wrapper stays visible when sticky */
.stricked-menu.stricky-fixed .main-menu__wrapper {
    background: #fff;
}

/* ============================================
   Mobile Navigation Background Update
   ============================================ */

/* Change mobile nav background to match register button gradient */
.mobile-nav__content {
    background: linear-gradient(135deg, #0d6efd 0%, #28a745 100%) !important;
    color: #fff;
}

/* Update mobile nav text colors for visibility */
.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a {
    color: #fff !important;
}

.mobile-nav__content .main-menu__list > li:hover > a,
.mobile-nav__content .main-menu__list > li.current > a {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Update mobile nav close button for better visibility */
.mobile-nav__close {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Update mobile nav contact info */
.mobile-nav__contact {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-nav__contact a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.mobile-nav__contact a:hover {
    color: #fff !important;
}

/* Update mobile nav buttons to match theme */
.mobile-nav__buttons .mobile-nav__btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.mobile-nav__buttons .mobile-nav__btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Update dropdown items in mobile nav */
.mobile-nav__content .dropdown-menu {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: 0.5rem !important;
    z-index: 1000 !important;
    position: absolute !important;
    min-width: 200px !important;
}

.mobile-nav__content .dropdown-item {
    color: #fff !important;
    padding: 0.75rem 1rem !important;
}

.mobile-nav__content .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

/* ============================================
   Mobile Navigation Improvements - Fix Overlapping
   ============================================ */

.mobile-nav__wrapper {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: translateX(-100%) !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mobile-nav__wrapper.expanded {
    transform: translateX(0%) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mobile-nav__content {
    width: 320px !important;
    max-width: 90vw !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 2rem 1.5rem !important;
    box-sizing: border-box;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-100%) !important;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Ensure buttons container respects parent padding but buttons extend full width */
.mobile-nav__buttons {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.mobile-nav__container {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-nav__container .main-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav__container .main-menu__list > li {
    margin-bottom: 0.5rem;
    position: relative;
}

.mobile-nav__container .main-menu__list > li > a {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav__container .main-menu__list > li > a:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 1.25rem;
}

/* Fix dropdown positioning in mobile nav */
.mobile-nav__content .dropdown {
    position: relative;
}

.mobile-nav__content .dropdown-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav__content .dropdown-toggle::after {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-nav__content .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-nav__content .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 0.5rem 0 0 0 !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0 !important;
    box-shadow: none !important;
}

.mobile-nav__content .dropdown-item {
    padding: 0.6rem 1.5rem !important;
    color: #fff !important;
    font-size: 0.9rem;
}

.mobile-nav__content .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    padding-left: 2rem !important;
}

/* Mobile nav buttons spacing */
.mobile-nav__buttons {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(100% + 3rem) !important;
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box;
}

/* Mobile Auth Buttons Container */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile Login/Register Buttons */
.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mobile-login-btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.mobile-login-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mobile-register-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 700;
}

.mobile-register-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Mobile User Menu */
.mobile-user-menu {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-user-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mobile-user-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.mobile-user-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mobile-user-info {
    flex: 1;
    text-align: left;
}

.mobile-user-greeting {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.mobile-user-arrow {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.mobile-user-btn[aria-expanded="true"] .mobile-user-arrow {
    transform: rotate(180deg);
}

.mobile-user-dropdown {
    width: 100% !important;
    margin-top: 0.5rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    padding: 0.5rem 0 !important;
    backdrop-filter: blur(10px);
}

.mobile-user-dropdown .dropdown-item {
    color: #fff !important;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
}

.mobile-user-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    padding-left: 1.5rem !important;
}

.mobile-user-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Mobile nav contact info */
.mobile-nav__contact {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.mobile-nav__contact li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.mobile-nav__contact li:last-child {
    margin-bottom: 0;
}

.mobile-nav__contact i {
    width: 20px;
    text-align: center;
}

/* Logo box in mobile nav */
.mobile-nav__content .logo-box {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav__content .logo-box img {
    max-width: 150px;
    height: auto;
}

/* Mobile Navigation Menu Items */
.mobile-nav__menu {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.mobile-nav__menu > li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    padding-left: 1.25rem;
}

.mobile-nav-link i:first-child {
    width: 20px;
    text-align: center;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    cursor: pointer;
}

.mobile-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-dropdown.active .mobile-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu > li {
    margin-bottom: 0.25rem;
}

.mobile-dropdown-menu .mobile-nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-menu .mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive improvements for mobile nav */
@media (max-width: 480px) {
    .mobile-nav__content {
        width: 100% !important;
        padding: 1.5rem 1rem !important;
    }

    .mobile-nav__buttons {
        width: calc(100% + 2rem) !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .mobile-nav__close {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }

    .mobile-nav__content .logo-box img {
        max-width: 120px;
    }

    .mobile-nav-link {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }

    .mobile-dropdown-menu {
        margin-left: 1rem;
    }

    .mobile-nav-btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .mobile-user-btn {
        padding: 0.875rem;
    }

    .mobile-user-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .mobile-user-greeting {
        font-size: 0.9rem;
    }
}

