/* Global Styles */
:root {
    --primary-color: #00A99D;
    /* Teal color from screenshot */
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --font-main: "DM Sans", "DM Sans Placeholder", sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    /* Center content */
}

.header.scrolled {
    top: 10px;
    width: 95%;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 40px;
    /* Logo styling */
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
}

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

.arrow {
    font-size: 12px;
    margin-left: 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #008f85;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/Pakistani_professionals_working_2k_2026012817.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional: parallax effect */
    display: flex;
    align-items: center;
    padding-left: 10%;
}

/* Fallback if image fails */
.hero {
    background-color: #e0e0e0;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    /* The blue dot */
    border-radius: 50%;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-white {
    background-color: var(--white);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 80px 0 40px;
    border-top: none;
    /* Removing previous top border if any */
}

.footer-content {
    width: 100%;
}

.footer-top-section {
    text-align: center;
    padding-bottom: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    /* Dark divider as shown in image */
    opacity: 1;
    margin-bottom: 60px;
}

.footer-bottom-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links-row {
    display: flex;
    justify-content: space-between;
    /* Spread Menu and Contact far apart */
    margin-bottom: 80px;
}

.footer-column {
    flex: 1;
}

/* Align Menu to slightly left-center and Contact to right-center if needed, 
   or just space-between. Based on image, they look fairly spread. 
   Let's create a visual gap. */
.footer-column:first-child {
    padding-right: 20px;
    text-align: left;
    /* Menu items */
}

.footer-column:last-child {
    padding-left: 20px;
    text-align: left;
    /* Contact items */
    max-width: 400px;
    /* Limit width of contact info */
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a,
.footer-column p {
    color: var(--text-light);
    font-size: 16px;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 40px;
}


/* Mission Section */
.mission {
    padding: 100px 20px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    text-align: center;
}

.mission-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mission-icon img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.mission-text {
    color: var(--primary-color);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-text {
    flex: 1;
    max-width: 450px;
}

.contact-text .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    /* Dark grey/greenish hue from image */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text .square-dot {
    width: 10px;
    height: 10px;
    background-color: #2F4F2F;
    /* Dark green square */
    display: inline-block;
}

.contact-text h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a3c34;
    /* Dark green/black color */
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #1a3c34;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--text-color);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    color: #555;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.btn-submit {
    background-color: #88c7c2;
    /* Muted teal color from image */
    color: var(--white);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

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

.btn-submit.active {
    background-color: #1a3c34;
    /* Dark green when active/filled */
}

.btn-submit.active .arrow {
    color: #1a3c34;
}

.btn-submit .arrow {
    background-color: var(--white);
    color: #88c7c2;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
}

/* Responsive Styles Update */
@media (max-width: 768px) {
    .header {
        width: 95%;
        padding: 10px 15px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        gap: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        padding: 20px;
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        gap: 20px;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        /* Ensure ul is visible when parent is active */
    }

    .nav-menu .btn-primary {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-column:first-child,
    .footer-column:last-child {
        text-align: center;
        padding: 0;
        max-width: 100%;
    }

    .mission {
        padding: 60px 20px;
    }

    .mission-text {
        font-size: 22px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    .contact-text h2 {
        font-size: 36px;
    }
}

/* Career Openings Section */
.openings-section {
    padding: 120px 0 80px;
    /* Top padding accounts for fixed header */
    background-color: var(--bg-light);
}

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

.openings-header {
    text-align: center;
    margin-bottom: 40px;
}

.openings-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.openings-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Search Bar */
.job-search-bar {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    border: 1px solid #eee;
}

.search-input {
    flex: 2;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
}

.search-divider {
    width: 1px;
    height: 30px;
    background-color: #eee;
    margin: 0 10px;
}

.location-select {
    flex: 1.5;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    color: #666;
    background-color: transparent;
    cursor: pointer;
}

.btn-search {
    background-color: var(--primary-color);
    /* Dark brand color as requested/implied context */
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
    /* Added gap */
}

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

/* Job List */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

/* Optional: remove border from last item */
.job-item:last-child {
    border-bottom: none;
}

.job-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2F4F2F;
    /* Slightly darker green for titles */
    margin-bottom: 5px;
}

.job-info p {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-icon {
    font-size: 12px;
    opacity: 0.7;
}

.btn-apply {
    background-color: var(--primary-color);
    /* Matching the search button/dark brand theme */
    color: var(--white);
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .job-search-bar {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .search-divider {
        display: none;
    }

    .search-input,
    .location-select,
    .btn-search {
        width: 100%;
        border: 1px solid #eee;
        border-radius: 6px;
    }

    .btn-search {
        margin-top: 10px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--bg-light);
    /* Light grey background for section */
}

.wcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.wcu-header .section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wcu-header .square-dot {
    width: 10px;
    height: 10px;
    background-color: #1a3c34;
    /* Dark brand color */
    display: inline-block;
}

.wcu-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a3c34;
}

.wcu-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    align-items: stretch;
    /* Stretch to allow sticky container full height */
}

.wcu-image-container {
    flex: 1;
    position: relative;
    /* Sticky container for image */
}

.wcu-sticky-image {
    position: sticky;
    top: 120px;
    /* Offset from top */
    height: 600px;
    /* Set a height or max-height */
    border-radius: 20px;
    overflow: hidden;
}

.wcu-sticky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Gap between cards logic, but sticky overrides visual gap */
    padding-bottom: 100px;
    /* Extra scrolling space */
}

.wcu-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 150px;
    /* Base sticky top */
    /* Stacking logic via nth-child below */
    margin-bottom: 40px;
    /* Space to see card below before it sticks */
    min-height: 250px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Stacking effect: Each card sticks slightly lower than the previous one, or same spot to overlay */
/* If "1 card should comes on other", typically they stick at the same top offset and cover the previous one. */

.wcu-card:nth-child(1) {
    top: 150px;
}

.wcu-card:nth-child(2) {
    top: 170px;
}

.wcu-card:nth-child(3) {
    top: 190px;
}

.wcu-card:nth-child(4) {
    top: 210px;
}

.wcu-card:nth-child(5) {
    top: 230px;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 40px;
    height: 40px;
    /* Use filter to make icons green if they aren't already */
    filter: invert(33%) sepia(35%) saturate(836%) hue-rotate(106deg) brightness(93%) contrast(89%);
    /* This filter approximates a dark green color */
}

.wcu-card h3 {
    font-size: 24px;
    color: #1a3c34;
    margin-bottom: 15px;
    font-weight: 700;
}

.wcu-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .wcu-content {
        flex-direction: column;
    }

    .wcu-image-container,
    .wcu-cards-container {
        width: 100%;
    }

    .wcu-sticky-image {
        position: static;
        height: 400px;
        margin-bottom: 40px;
    }

    .wcu-sticky-image {
        position: static;
        height: 400px;
        margin-bottom: 40px;
    }
}

/* Recruitment Solutions Section */
.recruitment-solutions {
    padding: 100px 0;
    background-color: var(--white);
}

.rs-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    align-items: stretch;
    /* Stretch for sticky height */
}

.rs-text-container {
    flex: 1;
    position: relative;
    /* Sticky container */
}

.rs-sticky-text {
    position: sticky;
    top: 150px;
    /* Offset from top */
    padding-right: 20px;
}

.rs-sticky-text .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    /* Dark brand color or grey */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rs-sticky-text .square-dot {
    width: 10px;
    height: 10px;
    background-color: #1a3c34;
    /* Dark brand color */
    display: inline-block;
}

.rs-sticky-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rs-sticky-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}

