:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #eef2ff;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-color: #334155;
    --text-light: #64748b;
    --text-dark: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-nav-cta {
    background: var(--dark-color);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 5rem;
    overflow: visible;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(79, 70, 229, 0.1) 0%,
        rgba(99, 102, 241, 0.1) 25%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(168, 85, 247, 0.1) 75%,
        rgba(79, 70, 229, 0.1) 100%
    );
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1 {
    font-size: 2.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.title-line-2 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search Form */
.search-wrapper {
    display: flex;
    gap: 0.75rem;
    max-width: 720px;
    margin: 0 auto;
    background: white;
    padding: 0.4rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 5;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
}

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

.search-select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.4rem;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    outline: none;
    min-width: 160px;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: var(--primary-hover);
    transform: translateX(2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mouse Icon */
.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: wheel 2s ease-in-out infinite;
}

@keyframes wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 16px; opacity: 0.5; }
    100% { top: 8px; opacity: 1; }
}

/* Arrow Container */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

.arrow {
    stroke: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.scroll-indicator:hover .mouse-icon {
    border-color: white;
}

.scroll-indicator:hover .mouse-wheel {
    background: white;
    animation-duration: 1s;
}


/* Journey Section */
.journey-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, white, var(--light-color));
}

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

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Compact Journey Grid */
.journey-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.journey-step {
    flex: 0 1 calc(16.666% - 2rem);
    min-width: 150px;
    position: relative;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem 0.75rem;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: stepHighlight 12s infinite ease-in-out;
}

/* Stagger the animation for each step */
.journey-step[data-step="1"] {
    animation-delay: 0s;
}

.journey-step[data-step="2"] {
    animation-delay: 2s;
}

.journey-step[data-step="3"] {
    animation-delay: 4s;
}

.journey-step[data-step="4"] {
    animation-delay: 6s;
}

.journey-step[data-step="5"] {
    animation-delay: 8s;
}

.journey-step[data-step="6"] {
    animation-delay: 10s;
}

/* Animation keyframes for highlighting steps */
@keyframes stepHighlight {
    0%, 83.33%, 100% {
        background: white;
        border-color: var(--border-color);
        transform: translateY(0) scale(1);
        box-shadow: none;
    }
    8.33%, 16.66% {
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
        border-color: #4f46e5;
        border-width: 3px;
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
    }
}

/* Make text darker when highlighted for better visibility */
@keyframes textHighlight {
    0%, 83.33%, 100% {
        color: var(--dark-color);
        font-weight: 600;
    }
    8.33%, 16.66% {
        color: #4f46e5;
        font-weight: 700;
        transform: scale(1.05);
    }
}

@keyframes textHighlightLight {
    0%, 83.33%, 100% {
        color: var(--text-light);
    }
    8.33%, 16.66% {
        color: var(--dark-color);
        font-weight: 500;
    }
}

/* Apply text color animations */
.journey-step[data-step="1"] h3 {
    animation: textHighlight 12s infinite ease-in-out;
    animation-delay: 0s;
}

.journey-step[data-step="2"] h3 {
    animation: textHighlight 12s infinite ease-in-out;
    animation-delay: 2s;
}

.journey-step[data-step="3"] h3 {
    animation: textHighlight 12s infinite ease-in-out;
    animation-delay: 4s;
}

.journey-step[data-step="4"] h3 {
    animation: textHighlight 12s infinite ease-in-out;
    animation-delay: 6s;
}

.journey-step[data-step="5"] h3 {
    animation: textHighlight 12s infinite ease-in-out;
    animation-delay: 8s;
}

.journey-step[data-step="6"] h3 {
    animation: textHighlight 12s infinite ease-in-out;
    animation-delay: 10s;
}

.journey-step[data-step="1"] p {
    animation: textHighlightLight 12s infinite ease-in-out;
    animation-delay: 0s;
}

.journey-step[data-step="2"] p {
    animation: textHighlightLight 12s infinite ease-in-out;
    animation-delay: 2s;
}

.journey-step[data-step="3"] p {
    animation: textHighlightLight 12s infinite ease-in-out;
    animation-delay: 4s;
}

.journey-step[data-step="4"] p {
    animation: textHighlightLight 12s infinite ease-in-out;
    animation-delay: 6s;
}

.journey-step[data-step="5"] p {
    animation: textHighlightLight 12s infinite ease-in-out;
    animation-delay: 8s;
}

.journey-step[data-step="6"] p {
    animation: textHighlightLight 12s infinite ease-in-out;
    animation-delay: 10s;
}

/* Animate step icons during highlight */
.journey-step[data-step="1"] .step-icon {
    animation: iconPulse 12s infinite ease-in-out;
    animation-delay: 0s;
}

