
/* Reset and Base Styles */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;

    line-height: 1.6;

    color: #0f172a;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.section-title {

    text-align: center;

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 48px;

    color: #0f172a;

}



/* Hero Section */

.hero {

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    padding: 120px 20px;

    text-align: center;

}



.hero-title {

    font-size: 56px;

    font-weight: 900;

    margin-bottom: 20px;

    line-height: 1.2;

}



.hero-subtitle {

    font-size: 20px;

    max-width: 700px;

    margin: 0 auto;

    opacity: 0.95;

}



.hero-buttons {

    display: flex;

    gap: 16px;

    margin-top: 40px;

    justify-content: center;

    flex-wrap: wrap;

}



.btn {

    display: inline-block;

    padding: 16px 40px;

    border-radius: 12px;

    font-weight: 600;

    font-size: 18px;

    text-decoration: none;

    transition: all 0.3s ease;

    border: none;

    cursor: pointer;

}



.btn-primary {

    background: white;

    color: #2563eb;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}



.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}



.btn-secondary {

    background: transparent;

    color: white;

    border: 2px solid white;

}



.btn-secondary:hover {

    background: white;

    color: #2563eb;

}



/* Quick Links Section */

.quick-links {

    padding: 80px 0;

    background: #f8fafc;

}



.links-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 32px;

}



.link-card {

    background: white;

    padding: 40px;

    border-radius: 16px;

    text-decoration: none;

    color: inherit;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;

    position: relative;

}



.link-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 40px rgba(0,0,0,0.15);

}



.link-card.job-seekers {

    border-top: 5px solid #10b981;

}



.link-card.employers {

    border-top: 5px solid #2563eb;

}



.link-card.agents {

    border-top: 5px solid #8b5cf6;

}



/* Styled Icon Box (replaces emojis) */

.link-icon-box {

    width: 80px;

    height: 80px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 24px;

    font-weight: 900;

    font-size: 16px;

    letter-spacing: 1px;

}



.job-seekers .link-icon-box {

    background: linear-gradient(135deg, #d1fae5, #a7f3d0);

    color: #065f46;

}



.employers .link-icon-box {

    background: linear-gradient(135deg, #dbeafe, #bfdbfe);

    color: #1e40af;

}



.agents .link-icon-box {

    background: linear-gradient(135deg, #ede9fe, #ddd6fe);

    color: #5b21b6;

}



.icon-text {

    font-size: 18px;

    font-weight: 900;

}



.link-card h3 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 12px;

    color: #0f172a;

}



.link-card p {

    color: #64748b;

    font-size: 16px;

    line-height: 1.6;

    margin-bottom: 16px;

}



.link-arrow {

    position: absolute;

    bottom: 32px;

    right: 32px;

    font-size: 28px;

    color: #cbd5e1;

    transition: all 0.3s ease;

}



.link-card:hover .link-arrow {

    color: #2563eb;

    transform: translateX(8px);

}



/* Industries Section */

.industries {

    padding: 80px 0;

    background: white;

}



.industries-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 32px;

}



.industry-card {

    text-align: center;

    padding: 40px;

    background: #f8fafc;

    border-radius: 16px;

    transition: all 0.3s;

}



.industry-card:hover {

    background: white;

    box-shadow: 0 8px 24px rgba(0,0,0,0.1);

    transform: translateY(-4px);

}



.industry-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 24px;

    background: linear-gradient(135deg, #2563eb, #06b6d4);

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 900;

    color: white;

}



.industry-card h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 12px;

}



.industry-card p {

    color: #64748b;

    line-height: 1.6;

}



/* Why Choose Section */

.why-choose {

    padding: 80px 0;

    background: #f8fafc;

}



.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 32px;

}



.feature {

    background: white;

    padding: 40px;

    border-radius: 16px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

}



.feature-label {

    display: inline-block;

    padding: 8px 16px;

    background: linear-gradient(135deg, #2563eb, #06b6d4);

    color: white;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 16px;

}



.feature h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 12px;

}



.feature p {

    color: #64748b;

    line-height: 1.6;

}



/* Contact Section */

.contact {

    padding: 80px 0;

    background: white;

}



.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    margin-top: 48px;

}



.contact-form-container h3,

.contact-info h3 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 16px;

}



.contact-form input,

.contact-form textarea {

    width: 100%;

    padding: 14px;

    margin-bottom: 16px;

    border: 2px solid #e2e8f0;

    border-radius: 8px;

    font-size: 15px;

    font-family: inherit;

}



.contact-form input:focus,

.contact-form textarea:focus {

    outline: none;

    border-color: #2563eb;

}



.contact-form button {

    width: 100%;

}



.info-item {

    margin-bottom: 24px;

}



.info-item strong {

    display: block;

    margin-bottom: 8px;

    color: #0f172a;

}



