/* --- CAREER SECTION --- */
.careers-section {
    padding: 100px 50px;
    background: var(--bg); /* Matching news section */
    text-align: center;
}

.careers-container {
    max-width: 800px;
    margin: 0 auto;
}

.careers-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures all children are centered horizontally */
    text-align: center;
}

.hiring-status {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centers the text and icon horizontally */
    gap: 12px;
    background: rgba(255, 170, 0, 0.05);
    border: 1px solid rgba(255, 170, 0, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 50px; /* Increased margin to separate from LinkedIn button */
    width: fit-content; /* Prevents the box from stretching too wide */
}

.hiring-status p {
    margin: 0; /* Removes default paragraph margins that cause offset */
    line-height: 1; /* Helps with vertical centering */
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7);
    animation: pulse 2s infinite;
}

.linkedin-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0077b5; /* LinkedIn Blue */
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}

.linkedin-cta:hover {
    background: #005582;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 170, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 170, 0, 0); }
}