/* ============================================
   JOBSEASE GLOBAL STYLES
   Consolidated CSS for entire website
   Font: Inter (main), Poppins (headings)
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B;
    background: #FFFFFF;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER / NAVIGATION ===== */


/* ===== HEADER FIX (DESKTOP) ===== */

/* Make nav a 3-column layout */
.header nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* LOGO: prevent it from squeezing layout */
.logo {
    max-width: 180px;       /* control logo column width */
    flex-shrink: 0;
}

.logo img {
    width: 140px;           /* fixed logo size */
    max-width: 100%;
    height: auto;
}

/* CENTER MENU */
.nav-links {
    justify-content: center;
    gap: 32px;
}

/* BUTTONS stay right */
.nav-buttons {
    justify-content: flex-end;
}


header,
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.logo {*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    color: #2563eb;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*}*/

/*.logo img {*/
/*    height: auto;*/
/*    max-width: 100%;*/
/*    width: 70%;*/
/*}*/

.logo-icon {
    width: 32px;
    height: 32px;
    background: #2563eb;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/*.nav-buttons {*/
/*    display: flex;*/
/*    gap: 12px;*/
/*    align-items: center;*/
/*}*/

.lang-selector {
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.1);
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #2563eb;
}

.btn-white:hover {
    background: #f8fafc;
}

.btn-subscribe {
    padding: 12px 24px;
    background: white;
    color: black;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    background-image: url('frontend/assets/images/jobsease.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-text h1 span {
    color: #2563eb;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 30px;
    max-width: 540px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.section-title p {
    color: #64748B;
    font-size: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3B82F6;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0F172A;
}

.feature-card p {
    color: #64748B;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
}

/* ===== CV SECTION ===== */
.cv-section {
    padding: 60px 2rem;
    background: white;
    max-width: 1280px;
    margin: 0 auto;
}

.top-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
    flex-wrap: wrap;
}

.left-content {
    position: relative;
}

.left-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    position: relative;
    display: inline-block;
}

.underline {
    display: block;
    width: 200px;
    height: 6px;
    background: #4ade80;
    margin-top: 8px;
    border-radius: 10px;
}

.arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.upload-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== UPLOAD OPTIONS SECTION ===== */
.upload-section {
    padding: 60px 2rem;
    background: #F8FAFC;
    max-width: 1280px;
    margin: 0 auto;
}

.upload-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.upload-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.upload-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3B82F6;
}

.upload-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.75rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
}

.upload-card:hover .upload-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.upload-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.upload-card p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.upload-note {
    text-align: center;
    margin-top: 2rem;
    color: #94A3B8;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== JOBS SECTION ===== */
.jobs {
    padding: 80px 0;
    background: #f8fafc;
}

.jobs-section {
    padding: 60px 2rem;
    background: white;
    max-width: 1280px;
    margin: 0 auto;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 2rem;
}

.jobs-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.jobs-stats h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
}

.jobs-count {
    background: #3B82F6;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

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

.jobs-filter-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748B;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.jobs-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid #E2E8F0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #3B82F6;
}

.job-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2563eb;
}

.job-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
}

.job-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #0F172A;
    margin-bottom: 5px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    gap: 15px;
    color: #64748B;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.tag {
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.tag.featured {
    background: #fef3c7;
    color: #92400e;
}

.tag.pro {
    background: #DBEAFE;
    color: #1E40AF;
}

.job-salary {
    font-weight: 600;
    color: #0F172A;
    font-size: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== INTERVIEW SECTION ===== */
/*.interview-section {*/
/*    padding: 60px 2rem;*/
/*    background: white;*/
/*    max-width: 1280px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*}*/

/*.keyboard-bg {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    background: url('frontend/assets/images/keyboard.png') no-repeat;*/
/*    background-size: contain;*/
/*    opacity: 0.1;*/
/*    pointer-events: none;*/
/*}*/

/*.blur-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(255, 255, 255, 0.5);*/
/*    backdrop-filter: blur(100px);*/
/*    pointer-events: none;*/
/*}*/

/*.top-header {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.title-wrap {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 30px;*/
/*    margin-bottom: 40px;*/
/*}*/

/* ===== FOOTER ===== */
footer {
    background: #007BFF;
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

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

.footer-logo-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-wrap img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    color: #94A3B8;
    line-height: 1.8;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 1.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #fff !important;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section ul li a:hover {
    color: #E2E8F0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.75rem 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: left;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    color: #94A3B8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .top-block {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .left-content h1 {
        font-size: 2rem;
    }

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

    .features {
        padding: 4rem 1.5rem;
    }

    .upload-section {
        padding: 4rem 1.5rem;
    }

    .upload-options {
        grid-template-columns: 1fr;
    }

    .jobs-section {
        padding: 4rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .job-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .job-logo {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .job-details h3 {
        font-size: 1rem;
    }

    .job-meta {
        font-size: 12px;
    }

    .tag {
        font-size: 11px;
        padding: 0.25rem 0.625rem;
    }

    footer {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    footer * {
        box-sizing: border-box;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }

    .footer-section {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        align-items: center !important;
    }

    .footer-section.footer-brand {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footer-brand .logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .footer-brand p {
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
    }

    footer img {
        display: block !important;
        margin: 0 auto 15px auto !important;
    }

    footer .social-icons,
    footer .social-links,
    footer .footer-socials,
    .footer-brand .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .footer-bottom-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100% !important;
        margin: 0 !important;
    }

    footer p,
    footer span,
    footer a {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .left-content h1 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .nav-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

svg{
    vertical-align: top !important;
}

/* Desktop widths */
@media (min-width: 1024px) {
  .u1 {  margin-left: 13%;
        width: 265px !important; }
  .u2 { margin-left: 9%; width: 300px!important; }
  .u3 { width: 265px !important; }
}

@media (max-width: 768px) {
    .u3 {
       margin-left:20%;
    }
    svg{
        margin-top:30px;
    }
}

/*#pricing p{*/
/*    color:#a1b1bf !important;*/
/*}*/


