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

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --dark-bg: #0f0f23;
    --dark-card: #1a1a2e;
    --dark-secondary: #16213e;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --bg-light: #1e293b;
    --white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-purple: 0 10px 40px rgba(139, 92, 246, 0.3);
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

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

/* Navbar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.5)) drop-shadow(0 2px 4px rgba(236, 72, 153, 0.3));
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo i::before {
    text-shadow:
        2px 2px 0px rgba(139, 92, 246, 0.3),
        4px 4px 0px rgba(124, 58, 237, 0.2),
        6px 6px 0px rgba(109, 40, 217, 0.1);
}

.logo span {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-2deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(2deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background: rgba(26, 26, 46, 0.4);
    padding: 0.4rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link.active::after {
    display: none;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#authButtons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(26, 26, 46, 0.4);
    padding: 0.4rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#authButtons .btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid transparent;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

#authButtons .btn-outline:hover {
    color: var(--white);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

#authButtons .btn-outline:active {
    color: var(--white);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

#authButtons .btn-primary {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    color: var(--white);
    border: 1px solid rgba(139, 92, 246, 0.5);
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

#authButtons .btn-primary:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.6);
}

#authButtons .btn-primary:active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.6);
}

/* User Menu Styles */
.user-dropdown {
    position: relative;
}

.btn-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid #8b5cf6;
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-user:hover {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: #8b5cf6;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-user i.fa-user-circle {
    font-size: 1.3rem;
}

.btn-user i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-user.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #242438;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    padding: 0.5rem;
    display: none;
    z-index: 1001;
    animation: fadeInDown 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.dropdown-item:hover i {
    color: #8b5cf6;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--text-dark);
}

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

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

.btn-search {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: var(--dark-bg);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated particles representing busy job seekers */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(236, 72, 153, 0.6), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(59, 130, 246, 0.6), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particleMove 10s ease-in-out infinite;
    pointer-events: none;
    will-change: background-position;
}

/* Fast moving digital lines representing connectivity */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: scanLine 4s linear infinite;
    pointer-events: none;
    will-change: background-position;
}

@keyframes particleMove {

    0%,
    100% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 50% 100%;
    }

    75% {
        background-position: 100% 50%;
    }
}

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

    100% {
        background-position: 200% 0;
    }
}

/* Floating job market icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: galaxyOrbit 20s infinite linear;
    filter: drop-shadow(0 0 20px currentColor);
    text-shadow:
        0 0 15px currentColor,
        0 0 25px currentColor;
    transform-style: preserve-3d;
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Orbit 1 - Inner ring */
.floating-icon:nth-child(1),
.floating-icon:nth-child(2),
.floating-icon:nth-child(3) {
    animation-name: galaxyOrbit1;
    animation-duration: 15s;
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
    color: rgba(139, 92, 246, 0.9);
    font-size: 3rem;
}

.floating-icon:nth-child(2) {
    animation-delay: -5s;
    color: rgba(59, 130, 246, 0.9);
    font-size: 2.8rem;
}

.floating-icon:nth-child(3) {
    animation-delay: -10s;
    color: rgba(16, 185, 129, 0.9);
    font-size: 2.6rem;
}

/* Orbit 2 - Middle ring */
.floating-icon:nth-child(4),
.floating-icon:nth-child(5),
.floating-icon:nth-child(6),
.floating-icon:nth-child(7) {
    animation-name: galaxyOrbit2;
    animation-duration: 20s;
}

.floating-icon:nth-child(4) {
    animation-delay: 0s;
    color: rgba(245, 158, 11, 0.9);
    font-size: 2.4rem;
}

.floating-icon:nth-child(5) {
    animation-delay: -5s;
    color: rgba(236, 72, 153, 0.9);
    font-size: 2.7rem;
}

.floating-icon:nth-child(6) {
    animation-delay: -10s;
    color: rgba(16, 185, 129, 0.8);
    font-size: 2.5rem;
}

.floating-icon:nth-child(7) {
    animation-delay: -15s;
    color: rgba(6, 182, 212, 0.9);
    font-size: 2.3rem;
}

/* Orbit 3 - Outer ring */
.floating-icon:nth-child(8),
.floating-icon:nth-child(9),
.floating-icon:nth-child(10),
.floating-icon:nth-child(11),
.floating-icon:nth-child(12) {
    animation-name: galaxyOrbit3;
    animation-duration: 25s;
}