.rs-cards-container {
    flex: 1.2;
    /* Slightly wider for cards */
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 100px;
}

.rs-card {
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    /* Sticky top */
    height: 400px;
    /* Fixed height for consistent look */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    /* Text at bottom */
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    /* Space for scroll effect */
}

/* Stacking effect */
.rs-card:nth-child(1) {
    top: 120px;
}

.rs-card:nth-child(2) {
    top: 140px;
}

.rs-card:nth-child(3) {
    top: 160px;
}

.rs-card:nth-child(4) {
    top: 180px;
}

.rs-card-info {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    position: relative;
}

.rs-card-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 10px;
}

.rs-card-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-right: 40px;
    /* Space for arrow */
}

.rs-card-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    background-color: #1a3c34;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
    .rs-content {
        flex-direction: column;
    }

    .rs-text-container,
    .rs-cards-container {
        width: 100%;
        flex: auto;
    }

    .rs-sticky-text {
        position: static;
        margin-bottom: 40px;
        padding-right: 0;
    }

    .rs-card {
        height: 350px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    /* border-radius: 20px; Removed for full width */
    margin: 0 0 100px 0;
    /* Full width means no side margins. Keep bottom margin? Or just use padding? Let's use margin-bottom for spacing before footer. */
    width: 100%;
    /* Ensure full width */
    /* max-width: 1400px; Removed */
    /* margin-left: auto; Removed */
    /* margin-right: auto; Removed */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    /* Align card to left */
    padding-left: 40px;
}

