﻿body {
    margin: 0;
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    background-color: #EFFDF5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.career-container {
    padding: 3rem; /* space only at top */
    padding-bottom: 0;
    min-height: calc(90vh - 150px);
    display: flex;
    align-items: center; /* vertical center */
}

.career-heading {
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    color: #666565;
    margin-bottom: 1.5rem !important;
}

.career-text {
    margin: 0;
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    margin-top:20px;
}

.career-container h5 {
    color: #00B074;
}
@media (max-width: 768px) {
    .career-heading {
        font-size: 1.5rem;
    }

    .career-text {
        font-size: 0.95rem;
    }
}
.job-card {
    border-radius: 10px;
    background: white;
    box-shadow: 0 3px 7px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 13px rgba(0,0,0,0.2);
    }

.job-title, .apply-btn, .icon-text i {
    color: #B62E27 !important;
}

.apply-btn {
    border: none;
    padding: 6px 15px;
    border-radius: 5px;
    background-color: #B62E27;
    color: #fff !important; /* White text */
}

    .apply-btn:hover {
        background-color: #a02721;
        color: white !important;
    }

.icon-text {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.job-footer {
    border-top: 1px solid #ddd;
    padding-top: 8px;
    font-size: 0.9rem;
}
.hiring-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}