:root {
    --primary-dark: #b83737;
    --primary-orange: #b83737;
    --primary-orange-light: #b83737;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e9f0;
    --shadow: 0 10px 30px rgba(26, 43, 76, 0.1);
    --shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.15);
}

/* Hero Section */
.career-detail-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #b83737 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .career-detail-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../Content/Home/img/backgroundcareers1.png') center/cover;
        opacity: 0.1;
        mix-blend-mode: overlay;
    }

    .career-detail-hero::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

@@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    .hero-content .breadcrumb-custom {
        background: transparent;
        padding: 0;
        margin: 0;
    }

        .hero-content .breadcrumb-custom li {
            display: inline-block;
            color: rgba(255,255,255,0.8);
            font-size: 16px;
        }

            .hero-content .breadcrumb-custom li a {
                color: var(--white);
                text-decoration: none;
            }

            .hero-content .breadcrumb-custom li.active {
                color: var(--primary-orange);
            }

            .hero-content .breadcrumb-custom li + li:before {
                content: '›';
                padding: 0 10px;
                color: rgba(255,255,255,0.5);
            }

/* Main Content */
.career-detail-main {
    padding: 60px 0;
    background: var(--bg-light);
}

/* Job Info Card */
.job-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .job-info-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--primary-orange);
    }

.job-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.job-icon {
    FONT-SIZE: 45PX;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), #b83737);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

    .job-icon img {
        width: 45px;
        height: 45px;
        filter: brightness(0) invert(1);
    }

.job-title-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.job-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Job Meta Grid */
.job-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .meta-item:hover {
        background: linear-gradient(135deg, var(--primary-dark), #b83737);
        transform: translateY(-3px);
    }

        .meta-item:hover,
        .meta-item:hover .meta-content * {
            color: var(--white) !important;
        }

.meta-icon {
    color: #b83737;
}

.meta-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-orange);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.meta-content h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 400;
}

.meta-content p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

/* Content Sections */
.content-section {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-orange);
    display: inline-block;
}

    .section-title i {
        color: var(--primary-orange);
        margin-right: 10px;
    }

.description-content {
    color: var(--text-dark);
    line-height: 1.8;
}

    .description-content p {
        margin-bottom: 20px;
        font-size: 16px;
        color: var(--text-light);
    }

    .description-content strong {
        color: var(--primary-dark);
    }

/* List Styling */
.custom-list {
    list-style: none;
    padding: 0;
}

    .custom-list li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        color: var(--text-light);
        border-bottom: 1px dashed var(--border-color);
    }

        .custom-list li:last-child {
            border-bottom: none;
        }

        .custom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-weight: bold;
            font-size: 18px;
        }

/* Application Form */
.application-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 30px;
}

.application-header {
    text-align: center;
    margin-bottom: 30px;
}

    .application-header h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 10px;
    }

    .application-header p {
        color: var(--text-light);
        font-size: 14px;
    }

.form-group-custom {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

    .form-control-custom:focus {
        border-color: var(--primary-orange);
        outline: none;
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
        background: var(--white);
    }

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .file-upload-area:hover {
        border-color: var(--primary-orange);
        background: rgba(255, 107, 53, 0.02);
    }

    .file-upload-area i {
        font-size: 40px;
        color: var(--primary-orange);
        margin-bottom: 10px;
    }

    .file-upload-area p {
        color: var(--text-light);
        margin: 0;
        font-size: 14px;
    }

    .file-upload-area small {
        color: #999;
        font-size: 12px;
    }

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }

    .btn-submit i {
        transition: transform 0.3s ease;
    }

    .btn-submit:hover i {
        transform: translateX(5px);
    }

/* Related Jobs */
.related-jobs {
    margin-top: 50px;
}

.related-job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .related-job-item:hover {
        border-color: var(--primary-orange);
        transform: translateX(5px);
        box-shadow: var(--shadow);
    }

.related-job-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.related-job-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

    .related-job-info p i {
        color: var(--primary-orange);
        margin-right: 5px;
    }

.related-job-link {
    color: var(--primary-orange);
    font-size: 20px;
    transition: transform 0.3s ease;
}

    .related-job-link:hover {
        transform: translateX(5px);
    }

/* Responsive */
@@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .job-meta-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        text-align: center;
    }

    .job-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .application-card {
        margin-top: 30px;
        position: static;
    }
}



















/* Modern Card Design */
:root {
    --primary-color: #b83737;
    --secondary-color: #b83737;
    --accent-color: #4cc9f0;
    --dark-color: #1e1e2f;
    --light-color: #f8f9fa;
    --success-color: #06d6a0;
    --warning-color: #ffd166;
    --danger-color: #ef476f;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.career-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(67, 97, 238, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .career-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        border-color: var(--primary-color);
    }

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.card-header {
    font-size: 27px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px 20px;
    /*text-align: center;*/
    position: relative;
    overflow: hidden;
}

    .card-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
        animation: rotate 10s linear infinite;
    }

@@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-header img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-body {
    padding: 25px;
    flex-grow: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

    .card-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
    }

.card-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .card-details li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #555;
        font-size: 15px;
        padding: 8px 12px;
        background: var(--light-color);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .card-details li:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transform: translateX(5px);
        }

        .card-details li i {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            margin-right: 12px;
            color: var(--primary-color);
            font-size: 16px;
            box-shadow: 0 3px 8px rgba(67, 97, 238, 0.15);
        }

        .card-details li strong {
            color: var(--dark-color);
            font-weight: 600;
            margin-right: 5px;
            min-width: 85px;
        }

.card-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-color);
}

.job-type {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .job-type.full-time {
        background: rgba(6, 214, 160, 0.15);
        color: var(--success-color);
    }

    .job-type.part-time {
        background: rgba(255, 209, 102, 0.15);
        color: #b98c28;
    }

    .job-type.contract {
        background: rgba(239, 71, 111, 0.15);
        color: var(--danger-color);
    }

    .job-type.internship {
        background: rgba(76, 201, 240, 0.15);
        color: var(--accent-color);
    }

.apply-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    gap: 8px;
}

    .apply-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.05);
        text-decoration: none;
    }

    .apply-btn i {
        transition: transform 0.3s ease;
    }

    .apply-btn:hover i {
        transform: translateX(5px);
    }

/* Responsive */
@@media (max-width: 768px) {
    .career-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-header {
        padding: 20px;
    }

    .card-body {
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
    }
}

/* Loading Animation */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-color);
    border-radius: 20px;
    margin: 40px 0;
}

    .empty-state i {
        font-size: 80px;
        color: var(--primary-color);
        opacity: 0.5;
        margin-bottom: 20px;
    }

    .empty-state h3 {
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .empty-state p {
        color: #666;
    }