:root {
    --primary: #007BFF;
    --secondary: #FF9800;
    --accent: #2ECC71;
    --danger: #ef4444;
    --success: #10b981;
    --dark: #333;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --background: #F9FAFB;
    --card-bg: #FFFFFF;
    --neutral-bg: #F5F5F5;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F9FAFB;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header & Navigation */

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}


/* Header hiding functionality removed - header now stays always visible */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

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

.auth-buttons {
    display: flex;
    gap: 15px;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 255, 0.2);
}

.nav-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0056b3);
    color: white;
    border: none;
}

.nav-btn.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0056b3);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, var(--primary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 255, 0.2);
}

.btn-full {
    width: 100%;
}


/* Form Sections */

.form-section {
    margin-bottom: 20px;
}

.form-section h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}


/* Badge Styles */

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--primary);
    color: white;
}

.badge-warning {
    background: #FFA500;
}

.badge-success {
    background: #43e97b;
}

.badge-danger {
    background: #f5576c;
}

.profile-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}


/* Top Bar Sections */

.top-bar {
    padding: 30px 0;
    margin-bottom: 30px;
}

.public-top-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dashboard-top-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.job-seeker-top-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.employer-top-bar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-bar-text h2 {
    margin: 0 0 8px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.top-bar-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.top-bar-actions {
    display: flex;
    gap: 15px;
}

.top-bar-stats {
    display: flex;
    gap: 30px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.mini-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.mini-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}


/* Wave Animation Container */

.waves-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.waves-animation canvas {
    display: block;
    width: 100%;
    height: 100%;
}


/* Hero Section - Enhanced */

.hero {
    background: linear-gradient(135deg, #007BFF 0%, #00C9FF 50%, #FF9800 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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


/* Interactive Animations */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFA000;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23F9FAFB"/></svg>');
    background-size: cover;
    z-index: 1;
}


/* Slide Up Animation */

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

.animate-slide-up {
    /* Animation removed - elements appear immediately */
    opacity: 1;
}


/* Hero Buttons */

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    padding: 12px 30px;
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* Section Styling */

.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}


/* Features Grid */

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

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}


/* Job Listings */

.job-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.job-card:hover::before {
    left: 100%;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 120, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    border-left-color: #FF9800;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.job-company {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.job-type {
    background: var(--gray-light);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.job-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: var(--gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.job-details i {
    margin-right: 5px;
}

.job-match {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.match-bar {
    flex-grow: 1;
    height: 8px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.match-progress {
    height: 100%;
    background: var(--success);
    border-radius: 4px;
    transition: width 0.3s;
}

.match-percent {
    font-weight: 600;
    color: var(--success);
}

.job-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.job-save {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.job-save:hover,
.job-save.saved {
    color: var(--danger);
}


/* Utility Classes */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}


/* Forms */

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}


/* Modals */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    border-radius: 10px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1001;
}

.modal-content.large {
    max-width: 700px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--gray-light);
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.modal-close:hover {
    color: var(--dark);
}

.modal form {
    padding: 30px;
}


/* Tabs */

.tabs {
    display: flex;
    gap: 0;
    background: #F9FAFB;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 30px;
}

.tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--gray);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
}

.tab:hover:not(.active) {
    background: white;
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* Dashboard */

.dashboard-view {
    display: none;
}

.dashboard-view.active {
    display: block;
}

.dashboard-top-bar {
    margin: 30px;
}

.main-content-full .dashboard-top-bar {
    margin: 30px;
}

.dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.sidebar {
    background: white;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid var(--gray-light);
    text-align: center;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.user-info h4 {
    margin: 0 0 5px 0;
    color: var(--dark);
}

.user-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--light);
    color: var(--primary);
    border-left-color: var(--primary);
}

.main-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-height: 600px;
}

.main-content-full {
    width: 100%;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content-full .content-view {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.content-header h2 {
    margin: 0;
}

.content-view {
    display: none;
}

.content-view.active {
    display: block;
}

.dashboard-section {
    margin-top: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    margin: 0;
    margin: 0;
}


/* Stats */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}


/* Subscription Plans */

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.plan-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    border-color: var(--primary);
}

.plan-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray);
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.plan-features li:last-child {
    border-bottom: none;
}


/* Skill Assessment */

.assessment-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.assessment-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.assessment-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--gray-light);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--success);
    border-radius: 5px;
    transition: width 0.3s;
}

.question-card {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.question-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.option:hover {
    background: var(--gray-light);
}

.option input[type="radio"] {
    margin: 0;
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge.earned {
    background: var(--success);
}

.badge.locked {
    background: var(--gray);
}


/* Career Roadmap */

.roadmap {
    position: relative;
    padding: 20px 0;
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.roadmap-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 30px;
    background: var(--gray-light);
}

.roadmap-item.completed::after {
    background: var(--success);
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.roadmap-item.completed .roadmap-icon {
    background: var(--success);
    color: white;
}

.roadmap-item.current .roadmap-icon {
    background: var(--primary);
    color: white;
}

.roadmap-content {
    flex-grow: 1;
}

.roadmap-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.roadmap-description {
    color: var(--gray);
    font-size: 0.9rem;
}


/* Footer */

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}


/* Company Logo Cards */

.company-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 120, 255, 0.15) !important;
}


/* Testimonial Cards */

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 120, 255, 0.15) !important;
}


/* Search Bar Animation */

.form-control:focus,
.form-select:focus {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 120, 255, 0.2);
}


/* Modal Enhancements */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.modal-content form {
    overflow-y: auto;
    max-height: calc(90vh - 100px);
    padding: 30px;
}

.modal-content form::-webkit-scrollbar {
    width: 8px;
}