.info-item p {

    color: #64748b;

    line-height: 1.6;

}



.job-seekers-link a {

    color: #2563eb;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s;

}



.job-seekers-link a:hover {

    color: #1e40af;

}



/* Responsive */

@media (max-width: 768px) {

    .hero-title {

        font-size: 36px;

    }

    

    .hero-subtitle {

        font-size: 16px;

    }

    

    .section-title {

        font-size: 28px;

    }

    

    .links-grid,

    .industries-grid,

    .features-grid {

        grid-template-columns: 1fr;

    }

    

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    

    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }

    

    .btn {

        width: 100%;

        text-align: center;

    }

}




/* Navigation Bar */

.navbar {

    background: white;

    box-shadow: 0 2px 12px rgba(0,0,0,0.08);

    position: sticky;

    top: 0;

    z-index: 1000;

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 70px;

}



.nav-logo {

    font-size: 22px;

    font-weight: 800;

    color: #2563eb;

    text-decoration: none;

    transition: color 0.2s;

}



.nav-logo:hover {

    color: #1e40af;

}



.nav-menu {

    display: flex;

    gap: 32px;

    align-items: center;

}



.nav-link {

    color: #334155;

    text-decoration: none;

    font-weight: 600;

    font-size: 15px;

    transition: color 0.2s;

}



.nav-link:hover {

    color: #2563eb;

}



.nav-cta {

    background: linear-gradient(135deg, #667eea, #764ba2);

    color: white;

    padding: 10px 24px;

    border-radius: 8px;

}



.nav-cta:hover {

    color: white;

    opacity: 0.9;

}



/* Mobile responsive */

@media (max-width: 768px) {

    .nav-menu {

        display: none; /* Will add hamburger menu later */

    }

}




/* Footer */

.footer {

    background: #0f172a;

    color: white;

    padding: 40px 20px;

    text-align: center;

    margin-top: 80px;

}



.footer-content p {

    margin: 8px 0;

    opacity: 0.9;

}




/* Make industry cards clickable */

.industry-card {

    text-decoration: none;

    color: inherit;

    cursor: pointer;

    position: relative;

}



.learn-more {

    display: block;

    margin-top: 16px;

    color: #2563eb;

    font-weight: 600;

    font-size: 14px;

    transition: all 0.3s;

}



.industry-card:hover .learn-more {

    transform: translateX(8px);

}



/* Industry page styles */

.industry-hero {

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    padding: 80px 20px;

    text-align: center;

}



.industry-title {

    font-size: 48px;

    font-weight: 900;

    margin-bottom: 16px;

}



.industry-subtitle {

    font-size: 20px;

    opacity: 0.95;

}



.industry-content {

    padding: 60px 0;

}



.content-grid {

    display: grid;

    grid-template-columns: 1fr 350px;

    gap: 60px;

}



.main-content h2 {

    font-size: 32px;

    font-weight: 800;

    margin: 40px 0 24px 0;

    color: #0f172a;

}



.main-content h2:first-child {

    margin-top: 0;

}



.roles-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 20px;

    margin-bottom: 40px;

}



.role-card {

    background: white;

    padding: 24px;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    border-left: 4px solid #2563eb;

}



.role-card h3 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;

    color: #0f172a;

}



.role-card p {

    color: #64748b;

    margin-bottom: 12px;

    font-size: 14px;

}



.salary {

    display: inline-block;

    padding: 6px 12px;

    background: #f0fdf4;

    color: #15803d;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

}



.benefits-list {

    list-style: none;

    padding: 0;

}



.benefits-list li {

    padding: 16px;

    background: #f8fafc;

    margin-bottom: 12px;

    border-radius: 8px;

    position: relative;

    padding-left: 48px;

}



.benefits-list li:before {

    content: "✓";

    position: absolute;

    left: 16px;

    color: #10b981;

    font-weight: 900;

    font-size: 20px;

}



.cta-box {

    background: linear-gradient(135deg, #667eea, #764ba2);

    color: white;

    padding: 40px;

    border-radius: 16px;

    text-align: center;

    margin-top: 60px;

}



.cta-box h3 {

    font-size: 28px;

    margin-bottom: 12px;

}



.cta-box p {

    font-size: 18px;

    margin-bottom: 24px;

    opacity: 0.95;

}



.sidebar {

    position: sticky;

    top: 90px;

}



.sidebar-card {

    background: white;

    padding: 28px;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    margin-bottom: 24px;

}



.sidebar-card h3 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 20px;

    color: #0f172a;

}



.stat-item {

    padding: 16px 0;

    border-bottom: 1px solid #e2e8f0;

}



.stat-item:last-child {

    border-bottom: none;

}



.stat-item strong {

    display: block;

    font-size: 32px;

    color: #2563eb;

    margin-bottom: 4px;

}



