.main-container {
    background-color: var(--white-color);
    min-height: 100vh;
}

.energise-career-section {
    padding: 5rem 0;
}

.section-title {
    color: var(--text-title);
    margin-bottom: 2rem;
}

.section-description {
    color: var(--text-description);
}

.project-title {
    color: var(--text-title);
    margin-bottom: 2rem;
}

.content-text {
    color: var(--text-description);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.value-card {
    background: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 10px;
    min-height: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.value-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
   /*  text-transform: uppercase; */
    text-align: center;
}

.value-description {
    color: var(--text-description);
    display: flex;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    margin-bottom: 0;
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-stage-outer {
    padding: 2rem 0;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
}

.owl-carousel .owl-nav {
    margin: 0;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--white-color) !important;
    border-radius: var(--border-radius-rounded) !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -2rem;
}

.owl-carousel .owl-nav button.owl-next {
    right: -2rem;
}

.owl-carousel .owl-nav button.owl-prev.disabled {
    color: var(--text-description) !important;
    cursor: not-allowed !important;
}

.owl-carousel .owl-nav button.owl-prev.disabled:hover {
    background: var(--white-color) !important;
    color: var(--text-description) !important;
}

.owl-carousel .owl-nav button.owl-next.disabled {
    color: var(--text-description) !important;
    cursor: not-allowed !important;
}

.owl-carousel .owl-nav button.owl-next.disabled:hover {
    background: var(--white-color) !important;
    color: var(--text-description) !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 0.25rem;
}

.owl-carousel .owl-dot span {
    background: var(--text-description);
    margin: 0 !important;
    border-radius: var(--border-radius-rounded) !important;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
}

.owl-carousel .owl-dot.active:hover span {
    background: var(--primary-color) !important;
}

.owl-carousel .owl-dot:hover span {
    background-color: #9ca3af !important;
}

.job-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    color: var(--text-title);
}

.section-subtitle {
    margin: 0 auto;
    max-width: 48rem;
    color: var(--text-description);
}

.job-card {
    background: var(--white-color);
    border: 1px solid var(--light-gray-2);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-section .job-card:last-child {
    margin-bottom: 0;
}

.job-title {
    color: var(--text-title);
    margin-bottom: 0.75rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.job-meta-item {
    display: flex;
    align-items: center;
}

.job-meta-item i {
    margin-right: 0.25rem;
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
}

.job-description {
    color: var(--text-description);
    margin-bottom: 1rem;
    font-size: 1.5rem !important;
}

.requirements-title {
    color: var(--text-title);
    margin-bottom: 0.5rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    color: #6b7280;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.25rem;
}

.requirements-list li:last-child {
    margin-bottom: 0;
}

.requirements-list li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-rounded);
    margin-right: 0.75rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.department-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.badge-text {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(0, 86, 112, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius-rounded);
    margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
    .department-badge {
        text-align: end;
    }
}

/* RTL Support */

.arabic-version .job-meta-item i {
    margin-left: 0.25rem;
    margin-right: 0;
}

.arabic-version .requirements-list li::before {
    margin-left: 0.75rem;
    margin-right: 0;
}

.arabic-version .apply-btn i {
    margin-left: 0;
    margin-right: 0.5rem;
    transform: rotateY(180deg);
}

.arabic-version .owl-carousel .owl-nav button.owl-prev {
    right: -2rem !important;
    left: auto;
}

.arabic-version .owl-carousel .owl-nav button.owl-next {
    left: -2rem !important;
    right: auto;
}

.arabic-version .owl-carousel .owl-nav button.owl-prev i {
    transform: rotate(180deg) !important;
}

.arabic-version .owl-carousel .owl-nav button.owl-next i {
    transform: rotate(180deg) !important;
}

@media (max-width: 768px) {
    .arabic-version .owl-carousel .owl-nav button.owl-prev {
        right: -1rem !important;
    }

    .arabic-version .owl-carousel .owl-nav button.owl-next {
        left: -1rem !important;
    }
}

.job-card .primary-button {
    height: 47px;
}

.job-card .primary-button i {
  margin-bottom: 5px;

  font-size: 14px;
}
.arabic-version .job-card .primary-button i {

}