.floating-icon:nth-child(8) {
    animation-delay: 0s;
    color: rgba(139, 92, 246, 0.8);
    font-size: 2.9rem;
}

.floating-icon:nth-child(9) {
    animation-delay: -5s;
    color: rgba(16, 185, 129, 0.9);
    font-size: 2.6rem;
}

.floating-icon:nth-child(10) {
    animation-delay: -10s;
    color: rgba(245, 158, 11, 0.8);
    font-size: 2.8rem;
}

.floating-icon:nth-child(11) {
    animation-delay: -15s;
    color: rgba(16, 185, 129, 1);
    font-size: 3.2rem;
}

.floating-icon:nth-child(12) {
    animation-delay: -20s;
    color: rgba(59, 130, 246, 0.8);
    font-size: 2.4rem;
}

/* Orbit 4 - Fastest orbit */
.floating-icon:nth-child(13),
.floating-icon:nth-child(14),
.floating-icon:nth-child(15),
.floating-icon:nth-child(16),
.floating-icon:nth-child(17),
.floating-icon:nth-child(18) {
    animation-name: galaxyOrbit4;
    animation-duration: 18s;
}

.floating-icon:nth-child(13) {
    animation-delay: 0s;
    color: rgba(236, 72, 153, 0.9);
    font-size: 2.9rem;
}

.floating-icon:nth-child(14) {
    animation-delay: -3s;
    color: rgba(139, 92, 246, 0.9);
    font-size: 2.7rem;
}

.floating-icon:nth-child(15) {
    animation-delay: -6s;
    color: rgba(6, 182, 212, 0.8);
    font-size: 2.5rem;
}

.floating-icon:nth-child(16) {
    animation-delay: -9s;
    color: rgba(245, 158, 11, 0.9);
    font-size: 2.6rem;
}

.floating-icon:nth-child(17) {
    animation-delay: -12s;
    color: rgba(59, 130, 246, 0.9);
    font-size: 2.8rem;
}

.floating-icon:nth-child(18) {
    animation-delay: -15s;
    color: rgba(236, 72, 153, 0.8);
    font-size: 2.4rem;
}

/* Orbit 5 - Additional tech professionals */
.floating-icon:nth-child(19),
.floating-icon:nth-child(20),
.floating-icon:nth-child(21) {
    animation-name: galaxyOrbit1;
    animation-duration: 16s;
}

.floating-icon:nth-child(19) {
    animation-delay: -3s;
    color: rgba(139, 92, 246, 0.95);
    font-size: 3.1rem;
}

.floating-icon:nth-child(20) {
    animation-delay: -8s;
    color: rgba(59, 130, 246, 0.9);
    font-size: 2.7rem;
}

.floating-icon:nth-child(21) {
    animation-delay: -13s;
    color: rgba(239, 68, 68, 0.9);
    font-size: 2.5rem;
}

/* Orbit 6 - Mobile & Database */
.floating-icon:nth-child(22),
.floating-icon:nth-child(23),
.floating-icon:nth-child(24) {
    animation-name: galaxyOrbit2;
    animation-duration: 22s;
}

.floating-icon:nth-child(22) {
    animation-delay: -2s;
    color: rgba(16, 185, 129, 0.9);
    font-size: 2.6rem;
}

.floating-icon:nth-child(23) {
    animation-delay: -9s;
    color: rgba(245, 158, 11, 0.9);
    font-size: 2.9rem;
}

.floating-icon:nth-child(24) {
    animation-delay: -16s;
    color: rgba(6, 182, 212, 0.9);
    font-size: 2.8rem;
}

/* Orbit 7 - Cloud & Security */
.floating-icon:nth-child(25),
.floating-icon:nth-child(26),
.floating-icon:nth-child(27) {
    animation-name: galaxyOrbit3;
    animation-duration: 24s;
}

.floating-icon:nth-child(25) {
    animation-delay: -4s;
    color: rgba(59, 130, 246, 0.85);
    font-size: 2.7rem;
}

.floating-icon:nth-child(26) {
    animation-delay: -12s;
    color: rgba(16, 185, 129, 0.9);
    font-size: 2.5rem;
}

.floating-icon:nth-child(27) {
    animation-delay: -18s;
    color: rgba(139, 92, 246, 0.9);
    font-size: 2.6rem;
}

