:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --primary-light: #a0cfee;
    --secondary-color: #2c3e50;
    --secondary-dark: #1a252f;
    --accent-color: #3498db;
    --accent-dark: #2980b9;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --text-lighter: #bdc3c7;
    --light-gray: #f8f9fa;
    --medium-gray: #ecf0f1;
    --dark-gray: #34495e;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 8px 20px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #3498db, #2980b9);
    --gradient-secondary: linear-gradient(135deg, #2c3e50, #3498db);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    transition: background 0.3s, box-shadow 0.3s;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-container h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

nav a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.15);
}

.hero {
    min-height: 80vh;
    background: linear-gradient(120deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 152, 219, 0.5) 100%), url('img/welcome.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(4px);
    animation: fadeInUp 1.2s cubic-bezier(.39, .575, .565, 1) both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.10);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.18);
    background: var(--primary-dark);
}

.job-opportunities {
    padding: 5rem 2rem 3rem 2rem;
    background: linear-gradient(120deg, #f8f9fa 60%, #eaf3fa 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.job-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-large);
}

.job-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #f5f5f5;
    padding: 18px 10px 10px 10px;
    border-bottom: 1px solid #eaeaea;
}

.job-info {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.job-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.job-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.job-action {
    margin-top: auto;
}

.job-action .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

footer {
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
    padding: 2.5rem 1rem 1.2rem 1rem;
    box-shadow: var(--shadow);
    position: relative;
}

.footer-social {
    margin-bottom: 1rem;
}

.footer-social a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

.mission-vision-section {
    background: linear-gradient(120deg, #f8f9fa 60%, #eaf3fa 100%);
    padding: 3rem 1rem 2rem 1rem;
    margin-top: 0;
    box-shadow: var(--shadow);
}

.mv-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
}

.mv-block {
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    height: 100%;
}

.mission-block {
    grid-column: 2;
}

.vision-block {
    grid-column: 1;
}

.mv-quote-carousel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
    position: relative;
}

.carousel-images {
    position: relative;
    width: 650px;
    max-width: 90vw;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.carousel-img.active {
    opacity: 1;
    z-index: 2;
    display: block;
}

.carousel-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 3;
}

.carousel-btn:hover {
    background: var(--primary-dark);
}

.mv-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.mv-title::before {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
    display: inline-block;
}

.mission-block .mv-title::before {
    content: '\f135';
}

.mv-text {
    color: var(--text-color);
    font-size: 1.05rem;
    text-align: left;
    line-height: 1.9;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mission-text p {
    margin-bottom: 1.3rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.85;
    text-align: justify;
}

.mission-text p::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-size: 0.85rem;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.vision-block .mv-text {
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.9;
}

@media (max-width: 1024px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-block,
    .vision-block {
        grid-column: 1;
        min-height: auto;
    }

    .mv-block {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .mv-container {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .mv-block {
        padding: 1.5rem 1rem;
    min-height: auto;
    height: auto;
    min-height: auto;
    min-height: auto;
    min-height: auto;
        min-height: auto;
    }

    .hero-content {
        padding: 1.2rem 0.5rem;
    }

    .mv-title {
        font-size: 1.5rem;
    }

    .mission-text p {
        font-size: 0.95rem;
        line-height: 1.75;
        padding-left: 1.5rem;
    }

    .vision-block .mv-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 700px) {
    .carousel-images {
        width: 98vw;
        height: 180px;
    }
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1200;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18);
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, opacity 0.3s;
    opacity: 0.85;
}

#backToTop:hover {
    background: var(--primary-dark);
    opacity: 1;
}

#backToTop i {
    pointer-events: none;
}

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(120deg, #f8f9fa 60%, #eaf3fa 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3.5rem;
}

.about-intro {
    margin-bottom: 3rem;
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 0 1rem;
    position: relative;
}

.intro-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--medium-gray);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.highlight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.services-section {
    margin-bottom: 3rem;
}

.services-section h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--medium-gray);
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--light-gray);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.detail-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.detail-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.detail-item p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1.5rem;
    }

    .intro-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        padding-left: 1.2rem;
    }

    .intro-paragraph::before {
        width: 3px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .company-details {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(120deg, #eaf3fa 60%, #f8f9fa 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

.email-list {
    width: 100%;
    text-align: left;
}

.email-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.email-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.email-label {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.email-address {
    color: var(--primary-color);
    font-size: 1rem;
    word-break: break-all;
    margin-bottom: 0.3rem;
}

.email-location {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .email-list {
        text-align: center;
    }
}

.action-buttons-section {
    padding: 4rem 2rem;
    background: white;
    position: relative;
    z-index: 2;
}

.action-container {
    max-width: 1200px;
    margin: 0 auto;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.action-btn {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.action-btn i {
    font-size: 2.5rem;
    color: white;
}

.action-btn span {
    font-size: 1.5rem;
    font-weight: 600;
}

.action-btn p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .action-buttons {
        grid-template-columns: 1fr;
    }
}

.main-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-social {
    margin-bottom: 0.5rem;
}

.footer-social a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-info {
    font-size: 0.8rem;
    opacity: 0.9;
}

.footer-info p {
    margin: 0.2rem 0;
}

.nav-login-btn {
    background: var(--primary-color);
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.3s !important;
}

.nav-login-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.nav-login-btn i {
    font-size: 0.9rem;
}

/* Manpower Jobs Section */
.manpower-jobs-section {
    padding: 5rem 2rem;
    background: linear-gradient(120deg, #f8f9fa 60%, #eaf3fa 100%);
}

.manpower-container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-categories {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.job-category {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.job-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-list li {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 2;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s, transform 0.2s;
}

.job-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.job-list li:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Corporate Info Section */
.corporate-info-section {
    padding: 5rem 2rem;
    background: linear-gradient(120deg, #eaf3fa 60%, #f8f9fa 100%);
}

.corporate-container {
    max-width: 1200px;
    margin: 0 auto;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.corporate-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.corporate-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid var(--light-gray);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 0.85rem;
}

.info-list li:hover {
    color: var(--primary-dark);
    padding-left: 2rem;
    transition: padding-left 0.2s;
}

@media (max-width: 768px) {
    .manpower-jobs-section,
    .corporate-info-section {
        padding: 3rem 1.5rem;
    }

    .job-category,
    .corporate-card {
        padding: 1.5rem;
    }

    .job-category h3,
    .corporate-card h3 {
        font-size: 1.2rem;
    }

    .job-list li,
    .info-list li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .corporate-grid {
        grid-template-columns: 1fr;
    }
}