/* Custom CSS for Careers Page */

:root {
    --primary-color: #ba0909;
    --secondary-color: #f8f9fa;
    --muted-color: #6c757d;
    --border-radius: 0.625rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.value-icon i {
    font-size: 1.5rem;
    /* color: #9c1e1e; */
}

/* Search Icon */
.search-icon {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--muted-color);
    z-index: 5;
}

/* Job Cards */
.job-card {
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.job-card .card-title {
    transition: color 0.3s ease;
    /* color:#ba0909 */
}

.job-card:hover .card-title {
    color: var(--primary-color) !important;
}

.job-meta {
    font-size: 0.875rem;
}

.job-meta i {
    width: 1rem;
}

.requirement-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.requirement-bullet,
.benefit-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.requirement-bullet {
    /* background-color: var(--primary-color); */
    background-color: black;
}

.benefit-bullet {
    background-color: #28a745;
}

/* Job Detail Page */
.job-detail-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.job-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Form Styles */
/*.form-control:focus,*/
/*.form-select:focus {*/
/*    border-color: var(--primary-color);*/
/*    box-shadow: 0 0 0 0.2rem rgba(3, 2, 19, 0.25);*/
/*}*/

 

/* Button Styles */
.btn-primary {
    /* background-color: var(--primary-color); */
    background-color: #257bccff;
    /* border-color: var(--primary-color); */
    border-color: #257bccff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: rgb(30, 76, 119); 
    border-color: rgb(24, 67, 107); 
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background-color: #df8484ff;
}

/* Cards */
.card {
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-body {
    padding: 1.5rem;
}

/* Text Utilities */
.text-muted {
    color: var(--muted-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .value-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .value-icon i {
        font-size: 1.25rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animation for view transitions */
.view-transition {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Toast customization */
.toastify {
    padding: 12px 20px;
    color: white;
    display: block;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
}

.toastify.on {
    opacity: 1;
}

.toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}




.captcha-container {
            background-color: #f8f9fa;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 20px;
        }
        .captcha-display {
            font-family: 'Courier New', monospace;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #333, #555);
            color: white;
            padding: 10px 15px;
            border-radius: 4px;
            text-align: center;
            user-select: none;
        }
        .captcha-refresh {
            cursor: pointer;
            transition: transform 0.3s;
        }
        .captcha-refresh:hover {
            transform: rotate(90deg);
        }
        .form-label {
            font-weight: 500;
        }
        .modal-content {
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }
        .submit-btn:disabled {
            cursor: not-allowed;
        }