.journey-step[data-step="2"] .step-icon {
    animation: iconPulse 12s infinite ease-in-out;
    animation-delay: 2s;
}

.journey-step[data-step="3"] .step-icon {
    animation: iconPulse 12s infinite ease-in-out;
    animation-delay: 4s;
}

.journey-step[data-step="4"] .step-icon {
    animation: iconPulse 12s infinite ease-in-out;
    animation-delay: 6s;
}

.journey-step[data-step="5"] .step-icon {
    animation: iconPulse 12s infinite ease-in-out;
    animation-delay: 8s;
}

.journey-step[data-step="6"] .step-icon {
    animation: iconPulse 12s infinite ease-in-out;
    animation-delay: 10s;
}

/* Animate step numbers during highlight */
.journey-step[data-step="1"] .step-number {
    animation: numberGlow 12s infinite ease-in-out;
    animation-delay: 0s;
}

.journey-step[data-step="2"] .step-number {
    animation: numberGlow 12s infinite ease-in-out;
    animation-delay: 2s;
}

.journey-step[data-step="3"] .step-number {
    animation: numberGlow 12s infinite ease-in-out;
    animation-delay: 4s;
}

.journey-step[data-step="4"] .step-number {
    display: none;
}

.journey-step[data-step="5"] .step-number {
    animation: numberGlow 12s infinite ease-in-out;
    animation-delay: 8s;
}

.journey-step[data-step="6"] .step-number {
    animation: numberGlow 12s infinite ease-in-out;
    animation-delay: 10s;
}

/* Icon pulse animation */
@keyframes iconPulse {
    0%, 83.33%, 100% {
        transform: scale(1) rotate(0deg);
        filter: grayscale(10%);
    }
    8.33%, 16.66% {
        transform: scale(1.3) rotate(10deg);
        filter: grayscale(0%) brightness(1.3) drop-shadow(0 0 20px rgba(79, 70, 229, 0.6));
    }
}

/* Number glow animation */
@keyframes numberGlow {
    0%, 83.33%, 100% {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
        transform: translateX(-50%) scale(1);
    }
    8.33%, 16.66% {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
        transform: translateX(-50%) scale(1.4);
    }
}

.journey-step.highlight-step {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(234, 88, 12, 0.05));
    border-color: #f59e0b;
    border-width: 2px;
    position: relative;
}

.expert-badge {
    position: absolute;
    top: -10px;
    right: -5px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

/* Animate the expert badge on step 4 */
.journey-step[data-step="4"] .expert-badge {
    animation: expertBadgePulse 12s infinite ease-in-out;
    animation-delay: 6s;
}

@keyframes expertBadgePulse {
    0%, 83.33%, 100% {
        background: linear-gradient(135deg, #f59e0b, #ea580c);
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    }
    8.33%, 16.66% {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.9);
        filter: brightness(1.2);
    }
}

.journey-step:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 16px 32px rgba(79, 70, 229, 0.2);
    z-index: 10;
}

.journey-step.highlight-step:hover {
    border-color: #ea580c;
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.2);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
    border: 2px solid white;
}

.journey-step.highlight-step .step-number {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.step-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    filter: grayscale(10%);
    transition: all 0.3s ease;
}

.journey-step:hover .step-icon {
    filter: grayscale(0%);
    transform: scale(1.1) rotate(5deg);
}

.journey-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.journey-step p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
    margin: 0;
}

.journey-arrow {
    flex: 0 0 auto;
    font-size: 1.25rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin: 0 -0.5rem;
    animation: arrowFlow 12s infinite ease-in-out;
}

/* Stagger arrow animations to create a flow effect */
.journey-arrow:nth-of-type(2) {
    animation-delay: 1s;
}

.journey-arrow:nth-of-type(4) {
    animation-delay: 3s;
}

.journey-arrow:nth-of-type(6) {
    animation-delay: 5s;
}

.journey-arrow:nth-of-type(8) {
    animation-delay: 7s;
}

.journey-arrow:nth-of-type(10) {
    animation-delay: 9s;
}

.journey-arrow:nth-of-type(12) {
    animation-delay: 11s;
}

/* Arrow flow animation */
@keyframes arrowFlow {
    0%, 91.66%, 100% {
        opacity: 0.2;
        transform: translateX(0) scale(1);
        color: var(--border-color);
    }
    8.33% {
        opacity: 1;
        transform: translateX(5px) scale(1.5);
        color: #4f46e5;
        filter: drop-shadow(0 0 10px rgba(79, 70, 229, 0.8));
    }
}

@media (max-width: 1200px) {
    .journey-step {
        flex: 0 1 calc(20% - 2rem);
        min-width: 140px;
    }
}

@media (max-width: 900px) {
    .journey-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .journey-step {
        min-width: unset;
        flex: unset;
    }
    
    .journey-arrow {
        display: none;
    }
}