/* Inner orbit - tight ellipse */
@keyframes galaxyOrbit1 {
    0% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(500px) translateY(0) scale(0.5) rotateZ(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(0) translateY(-350px) scale(1) rotateZ(90deg);
    }

    50% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(-500px) translateY(0) scale(0.5) rotateZ(180deg);
    }

    75% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(0) translateY(350px) scale(1) rotateZ(270deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(500px) translateY(0) scale(0.5) rotateZ(360deg);
        opacity: 0;
    }
}

/* Middle orbit - wider ellipse */
@keyframes galaxyOrbit2 {
    0% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(650px) translateY(0) scale(0.4) rotateZ(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(0) translateY(-450px) scale(1.1) rotateZ(90deg);
    }

    50% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(-650px) translateY(0) scale(0.4) rotateZ(180deg);
    }

    75% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(0) translateY(450px) scale(1.1) rotateZ(270deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(650px) translateY(0) scale(0.4) rotateZ(360deg);
        opacity: 0;
    }
}

/* Outer orbit - largest ellipse */
@keyframes galaxyOrbit3 {
    0% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(800px) translateY(0) scale(0.3) rotateZ(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(0) translateY(-550px) scale(1.2) rotateZ(90deg);
    }

    50% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(-800px) translateY(0) scale(0.3) rotateZ(180deg);
    }

    75% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(0) translateY(550px) scale(1.2) rotateZ(270deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(800px) translateY(0) scale(0.3) rotateZ(360deg);
        opacity: 0;
    }
}

