body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f6f6f6;
}

/* Header */
.career-header {
    text-align: center;
    padding: 40px 20px;
    background: #002147;
    color: white;
}

.career-header h1 {
    margin: 0;
    font-size: 34px;
}

/* Search Bar */
.search-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 25px auto;
    position: relative;
}

.search-wrapper input {
    width: 100%;
    padding: 14px 18px;
    padding-left: 45px;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.search-wrapper input:focus {
    border-color: #002147;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 18px;
    transform: translateY(-50%);
    color: #555;
}

/* Layout Grid */
.career-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.career-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    
}



/* Icons */
.job-icon {
    font-size: 45px;
    color: #002147;
    margin-bottom: 15px;
}

/* Apply Button */
.apply-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    border-radius: 8px;
    background: #002147;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.25s ease;
}

.apply-btn:hover {
    background: #014a8f;
}
