/* Careers Page Specific Styles */
.career-area {
    background-color: #f9f9f9;
}

.career-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.career-content h1 span {
    color: var(--theme-color); /* Primary brand color */
}

.career-content .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Position Cards */
.position-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--theme-color);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.position-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.position-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.position-card p i {
    margin-right: 8px;
    color: var(--theme-color);
}

/* Process Steps */
.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 30px 0;
}

.step {
    flex: 1;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--theme-color);
    z-index: -1;
}

/* Culture Section */
.culture-feature {
    text-align: center;
    padding: 20px;
}

.culture-feature i {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.culture-feature h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps-horizontal {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .step:not(:last-child):after {
        display: none;
    }
    
    .career-content h1 {
        font-size: 2rem;
    }
}

/* Button Styles */
.theme-btn {
    background: var(--theme-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
}

.theme-btn:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* List Styles */
.service-single-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.service-single-list li i {
    color: var(--theme-color);
    margin-right: 10px;
    margin-top: 3px;
}
.home-2 .site-breadcrumb {
    margin-top: -2.5rem;
}
.contact-info-icon {
    flex-shrink: 0;
}
.footer-contact li i {
    flex-shrink: 0;
}
.footer-social {
    justify-content: start;
}
.poweredby {
    float: right;
}