/* Custom CSS starts with career-* */

/* Hero Section Dimensions & Background */
.career-hero-section {
    min-height: 50vh;
    /* Height matches the visual proportion */
    background-image: url("/images/career/gallery-bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* The Dark Overlay (Critical for the "Exact" look) */
.career-hero-overlay {
    background: rgba(15, 23, 42, 0.75);
    /* Deep slate-blue dark overlay */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    /* Slight blur for premium feel */
}

/* Typography Matching */
.career-hero-title {
    font-weight: 800;
    /* Extra Bold */
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Slight text shadow for depth */
}

.career-hero-subtitle {
    max-width: 700px;
    /* Restricts width to keep text centered nicely */
    font-size: 1.15rem;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .career-hero-section {
        min-height: 50vh;
    }

    .career-hero-title {
        font-size: 2.5rem;
        /* Smaller font on mobile */
    }
}

/* Heading Color (Dark Navy Blue) */
.career-heading-text {
    color: #0b163f;
}

/* Icon Color (Blue) */
.career-icon-color {
    color: #5d87ff;
}

/* Body Text Color (Soft Grey for descriptions) */
.career-text-desc {
    color: #6c757d; /* Bootstrap gray-600 equivalent, kept for specific shade control if needed */
}

/* The specific Blue used for Icons and Active Border */
.career-blue-accent {
    color: #2563eb;
}

/* Default Card Border (Light Grey) - mimicking the faint border in image */
.career-card-base {
    border: 1px solid #eaecf0;
    transition: all 0.3s ease;
}

/* Active Card Style (First Card) - Blue Border */
.career-card-active {
    border: 1px solid #2563eb;
    background-color: #f8fbff; /* Very slight blue tint optional */
}

/* Hover effect (Optional - makes it interactive) */
.career-card-base:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
}

/* Deep Navy for titles */
.career-dark-blue {
    color: #0b163f;
}

/* Light Blue for icons and badges */
.career-blue-brand {
    color: #3b82f6;
}

/* Badge Styling */
.career-job-badge {
    background-color: #3b82f6;
    color: white;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-decoration: none;
}

/* Apply Now Button */
.career-btn-apply {
    background-color: #0b163f;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.career-btn-apply:hover {
    color: white;
    opacity: 0.9;
}

/* Card Borders */
.career-job-card {
    border: 1px solid #eaecf0;
    transition: border-color 0.3s;
}

.career-job-card:hover {
    border-color: #2563eb;
}

/* Custom CSS starting with career-* */

.career-process-section {
    padding: 80px 0;
    background-color: #fff;
}

.career-title-dark {
    color: #0b163f;
    font-weight: 700;
}

/* Timeline Container */
.career-timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

/* Horizontal Connecting Line */
.career-timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 25px; /* Circle ke center mein align karne ke liye */
    left: 13%;
    right: 13%;
    height: 2px;
    background: linear-gradient(to right, #2563eb, #d1d5db, #f59e0b);
    z-index: 1;
}

/* Gradient Step Circles */
.career-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #6366f1 0%, #f59e0b 100%);
}

.career-step-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.career-step-title {
    color: #0b163f;
    font-weight: 700;
    margin-bottom: 8px;
}

.career-step-desc {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .career-timeline-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .career-timeline-wrapper::before {
        display: none; /* Mobile par line hata di hai vertical layout ke liye */
    }
}

/* Custom CSS starting with career-* */

.career-form-container {
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 40px;
    background-color: #fff;
}

.career-form-title {
    color: #0b163f;
    font-weight: 700;
}

.career-label {
    font-weight: 500;
    color: #0b163f;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Form Inputs Styling */
.career-input {
    border: 1px solid #d1d5db;
    padding: 12px;
    border-radius: 8px;
}

.career-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* File Upload Box */
.career-upload-box {
    border: 1px dashed #d1d5db;
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #0b163f;
}

/* Submit Button */
.career-btn-submit {
    background-color: #1e293b; /* Dark Navy/Charcoal */
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: background 0.2s;
}

.career-btn-submit:hover {
    background-color: #0f172a;
    color: white;
}
