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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #64748b 0%, #0ea5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
    transition: transform 0.3s ease;
}

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

.logo-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: -2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transform: skew(-5deg);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
    border-radius: 1px;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.career {
    color: #64748b;
    font-weight: 700;
}

.hai {
    color: #0ea5e9;
    font-weight: 700;
}

.nav-brand h2 {
    color: #4f46e5;
    font-size: 1.8rem;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.btn-candidate {
    background: transparent;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-candidate:hover {
    background: #0ea5e9;
    color: white;
}

.btn-employer {
    background: #0ea5e9;
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-employer:hover {
    background: #0284c7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #64748b 0%, #0ea5e9 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.search-bar {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-input, .location-input {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-input i, .location-input i {
    color: #666;
    margin-right: 10px;
}

.search-input input, .location-input input {
    border: none;
    outline: none;
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #333;
}

.search-btn {
    background: #0ea5e9;
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #0284c7;
}

/* Categories */
.categories {
    padding: 80px 0;
    background: #f8fafc;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-card i {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.category-card p {
    color: #64748b;
    font-weight: 500;
}

/* Featured Jobs */
.featured-jobs {
    padding: 80px 0;
}

.featured-jobs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.job-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.company-logo {
    margin-bottom: 1rem;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: #0ea5e9;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.job-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.job-info .company {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-info .location {
    color: #64748b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.tag {
    background: #e0f2fe;
    color: #0ea5e9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.5rem;
}

.apply-btn {
    background: #0ea5e9;
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.apply-btn:hover {
    background: #0284c7;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0ea5e9;
    color: white;
}

/* Stats */
.stats {
    background: #64748b;
    color: white;
    padding: 60px 0;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #64748b 0%, #0ea5e9 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: -2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transform: skew(-5deg);
    position: relative;
}

.footer-logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, white, transparent);
    border-radius: 1px;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-logo .career {
    color: #64748b;
    font-weight: 700;
}

.footer-logo .hai {
    color: #0ea5e9;
    font-weight: 700;
}

.footer-section h3 {
    color: #0ea5e9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #0ea5e9;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    opacity: 1;
    color: #cbd5e1;
}

.footer-bottom a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Login Page */
.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.login-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    color: #64748b;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: #0ea5e9;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.login-btn:hover {
    background: #0284c7;
}

.signup-link {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.signup-btn {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
}

.signup-btn:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input, .location-input {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .search-btn {
        border-radius: 10px;
        margin: 10px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .login-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .tab-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
/* Jobs Page Styles */
.jobs-hero {
    background: linear-gradient(135deg, #64748b 0%, #0ea5e9 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.jobs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.jobs-content {
    padding: 60px 0;
    background: #f8fafc;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-sidebar h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #475569;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-group input[type="checkbox"] {
    margin-right: 0.8rem;
    accent-color: #0ea5e9;
}

/* Jobs Main Content */
.jobs-main {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.jobs-header h2 {
    color: #1e293b;
    font-size: 1.5rem;
}

.sort-dropdown {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    cursor: pointer;
}

/* Large Job Cards */
.job-card-large {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: white;
}

.job-card-large:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

.job-basic-info h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.job-basic-info .company {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.job-basic-info .location {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.save-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.save-btn:hover {
    color: #ef4444;
    border-color: #ef4444;
}

.job-details .salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.job-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.posted-time {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background: white;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

.page-btn.active {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

/* Active Navigation Link */
.nav-links a.active {
    color: #0ea5e9;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .jobs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .jobs-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .job-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-actions {
        width: 100%;
        justify-content: space-between;
    }
}
/* Resume Builder Styles */
.resume-hero {
    background: linear-gradient(135deg, #64748b 0%, #0ea5e9 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.resume-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.resume-builder {
    padding: 60px 0;
    background: #f8fafc;
}

.builder-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Resume Form */
.resume-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: fit-content;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #0ea5e9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group small {
    color: #64748b;
    font-size: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.experience-item,
.education-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.8rem;
}

.add-btn {
    background: transparent;
    border: 2px dashed #0ea5e9;
    color: #0ea5e9;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.add-btn:hover {
    background: #0ea5e9;
    color: white;
}

.generate-btn {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.generate-btn:hover {
    background: #0284c7;
}

/* Resume Preview */
.resume-preview {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.preview-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h3 {
    color: #1e293b;
    margin: 0;
}

.download-options {
    display: flex;
    gap: 0.5rem;
}

.download-btn {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #0284c7;
}

.resume-template {
    padding: 2rem;
    min-height: 600px;
}

.template-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: #94a3b8;
    text-align: center;
}

.template-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Resume Template Styles */
.resume-content {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.resume-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0ea5e9;
}

.resume-header h1 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.resume-header .contact-info {
    color: #64748b;
    font-size: 0.9rem;
}

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

.resume-section h2 {
    color: #0ea5e9;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.experience-entry,
.education-entry {
    margin-bottom: 1.5rem;
}

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

.entry-title {
    font-weight: 600;
    color: #1e293b;
}

.entry-company {
    color: #64748b;
    font-style: italic;
}

.entry-date {
    color: #64748b;
    font-size: 0.9rem;
}

.entry-description {
    color: #4b5563;
    margin-top: 0.5rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #e0f2fe;
    color: #0ea5e9;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .builder-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resume-preview {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .download-options {
        flex-direction: column;
        width: 100%;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}
/* Enhanced Resume Hero */
.resume-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e40af 50%, #7c3aed 100%);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.resume-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 58, 237, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.3) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.cta-primary small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    gap: 3rem;
}

.indicator {
    text-align: center;
}

.indicator .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.3rem;
}

.indicator .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Enhanced Resume Showcase */
.resume-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resume-mockup.main {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.4s ease;
    width: 350px;
    position: relative;
    z-index: 2;
}

.resume-mockup.main:hover {
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.mockup-header {
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #7c3aed);
    border-radius: 50%;
}

.header-text {
    flex: 1;
}

.name-line {
    background: #1e293b;
    height: 16px;
    border-radius: 8px;
    width: 150px;
    margin-bottom: 0.5rem;
}

.title-line {
    background: #64748b;
    height: 12px;
    border-radius: 6px;
    width: 120px;
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    background: #0ea5e9;
    height: 14px;
    border-radius: 7px;
    width: 100px;
    margin-bottom: 1rem;
}

.content-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.success-indicators {
    position: absolute;
}

.indicator-badge {
    position: absolute;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: -15px;
    right: -30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    left: -40px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: -15px;
    right: -20px;
    animation-delay: 2s;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -25%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    left: -15%;
    animation-delay: 3s;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-header .avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.story-header h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.story-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

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

.story-card > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.story-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.story-stats i {
    color: #0ea5e9;
}

.policy-section h3 {
    color: #64748b;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

/* Privacy Policy Styles */
.policy-content {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 80vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-header h1 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.effective-date {
    color: #64748b;
    font-size: 1.1rem;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.policy-text > p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: #0ea5e9;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0;
    color: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Tool Cards */
.tool-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.tool-card:hover::before {
    left: 100%;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.coming-soon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.tool-btn.secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

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

/* Enhanced Templates */
.template-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.template-card.active {
    border-color: #0ea5e9;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
    transform: translateY(-5px);
}

.template-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.template-preview {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.template-header.modern { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.template-header.classic { background: linear-gradient(135deg, #64748b, #475569); }
.template-header.creative { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.template-header.minimal { background: linear-gradient(135deg, #10b981, #059669); }

.template-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.template-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.template-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-content-resume {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .resume-mockup {
        transform: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Companies Page Styles */
.companies-hero {
    background: linear-gradient(135deg, #64748b 0%, #0ea5e9 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.companies-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.company-categories {
    padding: 40px 0;
    background: #f8fafc;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

.companies-grid {
    padding: 60px 0;
    background: #f8fafc;
}

.companies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.companies-header h2 {
    color: #1e293b;
    font-size: 1.5rem;
}

.companies-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.company-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

.company-info h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.company-industry {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.rating {
    font-weight: 600;
    color: #059669;
}

.stars {
    color: #fbbf24;
}

.reviews {
    color: #64748b;
    font-size: 0.85rem;
}

.company-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.follow-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.follow-btn:hover {
    color: #ef4444;
    border-color: #ef4444;
}

.view-btn {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.view-btn:hover {
    background: #0284c7;
}

.company-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.company-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.stat i {
    color: #0ea5e9;
}

/* Responsive */
@media (max-width: 768px) {
    .companies-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .company-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}
.company-actions .apply-btn {\n    background: #059669;\n    color: white;\n    border: none;\n    padding: 0.5rem 1rem;\n    border-radius: 8px;\n    cursor: pointer;\n    font-weight: 500;\n    font-size: 0.85rem;\n    transition: background 0.3s;\n}\n\n.company-actions .apply-btn:hover {\n    background: #047857;\n}