
.career-hero {
    background:
        linear-gradient(rgba(8, 36, 74, .85), rgba(8, 36, 74, .85)),
        url('../images/contact-banner.webp');
    background-size: cover;
    background-position: center;
    padding: 200px 0 100px;
}

.career-hero h1 {
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    font-family: "Playfair", serif;
}

.career-hero p {
    color: #ddd;
}

/* Main Content Styling */
.main-content {
    padding: 60px 0;
}

.details-img {
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-title {
    color: #0d1b2a;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.service-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #dfa128;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: #1b263b;
    line-height: 1.8;
    border-left: 4px solid #dfa128;
    padding-left: 20px;
    margin-bottom: 25px;
}

.content-p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 20px;
}

/* Sidebar Styling */
.sidebar-widget {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #ededed;
    background: #6b7381;
}

.widget-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.sidebar-links list-group-item {
    border: none;
    padding: 12px 0;
    font-size: 15px;
}

.sidebar-links .border-bottom{
    border-bottom: 1px dashed #7e8693 !important;
}

.sidebar-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.sidebar-links a:hover {
    color: #dfa128;
    padding-left: 5px;
}

.cta-widget {
    background-color: #1b263b;
    color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
}

.cta-widget h4 {
    color: #dfa128;
    font-weight: 600;
    margin-bottom: 15px;
}