﻿/* ============================================
   CUSTOM PROPERTIES & VARIABLES
   ============================================ */
:root {
    /* Color Palette */
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #6c8ef5;
    --secondary-color: #7209b7;
    --accent-color: #f72585;
    --success-color: #4cc9f0;
    --warning-color: #ff9e00;
    --danger-color: #f72585;
    /* Neutral Colors */
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4361ee, #3a0ca3);
    --gradient-secondary: linear-gradient(135deg, #7209b7, #560bad);
    --gradient-accent: linear-gradient(135deg, #f72585, #b5179e);
    --gradient-footer: linear-gradient(135deg, #1a1a2e, #16213e);
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
}

/* ============================================
   BASE STYLES & RESETS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--light-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   TYPOGRAPHY ENHANCEMENTS
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* ============================================
   LOGO & BRAND STYLING
   ============================================ */

/* Logo Container */
.logo-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

/* Logo Image */
.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition-normal);
}

    .logo-img:hover {
        transform: scale(1.05) rotate(5deg);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }

/* Brand Text Container */
.brand-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-slogan {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Footer Logo */
.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
    transition: var(--transition-normal);
}

    .footer-logo:hover {
        opacity: 1;
        transform: scale(1.05);
    }

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ============================================
   HEADER & NAVIGATION ENHANCEMENTS
   ============================================ */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    position: relative;
    color: var(--gray-700);
    transition: var(--transition-normal);
}

    .nav-link:hover {
        color: var(--primary-color);
        background-color: rgba(67, 97, 238, 0.05);
    }

    .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
    }

.nav-indicator {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* Logo Icon Animation */
.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* User Dropdown */
.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.user-info {
    line-height: 1.2;
}

.user-name {
    font-size: 0.95rem;
}

.user-role {
    font-size: 0.8rem;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    margin-top: 10px !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    margin: 0.25rem 0.75rem;
    width: auto;
    transition: var(--transition-fast);
}

    .dropdown-item:hover {
        background-color: rgba(67, 97, 238, 0.08);
        transform: translateX(5px);
    }

/* ============================================
   BUTTON ENHANCEMENTS
   ============================================ */
.btn {
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

    .btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::after {
        width: 300px;
        height: 300px;
    }

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

    .btn-primary:hover {
        background: var(--gradient-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

    .btn-gradient:hover {
        background: linear-gradient(135deg, var(--primary-dark), #2a0c8a);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    }

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

    .btn-back-to-top.show {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
main {
    flex: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer {
    background: var(--gradient-footer);
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .social-icon:hover {
        transform: translateY(-3px) scale(1.1);
        color: white;
        text-decoration: none;
    }

    .social-icon.facebook:hover {
        background: #1877f2;
    }

    .social-icon.twitter:hover {
        background: #1da1f2;
    }

    .social-icon.instagram:hover {
        background: #e4405f;
    }

    .social-icon.linkedin:hover {
        background: #0a66c2;
    }

    .social-icon.youtube:hover {
        background: #ff0000;
    }

/* Newsletter Form */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-right: none;
}

    .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.newsletter-form .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--gradient-accent);
    border: none;
}

/* Footer Links */
.footer a {
    opacity: 0.75;
    transition: var(--transition-fast);
}

    .footer a:hover {
        opacity: 1;
        color: white;
        transform: translateX(5px);
    }

/* ============================================
   CARD ENHANCEMENTS
   ============================================ */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
    background: white;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

.card-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* Job Cards */
.job-card {
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    background: white;
}

    .job-card:hover {
        border-left-color: var(--accent-color);
        transform: translateX(5px);
        box-shadow: var(--shadow-lg);
    }

/* ============================================
   SPECIAL SECTIONS
   ============================================ */
/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

.hero-img {
    border-radius: var(--radius-xl);
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

    .hero-img:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

/* Hero Slogan */
.hero-slogan {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Call to Action Section */
.cta-section {
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   FEATURE HIGHLIGHTS
   ============================================ */
.feature-highlight {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

    .feature-highlight:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-counter {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CALL TO ACTION ENHANCEMENT
   ============================================ */
.cta-enhanced {
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

    .cta-enhanced::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FORM ENHANCEMENTS
   ============================================ */
.form-control, .form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: var(--transition-normal);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        transform: translateY(-2px);
    }

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* ============================================
   ALERT ENHANCEMENTS
   ============================================ */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.premium-badge {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

    .premium-badge::before {
        content: '👑';
    }

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ADDITIONAL UTILITY CLASSES
   ============================================ */
.mt-6 {
    margin-top: 4rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-50 {
    opacity: 0.5;
}

.hover-lift:hover {
    transform: translateY(-3px);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth section transitions */
.section {
    position: relative;
    padding: 5rem 0;
}

.section-light {
    background-color: var(--light-color);
}

.section-dark {
    background-color: var(--dark-color);
    color: white;
}

/* Image hover effects */
.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

    .img-hover-zoom img {
        transition: transform 0.5s ease;
    }

    .img-hover-zoom:hover img {
        transform: scale(1.05);
    }

/* Form focus enhancements */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    font-weight: 500;
}

/* Card overlay effect */
.card-overlay {
    position: relative;
    overflow: hidden;
}

    .card-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
        opacity: 0;
        transition: var(--transition-normal);
        z-index: 1;
    }

    .card-overlay:hover::before {
        opacity: 1;
    }

    .card-overlay .card-body {
        position: relative;
        z-index: 2;
    }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    /* Logo adjustments */
    .logo-container {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-slogan {
        font-size: 0.7rem;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-brand h4 {
        font-size: 1.25rem;
    }

    /* Hero section */
    .hero-section {
        padding: 3rem 0;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .hero-slogan {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Call to action */
    .cta-section {
        padding: 2.5rem 1rem;
        border-radius: var(--radius-lg);
    }

    .cta-enhanced {
        padding: 2.5rem 1rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* User info */
    .user-info {
        display: none;
    }
}

@media (max-width: 576px) {
    /* Buttons */
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Feature cards */
    .feature-card {
        padding: 1.5rem;
    }

    /* Job cards */
    .job-card {
        margin-bottom: 1rem;
    }

    /* Logo adjustments for small screens */
    .navbar-brand {
        margin-right: 0;
    }

    .logo-container {
        width: 35px;
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-slogan {
        display: none; /* Hide slogan on very small screens */
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