.modal-content form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content form::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.modal-content form::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    color: white;
    font-size: 2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}


/* Tabs Enhancement */

.tabs {
    display: flex;
    gap: 0;
    background: #F9FAFB;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 30px;
}

.tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--gray);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
}

.tab:hover:not(.active) {
    background: white;
    color: var(--primary);
}


/* Form Enhancements */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* File Upload Styling */

.file-upload-wrapper {
    position: relative;
    margin-top: 10px;
}

.file-upload-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px dashed var(--primary);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F9FAFB;
    color: var(--primary);
    font-weight: 600;
}

.file-upload-label:hover {
    background: rgba(0, 120, 255, 0.05);
    border-color: var(--accent);
}

.file-upload-label i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.file-preview {
    margin-top: 15px;
    padding: 15px;
    background: #F9FAFB;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    display: none;
}

.file-preview.active {
    display: block;
}

.file-preview-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info i {
    font-size: 1.5rem;
    color: var(--accent);
}

.file-remove {
    color: var(--danger);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.file-remove:hover {
    background: rgba(239, 68, 68, 0.1);
}


/* Smooth Scrolling */

html {
    scroll-behavior: smooth;
}


/* Featured Jobs Section */

.featured-jobs-section {
    background: var(--background);
}

.job-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.category-title i {
    color: var(--primary);
    margin-right: 10px;
}

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

.featured-job-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease-out;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
}

.featured-job-card.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

.featured-job-card.scroll-animated:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.job-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), #FF6B35);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-job-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.company-name {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.company-name i {
    color: var(--primary);
    margin-right: 5px;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    color: var(--gray);
    font-size: 0.9rem;
}

.job-meta i {
    color: var(--primary);
    margin-right: 5px;
}


/* How It Works Section */

.how-it-works-section {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
}


/* About Section */

.about-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #E8F4F8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 120, 255, 0.3);
}

.about-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-image-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}


/* Scroll Animation */

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

.animate-on-scroll {
    /* Animation removed - elements appear immediately */
    opacity: 1;
}

.animate-on-scroll.visible {
    /* Animation removed */
    opacity: 1;
}


/* Button Sizes */

.btn-lg {
    padding: 14px 35px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.mt-50 {
    margin-top: 50px;
}


/* Loading Animation for Cards */

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

.job-card,
.feature-card,
.stat-card {
    animation: fadeInUp 0.5s ease;
}


/* Responsive Design */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.3rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        margin: 0;
    }
    .job-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .dashboard {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .job-filters {
        flex-direction: column;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .plans {
        grid-template-columns: 1fr;
    }
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .job-listings {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .main-content {
        padding: 20px;
    }
    .modal-content {
        margin: 10px;
    }
    .modal form {
        padding: 20px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .companies-grid {
        grid-template-columns: 1fr !important;
    }
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    .logo span {
        font-size: 1.2rem;
    }
}


/* Additional styles for new features */

.profile-section {
    margin-bottom: 30px;
}

.profile-info p {
    margin: 8px 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.profile-info p:last-child {
    border-bottom: none;
}

.candidate-card {
    transition: transform 0.2s;
}

.candidate-card:hover {
    transform: translateY(-2px);
}

.candidate-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.performance-item {
    transition: box-shadow 0.3s;
}

.performance-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.current-plan {
    border-left: 4px solid var(--primary);
}

.analytics-overview .stat-card {
    border-top-color: var(--secondary);
}


/* Enhanced responsive design */

@media (max-width: 640px) {
    .candidate-actions {
        justify-content: center;
    }
    .job-actions {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    .navbar {
        padding: 10px 0;
    }
    .sidebar-menu a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* Dashboard Hero Section */

.dashboard-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.dashboard-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.quick-actions .btn {
    white-space: nowrap;
}

.quick-actions .btn-outline {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.quick-actions .btn-outline:hover {
    background: white;
    color: var(--primary);
}


/* Dashboard Container */

.dashboard-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}


/* Enhanced Stats Grid */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}


/* Section Header */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 10px;
}


/* Dashboard Header with Horizontal Navigation */

.dashboard-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dashboard-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    flex-wrap: wrap;
}

.dashboard-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 30px;
    border-right: 2px solid #e2e8f0;
    min-width: 200px;
}

.user-avatar-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dashboard-horizontal-nav {
    display: flex;
    gap: 5px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.dashboard-horizontal-nav::-webkit-scrollbar {
    display: none;
}

.dash-nav-link {
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dash-nav-link:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateY(-2px);
}

.dash-nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.dash-nav-link i {
    font-size: 1rem;
}


/* Responsive Dashboard Navigation */

@media (max-width: 1200px) {
    .dashboard-nav-wrapper {
        gap: 15px;
    }
    .dash-nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .dashboard-user-info {
        border-right: none;
        padding-right: 0;
        width: 100%;
        justify-content: center;
    }
    .dashboard-horizontal-nav {
        width: 100%;
        justify-content: flex-start;
    }
}


/* Activity Feed */

.activity-feed {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.activity-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-content p {
    margin-bottom: 5px;
}

.activity-time {
    font-size: 0.85rem;
    color: var(--gray);
}


/* Quick Stats Grid */

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-stat {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-stat i {
    font-size: 2rem;
    color: var(--primary);
}

.quick-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.quick-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}


/* Dashboard Section */

.dashboard-section {
    margin-bottom: 30px;
}


/* Responsive Dashboard */

@media (max-width: 768px) {
    .dashboard-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .dashboard-hero h1 {
        font-size: 1.5rem;
    }
    .quick-actions {
        flex-direction: column;
        width: 100%;
    }
    .quick-actions .btn {
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        padding: 20px;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}