.page-title {
    text-align: center;
    font-size: 32px;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 40px;
    text-decoration: underline;
    text-decoration-color: #CC0000;
    text-underline-offset: 8px;
}

.career-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.career-text {
    flex: 2;
    min-width: 300px;
}

.career-text p {
    margin-bottom: 20px;
    font-size: 15px;
}

/* Job List Styling */
.job-list {
    margin: 30px 0;
    border-top: 2px solid #eee;
    padding-top: 10px;
}

.job-item {
    background-color: #003366;
    color: white;
    padding: 12px 20px;
    margin-bottom: 2px; /* Small gap to look like rows */
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.job-item i {
    margin-right: 15px;
}

.email-info {
    margin-top: 25px;
    font-size: 16px;
}

.apply-btn {
    background-color: #CC0000;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.apply-btn:hover {
    background-color: #003366;
}

/* Sidebar Call Box */
/* SIDEBAR FIX */
.career-sidebar {
    flex: 1;
    display: flex;
    align-items: flex-start; /* Align to top */
    justify-content: center;
}

/* PERFECT HORIZONTAL PILL */
.call-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    background: #f4f8fb;
    border-radius: 50px; /* pill shape */
    
    padding: 12px 18px;
    width: 320px;   /* increase width */
    height: auto;   /* remove tall height */
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

/* ICON FRONT */
/* ICON CONTAINER */
.call-icon {
    background: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* IMAGE INSIDE ICON */
.call-img {
    width: 24px;
    height: 24px;
}

/* TEXT */
.call-details span {
    font-size: 13px;
    color: #e60000;
}

.call-details strong {
    font-size: 18px;
    color: #e60000;
    font-weight: 700;
}

/* HOVER EFFECT */
.call-box:hover {
    transform: translateY(-2px);
    transition: 0.3s;
}
.call-icon {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(230, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 0, 0); }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .career-content {
        flex-direction: column;
    }
}
/* New styles for the hidden description and table */
.job-wrapper {
    margin-bottom: 5px;
}

.job-item {
    cursor: pointer;
    transition: background 0.3s ease;
}

.job-item:hover {
    background-color: #3498db; /* Darker blue on hover */
}

.job-item i {
    transition: transform 0.3s ease;
}

.job-description-content {
    display: none; /* Hidden by default */
    background-color: #ffffff;
    border: 1px solid #5dade2;
    padding: 20px;
    margin-bottom: 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.spec-table td {
    border: 1px solid #d6eaf8;
    padding: 12px;
    vertical-align: top;
    color: #333;
}

.spec-table td:first-child {
    background-color: #ebf5fb;
    font-weight: bold;
    width: 30%;
    color: #003366;
}

.spec-table ul {
    margin: 0;
    padding-left: 20px;
}
.sector-title {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #003366;
    border-left: 5px solid #CC0000;
    padding-left: 12px;
    background: #f4f8fb;
    padding-top: 8px;
    padding-bottom: 8px;
}