@keyframes arrowPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(0);
    }
    50% { 
        opacity: 0.6; 
        transform: translateX(3px);
    }
}

/* Expert Banner */
.expert-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    padding: 2rem 0;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.expert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.05"><polygon points="20 0 40 20 20 40 0 20"/></g></svg>');
    background-size: 40px 40px;
}

.expert-banner-content {
    position: relative;
    text-align: center;
    color: white;
}

.expert-banner-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.expert-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expert-banner p {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Stats Bar */
.quick-stats {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.quick-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.stats-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-stat {
    text-align: center;
    color: white;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-stat:hover::before {
    transform: scaleX(1);
}

.quick-stat:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: saturate(1.5);
    animation: float 3s ease-in-out infinite;
}

.quick-stat:nth-child(1) .stat-icon { animation-delay: 0s; }
.quick-stat:nth-child(2) .stat-icon { animation-delay: 0.5s; }
.quick-stat:nth-child(3) .stat-icon { animation-delay: 1s; }
.quick-stat:nth-child(4) .stat-icon { animation-delay: 1.5s; }

.quick-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.quick-stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-stat-detail {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Jobs Section */
.jobs-container {
    padding: 4rem 0;
    scroll-margin-top: 80px;
}

/* Jobs Filter Bar */
.jobs-filter-bar {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.jobs-filter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-search-group {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    stroke: var(--text-light);
    pointer-events: none;
}

.filter-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.clear-search-btn:hover {
    background: var(--danger-color);
    transform: scale(1.1);
}

.clear-search-btn:hover svg {
    stroke: white;
}

.clear-search-btn svg {
    stroke: var(--text-light);
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    min-width: 180px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-submit-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.reset-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid var(--danger-color);
    border-radius: 0.5rem;
    color: var(--danger-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reset-filters-btn:hover {
    background: var(--danger-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.reset-filters-btn svg {
    stroke: currentColor;
}

.active-filter-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.active-filter-summary strong {
    color: var(--primary-color);
    font-weight: 700;
}

.filter-detail {
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .jobs-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-search-group {
        min-width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .filter-submit-btn,
    .reset-filters-btn {
        width: 100%;
        justify-content: center;
    }
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Modern Job Card */
.job-card {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.job-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
}

/* Expert Badge - New Design */
.expert-badge-top {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    z-index: 10;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.expert-icon {
    font-size: 0.875rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.expert-text {
    white-space: nowrap;
    font-size: 0.7rem;
}

/* Alternative corner badge design */
.job-card.badge-style-corner .expert-badge-top {
    top: 12px;
    right: 12px;
    border-radius: 0.5rem;
    padding: 0.375rem 0.875rem;
}

/* Alternative stripe badge design */
.job-card.badge-style-stripe .expert-badge-top {
    top: 0;
    right: 0;
    left: 0;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 0.375rem;
    text-align: center;
    justify-content: center;
    background: linear-gradient(90deg, #f59e0b, #ea580c, #f59e0b);
    background-size: 200% 100%;
    animation: shimmerBadge 3s ease-in-out infinite;
}

@keyframes shimmerBadge {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Card Glow Effect */
.job-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.job-card:hover .job-card-glow {
    opacity: 1;
}

/* Header Section */
.job-card-header {
    padding: 2.5rem 1.75rem 0;
    margin-bottom: 1rem;
}

.company-logo-container {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.company-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.company-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

.company-details {
    flex: 1;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.category-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.expert-type {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Job Highlights */
.job-highlights {
    display: flex;
    gap: 1rem;
    padding: 0 1.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1rem;
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Description */
.job-description {
    padding: 0 1.75rem;
    margin-bottom: 1rem;
}

.job-description p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Requirements Preview */
.job-requirements-preview {
    padding: 0 1.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.req-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.req-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Perks Section */
.job-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(to bottom, var(--light-color), transparent);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.perk-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.375rem;
}

.perk-icon {
    font-size: 1.25rem;
    filter: saturate(1.5);
}

.perk-item span:last-child {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Footer Section */
.job-footer {
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.applicant-avatars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border: 2px solid white;
    margin-left: -8px;
    position: relative;
    z-index: 1;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

.practicing-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Apply Button */
.job-apply-btn {
    position: relative;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.job-apply-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.job-apply-btn:hover .btn-shine {
    transform: translateX(100%) rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expert-badge-top {
        right: 15px;
        padding: 0.375rem 0.75rem;
        font-size: 0.65rem;
        gap: 0.25rem;
    }
    
    .expert-icon {
        font-size: 0.75rem;
    }
    
    .expert-text {
        font-size: 0.6rem;
    }
    
    .job-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
    
    .job-perks {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .perk-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.5rem 0;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .job-apply-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--light-color), white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card.feature-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(234, 88, 12, 0.05));
    border: 2px solid #f59e0b;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

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

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.cta-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-logo .logo-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

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

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px dashed var(--border-color);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Admin Styles */
.admin-body {
    background: var(--light-color);
    min-height: 100vh;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 260px;
    background: var(--dark-color);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-nav a.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 0;
    background: var(--light-color);
    min-height: 100vh;
}

.admin-header {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-header h1 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin: 0;
}

.header-user {
    color: var(--text-color);
    font-weight: 500;
}

.admin-content {
    padding: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Admin Section */
.admin-section {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.admin-section h2 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--light-color);
}

.admin-table th {
    padding: 0.875rem;
    text-align: left;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-color);
}

.admin-table td {
    padding: 0.875rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.admin-table tbody tr:hover {
    background: var(--light-color);
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.status-new {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.status-badge.status-reviewed {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.status-accepted {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.status-badge.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.status-badge.status-in_review {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.status-badge.status-interview_scheduled {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-badge.status-interview_mail_sent {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.status-badge.status-hold {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.status-badge.status-feedback_done {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-badge.status-re_interview {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.status-badge.status-shortlisted {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.status-badge.status-selected {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.status-badge.status-offer_sent {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.status-badge.status-joined {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

/* Action Buttons */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

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

.btn-success:hover {
    background: #059669;
}

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

.btn-danger:hover {
    background: #dc2626;
}

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

.btn-warning:hover {
    background: #d97706;
}

/* Admin Login */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.login-card h1 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

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

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

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

.btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success-color);
    color: #047857;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger-color);
    color: #b91c1c;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--warning-color);
    color: #92400e;
}

.alert-info {
    background: rgba(79, 70, 229, 0.1);
    border-color: var(--primary-color);
    color: #3730a3;
}

/* Admin Form Styles */
.admin-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

/* File Upload */
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 0.75rem;
    border: 2px dashed var(--border-color);
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* Admin Responsive */
@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Job Detail Page Styles */
.job-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.job-detail-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin-top: 2rem;
}

.job-detail-main {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.job-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.job-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.job-meta-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.job-salary-range {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.salary-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.salary-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.job-detail-body {
    padding: 3rem;
}

.job-section {
    margin-bottom: 3rem;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.job-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

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

.job-section .rich-text ul,
.job-section .rich-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.job-section .rich-text li {
    margin-bottom: 0.5rem;
}

/* Job Detail Sidebar */
.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.company-info-card {
    text-align: center;
}

.company-logo-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.company-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.company-stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.company-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-highlights-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.highlight-icon-wrapper {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.125rem;
}

.highlight-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Application Form Card */
.application-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.application-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.application-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

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

.application-form .form-group {
    margin-bottom: 1.25rem;
}

.application-form .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.application-form .form-group input,
.application-form .form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.application-form .form-group input:focus,
.application-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-color);
    border: 2px dashed var(--primary-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input-label:hover {
    background: var(--primary-light);
    border-style: solid;
}

.file-input-label svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.file-input-text {
    color: var(--primary-color);
    font-weight: 600;
}

.file-info {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.btn-apply {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-apply::before {
    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-apply:active::before {
    width: 300px;
    height: 300px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    color: #b91c1c;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-error p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid var(--success-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.alert-success h3 {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.alert-success p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.alert-success .btn {
    background: var(--success-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.alert-success .btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Share Buttons */
.share-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background: #005885;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #0c85d0;
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #0c5dd0;
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--secondary-color);
    color: white;
}

.share-btn.email:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* Responsive Job Detail */
@media (max-width: 1024px) {
    .job-detail-container {
        grid-template-columns: 1fr;
    }
    
    .job-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .application-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .job-detail-header {
        padding: 2rem 1.5rem;
    }
    
    .job-detail-header h1 {
        font-size: 1.75rem;
    }
    
    .job-meta {
        gap: 0.75rem;
    }
    
    .job-meta-item {
        font-size: 0.85rem;
        padding: 0.375rem 0.75rem;
    }
    
    .job-detail-body {
        padding: 1.5rem;
    }
    
    .job-section h2 {
        font-size: 1.25rem;
    }
    
    .job-detail-sidebar {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.75rem;
    }
    
    .title-line-2 {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
    
    .quick-stats {
        padding: 1rem 0;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .quick-stat-number {
        font-size: 1.25rem;
    }
    
    .search-wrapper {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .search-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-input::placeholder {
        font-size: 0.85rem;
    }
    
    .search-select {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .search-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .journey-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }
    
    .journey-step {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 1.25rem;
    }
    
    .expert-banner h2 {
        font-size: 1.5rem;
    }
    
    .expert-banner p {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse-icon {
        width: 22px;
        height: 34px;
    }
    
    .arrow {
        width: 16px;
        height: 16px;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}