/* Fast diagonal orbit */
@keyframes galaxyOrbit4 {
    0% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(600px) translateY(-250px) scale(0.4) rotateZ(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(250px) translateY(-600px) scale(1.05) rotateZ(90deg);
    }

    50% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(-600px) translateY(250px) scale(0.4) rotateZ(180deg);
    }

    75% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(-250px) translateY(600px) scale(1.05) rotateZ(270deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(600px) translateY(-250px) scale(0.4) rotateZ(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    border: 1px solid var(--border-color);
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--dark-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.search-input-wrapper:last-of-type {
    border-right: none;
}

.search-input-wrapper i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-input-wrapper input {
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--white);
    width: 100%;
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.9;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Filters */
.filters {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    background: var(--dark-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
    border-color: rgba(139, 92, 246, 0.5);
}

.job-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.job-info h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-name {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    color: var(--success-color);
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-detail-item i {
    color: var(--primary-color);
}

.job-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.salary {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.posted-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.no-results p {
    color: var(--text-light);
}



.company-search-container {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.company-search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-secondary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.company-search-box i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.company-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
}

.company-search-box input::placeholder {
    color: var(--text-muted);
}

.company-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.company-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.company-review-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.company-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
    border-color: var(--primary-color);
}

.company-review-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.company-review-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-purple);
}

.company-review-info {
    flex: 1;
}

.company-review-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.company-industry {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.company-rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.company-review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.company-quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--dark-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.quick-stat span {
    color: var(--white);
    font-size: 0.9rem;
}

.company-review-summary {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.company-tag {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.company-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.view-reviews-btn {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Companies Section */
.companies-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.company-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
    border-color: var(--primary-color);
}

.company-card .company-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.company-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.company-card p {
    color: var(--text-light);
}

/* Featured Jobs Section */
.featured-jobs {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.job-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

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

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.job-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-badge.urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.job-badge.featured {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.company-name, .job-location {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-name i, .job-location i {
    color: #8b5cf6;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tag {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.salary {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

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

/* Job Categories Section */
.categories {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

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

.category-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--dark-bg);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    max-width: 300px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #8b5cf6;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}

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

.step-arrow {
    font-size: 2rem;
    color: #8b5cf6;
}

/* Top Companies Section */
.top-companies {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.company-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.company-logo-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: white;
}

.company-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.company-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-outline-small {
    background: transparent;
    border: 1px solid #8b5cf6;
    color: #8b5cf6;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: #8b5cf6;
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    min-width: 400px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.quote-icon {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: white;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-card);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background: var(--white);
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Job Modal Specific Styles */
.job-modal-content {
    max-width: 1000px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }

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

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    outline: none;
}

.modal-close-btn:hover {
    background: var(--danger-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.close-modal {
    float: right;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

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

/* Job Modal Header */
.job-modal-header {
    padding: 2rem 2.5rem;
    background: var(--dark-secondary);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.job-header-left {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex: 1;
}

.modal-company-logo {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    box-shadow: var(--shadow-purple);
    flex-shrink: 0;
}

.job-header-info {
    flex: 1;
}

.job-modal-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.job-company-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.company-name {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
}

.meta-separator {
    color: var(--border-color);
}

.job-posted {
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-apply {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Quick Info Pills */
.job-quick-info {
    padding: 1.5rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--dark-card);
    border-bottom: 1px solid var(--border-color);
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--dark-secondary);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-pill i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.info-pill.highlight {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success-color);
    font-weight: 600;
    color: var(--success-color);
}

.info-pill.highlight i {
    color: var(--success-color);
}

/* Job Tabs */
.job-modal-body {
    padding: 2rem 2.5rem;
}

.job-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.job-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    margin-bottom: -2px;
}

.job-tab i {
    font-size: 1rem;
}

.job-tab:hover {
    color: var(--primary-color);
    background: var(--dark-secondary);
}

.job-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Tab Panels */
.job-tab-content {
    min-height: 300px;
}

.job-tab-panel {
    display: none;
    animation: fadeInContent 0.3s ease;
}

.job-tab-panel.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.content-section {
    padding: 1rem 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.section-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Requirements List */
.requirements-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.requirements-list li {
    padding: 1rem;
    padding-left: 3rem;
    background: var(--dark-secondary);
    border-radius: 10px;
    color: var(--white);
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.requirements-list li:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.skills-grid .tag {
    padding: 0.75rem 1rem;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-purple);
    transition: all 0.3s ease;
}

.skills-grid .tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Modal Footer */
.job-modal-footer {
    padding: 1.5rem 2.5rem;
    background: var(--dark-secondary);
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
}

.footer-info i {
    color: var(--warning-color);
}

.btn-apply-footer {
    padding: 0.875rem 2rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-secondary {
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Legacy styles for other modals */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-company-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-header p {
    color: var(--text-light);
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.modal-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
    position: relative;
}

.modal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skills-tags .tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* Company Modal Styles */
.company-modal-content {
    max-width: 1000px;
}

.company-modal-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.company-modal-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: var(--shadow-purple);
}

.company-modal-info {
    flex: 1;
}

.company-modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.company-rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.review-count {
    color: var(--text-light);
}

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

.stat-box {
    background: var(--dark-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

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

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-box span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.company-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.company-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.company-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.company-tab-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s;
}

.culture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.culture-tags .tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-purple);
}

/* Reviews */
.reviews-filter {
    margin-bottom: 2rem;
}

.reviews-filter select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    background: var(--dark-secondary);
    cursor: pointer;
}

.review-card {
    background: var(--dark-secondary);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.review-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.review-section {
    margin-bottom: 1rem;
}

.review-section h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.review-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.review-helpful {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.helpful-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    transition: all 0.3s;
}

.helpful-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Rating Breakdown */
.rating-breakdown {
    max-width: 600px;
}

.rating-category {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-bar-container {
    height: 12px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.rating-value {
    font-weight: 700;
    color: var(--text-dark);
}

/* Review Form */
.review-modal-content {
    max-width: 700px;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.star-rating-input i {
    cursor: pointer;
    color: var(--border-color);
    transition: all 0.2s;
}

.star-rating-input i:hover,
.star-rating-input i.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.category-rating {
    margin-bottom: 1.5rem;
}

.category-rating label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.category-rating .star-rating-input {
    font-size: 1.5rem;
}

.form-section input[type="text"],
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    background: var(--dark-secondary);
    font-family: inherit;
}

.form-section input::placeholder,
.form-section textarea::placeholder {
    color: var(--text-muted);
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.company-jobs-list {
    display: grid;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .search-box {
        flex-direction: column;
    }

    .search-input-wrapper {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .search-input-wrapper:last-of-type {
        border-bottom: none;
    }

    .stats {
        gap: 2rem;
    }

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

    .filters {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }

    /* Job Modal Responsive */
    .job-modal-header {
        flex-direction: column;
        padding: 1.5rem;
    }

    .job-header-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .job-modal-title {
        font-size: 1.5rem;
    }

    .job-quick-info {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    .info-pill {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
    }

    .job-modal-body {
        padding: 1.5rem;
    }

    .job-tabs {
        gap: 0.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .job-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .job-modal-footer {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .btn-apply-footer {
        width: 100%;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .modal-header {
        flex-direction: column;
        gap: 1rem;
    }

    .company-review-grid {
        grid-template-columns: 1fr;
    }

    .company-search-box {
        flex-direction: column;
    }

    .company-filters {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .company-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .company-tab {
        white-space: nowrap;
    }

    .company-modal-header {
        flex-direction: column;
        text-align: center;
    }

    .rating-category {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-buttons {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn-search {
        width: 100%;
        justify-content: center;
    }

    /* Job Modal Mobile */
    .modal {
        padding: 1rem 0.5rem;
    }

    .modal-close-btn {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }

    .job-modal-title {
        font-size: 1.25rem;
    }

    .job-company-meta {
        font-size: 0.9rem;
    }

    .btn-apply {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .job-quick-info {
        gap: 0.5rem;
        padding: 1rem;
    }

    .info-pill {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .job-modal-body {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .requirements-list li {
        padding: 0.875rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }

    .skills-grid .tag {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
    }

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

    .footer-info {
        font-size: 0.85rem;
    }
}

/* AI Job Match Modal Styles */
.ai-modal-content {
    background: var(--white);
    border-radius: 20px;
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 2.5rem;
}

.ai-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ai-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite;
}

.ai-icon-wrapper.success {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.ai-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.ai-modal-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ai-modal-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CV Upload Area */
.cv-upload-area {
    border: 3px dashed var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--bg-light);
}

.cv-upload-area:hover,
.cv-upload-area.dragover {
    border-color: var(--primary-color);
    background: #f0f4ff;
    transform: scale(1.02);
}

.cv-upload-area .upload-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cv-upload-area h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cv-upload-area p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Uploaded File Display */
.uploaded-file {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.file-info i.fa-file-pdf {
    font-size: 2.5rem;
    color: #ef4444;
}

.file-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.file-size {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-icon {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: #fee2e2;
    color: #ef4444;
}

.btn-analyze {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    gap: 0.5rem;
}

/* Analysis Animation */
.analysis-animation {
    text-align: center;
    padding: 3rem 2rem;
}

.ai-brain {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: brainPulse 1.5s ease-in-out infinite;
}

.analysis-animation h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.analysis-progress {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.progress-item:nth-child(1) {
    animation-delay: 0.2s;
}

.progress-item:nth-child(2) {
    animation-delay: 0.8s;
}

.progress-item:nth-child(3) {
    animation-delay: 1.4s;
}

.progress-item i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.progress-item i.fa-spinner {
    color: var(--primary-color);
}

/* CV Summary */
.cv-summary {
    background: linear-gradient(135deg, #f0f4ff, #faf5ff);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
}

.cv-summary h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cv-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.summary-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
}

.summary-item strong {
    color: var(--primary-color);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.summary-item span {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Matched Jobs */
.matched-jobs {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.matched-job-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.matched-job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.matched-job-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.match-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.match-score i {
    font-size: 0.9rem;
}

.matched-job-header {
    margin-bottom: 1rem;
    padding-right: 100px;
}

.matched-job-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.matched-job-company {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.matched-job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.detail-badge i {
    color: var(--primary-color);
}

.match-reasons {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.match-reasons h5 {
    color: var(--success-color);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.match-reasons ul {
    list-style: none;
    padding-left: 0;
}

.match-reasons li {
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.match-reasons li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
}

.matched-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.matched-skill {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.ai-modal-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.ai-modal-footer .btn {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes brainPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    /* Home page sections */
    .section-title {
        font-size: 1.8rem;
    }

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

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        min-width: 320px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .ai-modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 95vh;
    }

    .ai-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .ai-icon-wrapper i {
        font-size: 2rem;
    }

    .ai-modal-header h2 {
        font-size: 1.5rem;
    }

    .cv-upload-area {
        padding: 2rem 1rem;
    }

    .cv-upload-area .upload-icon {
        font-size: 3rem;
    }

    .matched-job-header {
        padding-right: 80px;
    }

    .match-score {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .ai-modal-footer {
        flex-direction: column;
    }

    .cv-summary-grid {
        grid-template-columns: 1fr;
    }
}