/* Upgrade Section Styling */
.upgrade {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-top: 200px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Heading */
.upgrade h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
}

.upgrade h1 span {
    color: #007bff;
}

/* Paragraph text */
.upgrade p {
    font-size: 16px;
    margin-top: 15px;
    color: #444;
}

/* Button styling */
.find-job-btn {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(135deg, #007bff, #00a8ff);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

.find-job-btn:hover {
    background: linear-gradient(135deg, #0056d2, #007bff);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .upgrade {
        padding-top: 140px;
    }
}

@media (max-width: 600px) {
    .upgrade {
        padding-top: 120px;
    }

    .upgrade h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .upgrade p {
        font-size: 14px;
    }

    .find-job-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Core Values Section - Icon Based */
.core-values {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 70px 20px 80px;
    border-radius: 0 0 50px 50px;
    text-align: center;
    position: relative;
}

.core-values h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    width: 150px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-card p {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .core-values h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .values-grid {
        gap: 20px;
    }

    .value-card {
        width: 130px;
        padding: 25px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

    .value-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .core-values {
        border-radius: 0 0 30px 30px;
    }

    .value-card {
        width: calc(50% - 15px);
        max-width: 140px;
    }
}

/* Current Openings Section */
.openings-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

/* Heading */
.openings-section h2 {
    text-align: center;
    color: #2563eb;
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Job Cards Container */
.job-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Job Card */
.job-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* Job Title */
.job-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

/* Description */
.job-card p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Apply Button */
.apply-btn {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #2563eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
    .openings-section h2 {
        font-size: 30px;
    }

    .job-card {
        padding: 30px;
    }

    .job-card h3 {
        font-size: 20px;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    .openings-section {
        margin: 40px auto;
    }

    .job-cards-container {
        grid-template-columns: 1fr;
    }
}
