/* ==========================================================================
   Career Page Styling
   ========================================================================== */


.career-wrapper {
    position: relative;
    padding: 100px 0 80px;
    margin: 0;
    background-color: #f8f9fc;
    background-image: 
        /* Top-Left Ambient Brand Orange Glow */
        radial-gradient(circle at 10% 15%, rgba(253, 126, 20, 0.08) 0%, transparent 45%),
        
        /* Bottom-Right Ambient Warm Yellow Glow */
        radial-gradient(circle at 90% 85%, rgba(255, 228, 104, 0.15) 0%, transparent 40%),
        
        /* Geometric Tech Dot Matrix Pattern */
        radial-gradient(circle, rgba(39, 38, 48, 0.07) 1.5px, transparent 1.5px);
        
    background-size: 100% 100%, 100% 100%, 28px 28px;
    background-position: 0 0, 0 0, 0 0;
}

/* Left Form Container */
.career-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: var(--bs-gray-dark);
}

.card-heading {
    color: var(--bs-dark);
    font-family: var(--bs-font-sans-serif);
    font-weight: 700;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--bs-primary);
    display: inline-block;
    padding-bottom: 6px;
}

/* Form Input Enhancements */
.custom-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fdfdfd;
}

.custom-input:focus {
    border-color: var(--bs-orange);
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.15);
    background-color: #ffffff;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--bs-orange) 0%, #e65100 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e65100 0%, var(--bs-orange) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(253, 126, 20, 0.45);
}

/* Right Side: Why Join Us Container */
.why-join-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.why-join-title {
    color: var(--bs-dark);
    font-size: 1.45rem;
    letter-spacing: 0.5px;
}

/* Feature Items */
.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--bs-orange), #ff9800);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(253, 126, 20, 0.3);
}

.feature-text h5 {
    color: var(--bs-dark);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.feature-text p {
    color: var(--bs-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-item {
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #efefef;
}

.feature-item:last-child {
    border-bottom: none;
}

/* Bottom Highlight CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--bs-orange) 0%, #e65100 100%);
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.35);
}

.cta-banner h4 {
    letter-spacing: 1px;
    line-height: 1.3;
    font-size: 1.25rem;
}

/* Responsive Handling */
@media (max-width: 991.98px) {
    .career-wrapper {
        padding: 60px 0 50px;
    }
    
    .career-card, .why-join-card {
        padding: 1.75rem 1.25rem;
    }
}