:root {
    --primary-color: #3b82f6;
    /* Bright Blue */
    --secondary-color: #8b5cf6;
    /* Purple for accents */
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --text-color: #334155;
    --heading-color: #0f172a;
    --border-radius: 1rem;
    --hero-bg: #f0f9ff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    color: var(--heading-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(59, 130, 246, 0.05);
}

.btn-auth-login {
    font-weight: 600;
    color: var(--heading-color);
    text-decoration: none;
    margin-right: 1rem;
}

.btn-auth-login:hover {
    color: var(--primary-color);
}

.btn-auth-register {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 2rem;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.btn-auth-register:hover {
    background-color: #2563eb;
    /* Darker blue */
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-wrapper {
    background-color: var(--hero-bg);
    padding: 4rem 0;
    border-radius: 0 0 3rem 3rem;
    /* Soft curve at bottom */
    position: relative;
    overflow: visible;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-search-box {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-top: 2rem;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    border-radius: 2rem;
    /* Fancy blob shape or simple rounded rect */
}

/* Floating Badges in Hero */
.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.badge-top-right {
    top: 10%;
    right: -2rem;
}

.badge-bottom-left {
    bottom: 10%;
    left: -2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
}

/* Categories */
.category-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 1rem auto;
    transition: all 0.3s;
}

.category-card:hover .category-icon {
    background: var(--primary-color);
    color: white;
}

/* How It Works */
.process-step {
    position: relative;
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f1f5f9;
    position: absolute;
    top: 0;
    left: 1rem;
    z-index: 0;
    line-height: 1;
}

.step-content {
    position: relative;
    z-index: 1;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* CV Banner */
.cv-banner {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    border-radius: 2rem;
    color: white;
    overflow: hidden;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 5rem 0 2rem 0;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none !important;
}