﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: #f8fdf5;
    color: #2d3a2d;
    line-height: 1.7;
}

/* Hero Section */
.hero {
 
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(45,90,45,0.85) 0%, rgba(76,143,76,0.75) 50%, rgba(144,190,109,0.65) 100%), url('images/chemical1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.25);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Leaf decoration */
.leaf-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.12;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23fff' d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 90C27.9 90 10 72.1 10 50S27.9 10 50 10s40 17.9 40 40-17.9 40-40 40z'/%3E%3C/svg%3E") center/contain no-repeat;
}

    .leaf-decor.l1 {
        top: -50px;
        right: -80px;
        transform: rotate(25deg);
        width: 350px;
    }

    .leaf-decor.l2 {
        bottom: -30px;
        left: -60px;
        transform: rotate(-15deg);
    }

/* Sections */
.section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom:0px !important;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #2d5a2d;
    position: relative;
    display: inline-block;
    width: 100%;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, #90be6d, #43aa8b);
        margin: 14px auto 0;
        border-radius: 2px;
    }

.section-desc {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 56px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Industry Overview */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.overview-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 24px rgba(67,170,139,0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(144,190,109,0.12);
    position: relative;
    overflow: hidden;
}

    .overview-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, #90be6d, #43aa8b, #52b788);
        border-radius: 20px 20px 0 0;
    }

    .overview-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(67,170,139,0.15);
    }

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

    .card-icon.c1 {
        background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
    }

    .card-icon.c2 {
        background: linear-gradient(135deg, #cce3de, #a8dadc);
    }

    .card-icon.c3 {
        background: linear-gradient(135deg, #fefae0, #faedcd);
    }

    .card-icon.c4 {
        background: linear-gradient(135deg, #ede0d4, #e6ccb2);
    }

.overview-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1b4332;
}

.overview-card .num {
    font-size: 2rem;
    font-weight: 700;
    color: #2d6a4f;
}

.overview-card p {
    font-size: 0.92rem;
    color: #52796f;
    margin-top: 8px;
}

/* Companies Section */
.companies-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 100px 0%;
    margin-top: 0;
}

.company-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 10px;
    width: 1160px;
    margin: auto;
}

.company-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(134,169,133,0.15);
    cursor: pointer;
    width: 380px;
}

    .company-item:hover {
        box-shadow: 0 8px 32px rgba(67,170,139,0.12);
        transform: translateX(6px);
        border-color: rgba(144,190,109,0.35);
    }

.company-info h4 {
    font-size: 1rem;
    color: #1b4332;
    font-weight: 500;
    margin-bottom: 4px;
}

.company-info span {
    font-size: 13px;
    color: #74c69d;
}

.company-jobs {
    font-size: 1.4rem;
    font-weight: 700;
    color: #40916c;
    white-space: nowrap;
}

.view-all-btn {
    display: block;
    margin: 44px auto 0;
    padding: 14px 48px;
    background: linear-gradient(135deg, #52b788, #40916c);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(64,145,108,0.25);
}

    .view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(64,145,108,0.35);
    }

/* Jobs Section */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.job-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #2d5a2d;
    border: 1px solid #d8f3dc;
    transition: all 0.25s;
}

    .job-tag:hover {
        background: #f0fdf4;
        border-color: #90be6d;
        transform: scale(1.02);
    }

.job-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.job-count {
    margin-left: auto;
    font-weight: 700;
    color: #40916c;
    font-size: 0.88rem;
}

/* Location Map */
.location-section {
    background: #fff;
    border-radius: 28px;
    padding: 60px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.04);
}

.location-bars {
    margin-top: 32px;
}

.loc-bar-item {
    margin-bottom: 22px;
}

.loc-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

    .loc-bar-header span {
        font-size: 0.95rem;
        color: #2d5a2d;
        font-weight: 500;
    }

    .loc-bar-header strong {
        color: #40916c;
    }

.loc-bar {
    height: 12px;
    border-radius: 6px;
    background: #e8f5e9;
    overflow: hidden;
    position: relative;
}

.loc-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(to right, #95d5b2, #52b788, #40916c);
    transition: width 1s ease;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
    text-align: center;
    color: #fff;
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
    }

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 16px;
        position: relative;
    }

    .cta-section p {
        opacity: 0.85;
        font-size: 1.05rem;
        margin-bottom: 36px;
        position: relative;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    border: none;
    font-weight: 500;
}

    .cta-btn.primary {
        background: #fff;
        color: #1b4332;
    }

        .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.2);
        }

    .cta-btn.secondary {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,0.4);
    }

        .cta-btn.secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
        }

/* Footer */
footer {
    text-align: center;
    padding: 36px;
    color: #74c69d;
    font-size: 0.88rem;
    background: #f0fdf4;
}

/* Scroll animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}
.footer{
    display:none;
}
a {
    text-decoration: none;
}

@media (max-width: 768px) {

    /* Companies Section */
    .companies-section {
       
        padding: 100px 5%;
        
    }

    .company-list {
        
        gap: 10px;
      width:auto;
    }

    .company-item {
  
        width: auto;
    }

    .location-section {
    padding:30px;
    }
}