.stat-item span {

    color: #64748b;

    font-size: 14px;

}



.industry-link {

    display: block;

    padding: 12px 16px;

    background: #f8fafc;

    border-radius: 8px;

    margin-bottom: 8px;

    text-decoration: none;

    color: #0f172a;

    font-weight: 600;

    transition: all 0.2s;

}



.industry-link:hover {

    background: #2563eb;

    color: white;

}



.sidebar-card p {

    color: #64748b;

    margin-bottom: 16px;

    font-size: 14px;

}



@media (max-width: 968px) {

    .content-grid {

        grid-template-columns: 1fr;

    }

    

    .sidebar {

        position: static;

    }

    

    .roles-grid {

        grid-template-columns: 1fr;

    }

}




/* Make industry cards clickable */

.industry-card {

    text-decoration: none;

    color: inherit;

    cursor: pointer;

    position: relative;

}



.learn-more {

    display: block;

    margin-top: 16px;

    color: #2563eb;

    font-weight: 600;

    font-size: 14px;

    transition: all 0.3s;

}



.industry-card:hover .learn-more {

    transform: translateX(8px);

}



/* Industry page styles */

.industry-hero {

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    padding: 80px 20px;

    text-align: center;

}



.industry-title {

    font-size: 48px;

    font-weight: 900;

    margin-bottom: 16px;

}



.industry-subtitle {

    font-size: 20px;

    opacity: 0.95;

}



.industry-content {

    padding: 60px 0;

}



.content-grid {

    display: grid;

    grid-template-columns: 1fr 350px;

    gap: 60px;

}



.main-content h2 {

    font-size: 32px;

    font-weight: 800;

    margin: 40px 0 24px 0;

    color: #0f172a;

}



.main-content h2:first-child {

    margin-top: 0;

}



.roles-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 20px;

    margin-bottom: 40px;

}



.role-card {

    background: white;

    padding: 24px;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    border-left: 4px solid #2563eb;

}



.role-card h3 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;

    color: #0f172a;

}



.role-card p {

    color: #64748b;

    margin-bottom: 12px;

    font-size: 14px;

}



.salary {

    display: inline-block;

    padding: 6px 12px;

    background: #f0fdf4;

    color: #15803d;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

}



.benefits-list {

    list-style: none;

    padding: 0;

}



.benefits-list li {

    padding: 16px;

    background: #f8fafc;

    margin-bottom: 12px;

    border-radius: 8px;

    position: relative;

    padding-left: 48px;

}



.benefits-list li:before {

    content: "✓";

    position: absolute;

    left: 16px;

    color: #10b981;

    font-weight: 900;

    font-size: 20px;

}



.cta-box {

    background: linear-gradient(135deg, #667eea, #764ba2);

    color: white;

    padding: 40px;

    border-radius: 16px;

    text-align: center;

    margin-top: 60px;

}



.cta-box h3 {

    font-size: 28px;

    margin-bottom: 12px;

}



.cta-box p {

    font-size: 18px;

    margin-bottom: 24px;

    opacity: 0.95;

}



.sidebar {

    position: sticky;

    top: 90px;

}



.sidebar-card {

    background: white;

    padding: 28px;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    margin-bottom: 24px;

}



.sidebar-card h3 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 20px;

    color: #0f172a;

}



.stat-item {

    padding: 16px 0;

    border-bottom: 1px solid #e2e8f0;

}



.stat-item:last-child {

    border-bottom: none;

}



.stat-item strong {

    display: block;

    font-size: 32px;

    color: #2563eb;

    margin-bottom: 4px;

}



.stat-item span {

    color: #64748b;

    font-size: 14px;

}



.industry-link {

    display: block;

    padding: 12px 16px;

    background: #f8fafc;

    border-radius: 8px;

    margin-bottom: 8px;

    text-decoration: none;

    color: #0f172a;

    font-weight: 600;

    transition: all 0.2s;

}



.industry-link:hover {

    background: #2563eb;

    color: white;

}



.sidebar-card p {

    color: #64748b;

    margin-bottom: 16px;

    font-size: 14px;

}



@media (max-width: 968px) {

    .content-grid {

        grid-template-columns: 1fr;

    }

    

    .sidebar {

        position: static;

    }

    

    .roles-grid {

        grid-template-columns: 1fr;

    }

}




/* Make industry cards clickable */

.industry-card {

    text-decoration: none;

    color: inherit;

    display: block;

    cursor: pointer;

}



.industry-card:hover h3 {

    color: #2563eb;

}




/* Make industry cards clickable */

.industry-card {

    text-decoration: none;

    color: inherit;

    display: block;

    cursor: pointer;

}



.industry-card:hover h3 {

    color: #2563eb;

}