.cta-text-card {
    background-color: var(--white);
    padding: 60px;
    border-radius: 16px;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-text-card .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text-card .square-dot {
    width: 10px;
    height: 10px;
    background-color: #1a3c34;
    display: inline-block;
}

.cta-text-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-text-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-section {
        margin: 15px;
        padding: 40px 20px;
        min-height: auto;
        width: 93%;
    }

    .cta-container {
        padding-left: 0;
        justify-content: center;
    }

    .cta-text-card {
        width: 100%;
        padding: 30px;
    }

    .cta-text-card h2 {
        font-size: 32px;
    }
}

/* Employer Page Sections */
.employer-intro {
    padding: 100px 20px;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3c34;
    line-height: 1.2;
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-custom {
    display: inline-block;
    background-color: #6d2e36;
    /* Matching the reddish button in screenshot */
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-custom:hover {
    background-color: #5a252c;
    transform: translateY(-2px);
}

.employer-features {
    padding: 60px 20px 100px 20px;
    background-color: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-card {
    text-align: left;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

@media (max-width: 900px) {
    .intro-container {
        flex-direction: column;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    /* Light gray background */
    padding: 60px 20px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #444;
    /* Dark gray for numbers */
    line-height: 1;
}

.stat-desc {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .stat-item {
        justify-content: flex-start;
        width: 200px;
    }
}

/* Services Showcase Section */
.services-showcase {
    padding: 100px 20px;
    background-color: var(--white);
}

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

.services-showcase .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 80px;
    line-height: 1.2;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #1a3c34;
    border-radius: 30px;
    color: #1a3c34;
    font-weight: 600;
    font-size: 14px;
    background-color: transparent;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: #1a3c34;
    color: var(--white);
}

@media (max-width: 900px) {
    .service-row {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-image {
        width: 100%;
    }

    .services-showcase .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Industries Section */
.industries-section {
    padding: 100px 20px;
    background-color: #f4f8f7;
    /* Very light teal/gray tint */
}

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

.industries-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 60px;
    line-height: 1.2;
}

.industries-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.industries-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industries-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.industries-list li:last-child {
    border-bottom: none;
}

.check-icon {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 18px;
}

@media (max-width: 768px) {
    .industries-list-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .industries-list li {
        font-size: 15px;
    }
}

/* Application Popup Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--black);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* Left Side - Job Description */
.modal-left {
    padding: 40px;
    background-color: #f9f9f9;
    border-right: 1px solid #eee;
    overflow-y: auto;
}

.modal-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a3c34;
}

.job-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.job-description-scroll h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a3c34;
}

.job-description-scroll p,
.job-description-scroll ul {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.job-description-scroll ul {
    list-style: disc;
    padding-left: 20px;
}

/* Right Side - Form */
.modal-right {
    padding: 40px;
    background-color: var(--white);
    overflow-y: auto;
}

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="url"],
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 14px;
    transition: var(--transition);
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.1);
}

.application-form textarea {
    resize: vertical;
}

/* File Input Styling */
.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #f9f9f9;
    /* Light grey background */
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.file-input-wrapper:hover {
    background-color: #f0f0f0;
    border-color: var(--primary-color);
}

.file-input-wrapper input[type="file"] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.file-text {
    margin: 0;
    font-size: 15px;
    color: #666;
    pointer-events: none;
    /* Ensure clicks pass through if needed, though input is on top */
}

.browse-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    flex-direction: row;
    /* Center vertically */
    gap: 12px;
    margin-top: 10px;
}

.checkbox-group input {
    width: auto !important;
    /* Prevent 100% width from generic input rule if any */
    margin: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-weight: 400;
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
    /* Remove generic label margin */
    line-height: 1.4;
    cursor: pointer;
    display: inline-block;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Modal */
@media (max-width: 900px) {
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .modal-content {
        grid-template-columns: 1fr;
        display: block;
        /* Allow stacking */
    }

    .modal-left,
    .modal-right {
        padding: 20px;
        overflow-y: visible;
        /* Let whole modal scroll */
    }

    .modal-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        color: #333;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.faq-container .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #1a3c34;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a3c34;
    margin: 0;
}

.toggle-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 10px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust according to content */
}