/* Entire Section Background */
.open-positions-section {
    background: #1e63f0; /* Bright blue */
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Announcement Bar */
.announcement {
    background: #ffffff;
    color: #1e63f0;
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 90%;
    margin: 0 auto 40px auto; 
    text-align: left;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.announcement strong {
    font-weight: 700;
    color: #041397;
}

/* Open Positions Title */
.open-positions-content {
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
}

.open-positions-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.open-positions-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .open-positions-content h1 {
        font-size: 2.2rem;
    }

    .open-positions-content p {
        font-size: 1rem;
    }
}


.job-cards-container {
    width: 95%;
    margin: 20px auto;
}

.job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.job-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.job-card h3 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 700;
    color: #007cba;
}

.job-card p {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.5;
}

/* ----- STATUS COLOR THEMES ----- */
.job-card.open {
    border-left: 6px solid #28a745;
}

.job-card.closed {
    border-left: 6px solid #dc3545;
    background: #fdecea;
}

.job-card.filled {
    border-left: 6px solid #ffc107;
    background: #fff9e6;
}

/* ----- BUTTONS ----- */
.job-actions {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.edit-btn,
.delete-btn {
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.edit-btn {
    background: #007cba;
    color: white;
}

.detail-btn{
    background: white;
    color:#007cba;
}

.delete-btn {
    background: #dc3545;
    color: white;
}



/* FILTER BAR */
.job-filter-bar {
    width: 95%;
    margin: 20px auto;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-form input,
.filter-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    flex: 1;
    min-width: 160px;
}

.filter-form button {
    padding: 10px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.filter-form button:hover {
    background: #005f8a;
}

.reset-btn {
    padding: 10px 16px;
    background: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
}

.reset-btn:hover {
    background: #b02a37;
}





























.about-hero {
    background: url('../assets/images/2.jpg') center/cover no-repeat;
    background-color: #0a0a0a;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-section {
    padding: 60px 20px;
    background: #fafafa;
}

.about-container {
    max-width: 1100px;
    margin: auto;
}

.about-block {
    margin-bottom: 40px;
}

.about-block h2 {
    margin-bottom: 10px;
}

.about-block ul {
    padding-left: 20px;
    line-height: 1.7;
}

.about-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-btn {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.cta-btn.secondary {
    background: #444;
}

p{
    line-height: 1.5;
}