
body {
    margin: 0;
    font-family: var(--inter-font);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

:root{
    --inter-font: "Inter", sans-serif;
    --inter-display-font: "Inter Display", sans-serif;
    --primary-color: #253EA7;
    --secondary-color: #0A0D14;
    --white-color: #FFFFFF;
    --gray-color: #525866;
    --primary-light:#EBF1FF;
    --danger-color: #dc3545;
}
@media screen and (min-width: 1440px) {
.container {
    padding: 0 60px;
    max-width: 100%;
}
}
/* Header Styles */
.site-header {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    /* background-color: #2c2c2c; */
    padding: 24px 0;
    /* border-bottom: 1px solid #404040; */
    text-align: center;
}

.logo {
    width: 120px;
    height: auto;
}
.card-header {
    font-size: 20px;
    font-family: var(--inter-display-font);
    font-weight: 500;
    color: var(--white-color);
    padding: 18px 32px;
    background-color: var(--primary-color);
}
.card-body {
    padding: 24px 32px;
}
.card-body  h3 {
    font-size: 20px;
    font-family: var(--inter-display-font);
    font-weight: 500;
    line-height: 28px;
    color: var(--secondary-color);
    margin: 8px 0;
}
.card-body  p {
    font-size: 14px;
    font-family: var(--inter-font);
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-color);
    margin-bottom: 24px;
}

/* Stepper Container */
.stepper-container {
    padding: 40px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

/* Stepper Progress */
.stepper-progress {
    margin-bottom: 32px;
    position: relative;
}

.stepper-steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 8px;
}

.step {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    min-width: 80px;
    gap: 8px;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-arrow img {
    width: 20px;
    height: 20px;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
}

.step.active + .step-arrow img {
    filter: grayscale(0) opacity(1);
    /* filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); */
}

.step.completed + .step-arrow img {
    filter: grayscale(0) opacity(1);
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.step-number {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.step.completed .step-number {
    background-color: #28a745;
    color: var(--white-color);
    border-color: #28a745;
}

.step-label {
    font-size: 14px;
    color: var(--gray-color);
    text-align: center;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1.2;
    /* max-width: 80px; */
}

.step.active .step-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.step.completed .step-label {
    color: #28a745;
    font-weight: 600;
}


/* Step Content */
.step-content {
    background-color: var(--white-color);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    min-height: 300px;
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-icon {
    color: var(--primary-color);
    font-size: 24px;
}

.step-panel h2 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    font-family: var(--inter-display-font);
}

.step-panel p {
    color: var(--gray-color);
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Upload Area */
.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(37, 62, 167, 0.05);
}

.upload-area.drag-over {
    border-color: var(--primary-color);
    background-color: rgba(37, 62, 167, 0.1);
    transform: scale(1.02);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-icon {
    font-size: 48px;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.upload-area img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.upload-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.upload-info {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
}

.browse-btn {
    margin-top: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

/* Upload Success States */
.upload-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.file-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.file-details h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.file-details p {
    margin: 0;
    font-size: 12px;
    color: var(--gray-color);
}

.upload-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-weight: 600;
}

.status-icon {
    font-size: 16px;
}

/* Parsing Status */
.parsing-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e9ecef;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.parsing-complete {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #28a745;
    font-weight: 500;
}

.success-icon {
    font-size: 16px;
}

/* Smart Parser Info */
.smart-parser-info {
    background-color: var(--primary-light);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #bbdefb;
}

.parser-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.parser-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.parser-text h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.parser-text p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.parser-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #bbdefb;
}

.view-only {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-color);
}

.view-only i {
    font-size: 14px;
}

.ask-edit-btn {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ask-edit-btn:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--inter-font);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Review Summary */
.review-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Navigation Buttons */
.stepper-navigation {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--inter-font);
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-secondary {
    color: var(--gray-color);
    border: 1px solid var(--gray-color);
    background-color: transparent !important;
}

.btn-secondary:hover:not(:disabled) {
    transform: translateY(-1px);
    color: #adb5bd;
    border: 1px solid #adb5bd;
}

.btn-secondary:disabled {
    color: #adb5bd;
    cursor: not-allowed;
    transform: none;
    background-color:  #adb5bd;
}

.btn-success {
    background-color: #28a745;
    color: var(--white-color);
}

.btn-success:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

/* Mobile Progress Indicator - Hidden by default on desktop */
.mobile-progress-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .card {
        margin-bottom: 150px;
    }
    .card-body {
        padding: 16px 12px;
    }
    
    /* Mobile Stepper Design */
    .stepper-progress {
        margin-bottom: 24px;
        text-align: center;
    }
    
    .stepper-steps {
        display: none; /* Hide horizontal stepper on mobile */
    }
    
    /* Circular Progress Indicator */
    .mobile-progress-indicator {
        display: flex !important; /* Show on mobile */
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .progress-circle {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: conic-gradient(var(--primary-color) 0deg, var(--primary-color) calc((360deg / 7) * 2), #e9ecef calc((360deg / 7) * 2), #e9ecef 360deg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }
    
    .progress-circle::before {
        content: '';
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
    }
    
    .progress-text {
        position: relative;
        z-index: 2;
        font-size: 14px;
        font-weight: 600;
        color: var(--secondary-color);
    }
    
    /* Step Title and Next Step Info */
    .step-info {
        text-align: left;
        flex: 1;
    }
    
    .step-title {
        font-size: 24px;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 4px 0;
        font-family: var(--inter-display-font);
    }
    
    .next-step-info {
        font-size: 14px;
        color: var(--gray-color);
        margin: 0 !important;
        font-weight: 400;
    }
    
    /* Adjust step content for mobile */
    .step-content {
        padding: 20px;
        /* margin-bottom: 150px !important; */
        min-height: auto;
    }
    
    /* Navigation buttons for mobile */
    .stepper-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 20px;
        border-top: 1px solid #e9ecef;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .stepper-navigation .btn {
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        min-width: 100px;
    }
    
    /* Add bottom padding to main content to account for fixed navigation */
    .stepper-container {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .stepper-container {
        padding: 20px 0;
    }
    
    .step-content {
        padding: 24px;
        margin-bottom: 20px;
    }
    
    .step-panel h2 {
        font-size: 24px;
    }
    
    .stepper-steps {
        flex-wrap: wrap;
        gap: 4px;
        justify-content: flex-start;
    }
    
    .step {
        flex: 0 0 auto;
        min-width: 60px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-arrow img {
        width: 12px;
        height: 12px;
    }
    
    .step-label {
        font-size: 10px;
        /* max-width: 60px; */
    }
    
    .step-number {
        /* width: 32px;
        height: 32px; */
        /* font-size: 14px; */
    }
    
    .upload-area {
        padding: 24px 16px;
    }
    
    .upload-icon {
        font-size: 36px;
    }
    
    .upload-text {
        font-size: 16px;
    }
    
    .parser-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .stepper-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 16px;
    }
    
    .step-panel h2 {
        font-size: 20px;
    }
    
    .step-panel p {
        font-size: 14px;
    }
    
    .step {
        min-width: 50px;
    }
    
    .step-label {
        font-size: 9px;
        /* max-width: 50px; */
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .upload-area {
        padding: 20px 12px;
    }
    
    .upload-icon {
        font-size: 32px;
    }
    
    .upload-text {
        font-size: 14px;
    }
    
    .smart-parser-info {
        padding: 16px;
    }
    
    .parser-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Step Description */
.step-description {
    margin-bottom: 24px;
}

.step-description p {
    color: var(--gray-color);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Profile Upload Section */
.profile-upload-section {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: flex-start;
}

.profile-upload-section img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.7;
    border-radius: 50%;
    border: 1px solid #E9E9E9;
}

.profile-image-upload h2 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--inter-display-font);
}



.image-requirements {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.upload-profile-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background-color: var(--white-color);
    border: 2px solid #dee2e6;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.upload-profile-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--white-color);
}

/* Form Styling */
.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-label i {
    color: var(--primary-color);
    font-size: 14px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Input Group Styling */
.input-group {
    border-radius: 8px;
    overflow: hidden;
}

.input-group .form-select {
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.country-code {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    font-weight: 500;
}

/* Character Counter */
.character-counter {
    text-align: right;
    font-size: 12px;
    color: var(--gray-color);
    margin-top: 4px;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-upload-section {
        margin-bottom: 24px;
    }
    
    .image-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .image-placeholder i {
        font-size: 24px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .form-control, .form-select {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* Step 3 - Job-specific Details */


/* .step-panel[data-step="3"] .form-group {
    margin-bottom: 24px;
} */

.step-panel[data-step="3"] .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.step-panel[data-step="3"] .form-control,
.step-panel[data-step="3"] .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.step-panel[data-step="3"] .form-control:focus,
.step-panel[data-step="3"] .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

.step-panel[data-step="3"] .form-control::placeholder {
    color: #adb5bd;
}

/* Required field indicator */
.form-label:has(+ .form-control[required]),
.form-label:has(+ .form-select[required]) {
    position: relative;
}

.form-label:has(+ .form-control[required])::after,
.form-label:has(+ .form-select[required])::after {
    content: "*";
    color: var(--danger-color);
    margin-left: 4px;
}

/* Step 4 - Education */


.step-panel[data-step="4"] .step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-panel[data-step="4"] .step-header h2 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: var(--inter-display-font);
}

.step-panel[data-step="4"] .step-description {
    color: var(--gray-color);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Education Sections */
.education-section {
    margin-bottom: 32px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.education-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--inter-display-font);
}

.education-section .form-group {
    margin-bottom: 20px;
}

.education-section .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.education-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.education-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

.education-section .form-control::placeholder {
    color: #adb5bd;
}

/* Date Input Group */
.date-input-group {
    position: relative;
}

.date-input-group .date-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    font-size: 14px;
    z-index: 2;
}

.date-input-group .date-input {
    padding-left: 40px;
}

/* Required field indicator for education */
.education-section .form-label:has(+ .form-control[required])::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

/* Required field indicator for experience */
.experience-section .form-label:has(+ .form-control[required])::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

/* Responsive adjustments for education */
@media (max-width: 768px) {
    /* .step-panel[data-step="4"] {
        padding: 20px;
    } */
    
    .education-section {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .education-title {
        font-size: 16px;
    }
    
    .step-panel[data-step="4"] .step-header h2 {
        font-size: 20px;
    }
}

/* Step 5 - Work Experience */


.experience-container {
    margin-bottom: 24px;
}

/* Experience Sections */
.experience-section {
    margin-bottom: 32px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.experience-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: var(--inter-display-font);
}

.delete-experience-btn {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid #dc3545;
    color: #dc3545;
    background-color: transparent;
    transition: all 0.3s ease;
}

.delete-experience-btn:hover {
    background-color: #dc3545;
    color: white;
}

.delete-experience-btn i {
    margin-right: 4px;
}

.experience-section .form-group {
    margin-bottom: 20px;
}

.experience-section .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.experience-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.experience-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

.experience-section .form-control::placeholder {
    color: #adb5bd;
}

/* Experience section date input styling */
.experience-section .date-input-group {
    position: relative;
}

.experience-section .date-input-group .date-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    font-size: 14px;
    z-index: 2;
}

.experience-section .date-input-group .date-input {
    padding-left: 40px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px 12px 40px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.experience-section .date-input-group .date-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

/* Add Experience Button */
.add-experience-section {
    text-align: end;
    margin-top: 24px;
}

.add-experience-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background-color: var(--primary-color);
    border: none;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.add-experience-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.add-experience-btn i {
    margin-right: 8px;
}

/* Required field indicator for experience */
.experience-section .form-label:has(+ .form-control[required])::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

/* Responsive adjustments for experience */
@media (max-width: 768px) {
    /* .step-panel[data-step="5"] {
        padding: 20px;
    } */
    
    .experience-section {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .experience-title {
        font-size: 16px;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .delete-experience-btn {
        align-self: flex-end;
    }
}

/* Step 6 - Professional Details */


.professional-title {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    font-family: var(--inter-display-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-panel[data-step="6"] .form-group {
    margin-bottom: 24px;
}

.step-panel[data-step="6"] .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.step-panel[data-step="6"] .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.step-panel[data-step="6"] .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

.step-panel[data-step="6"] .form-control::placeholder {
    color: #adb5bd;
}

/* Step 6 date input styling */
.step-panel[data-step="6"] .date-input-group {
    position: relative;
}

.step-panel[data-step="6"] .date-input-group .date-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    font-size: 14px;
    z-index: 2;
}

.step-panel[data-step="6"] .date-input-group .date-input {
    padding-left: 40px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px 12px 40px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
}

.step-panel[data-step="6"] .date-input-group .date-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

/* Responsive adjustments for professional details */
@media (max-width: 768px) {
    /* .step-panel[data-step="6"] {
        padding: 20px;
    }
     */
    .professional-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .step-panel[data-step="6"] .form-group {
        margin-bottom: 20px;
    }
}

/* Step 7 - Family Details */

.family-details-title {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    font-family: var(--inter-display-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.family-member-section {
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
}

.family-member-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--inter-display-font);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.family-member-section .form-group {
    margin-bottom: 20px;
}

.family-member-section .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.family-member-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--white-color);
    width: 100%;
}

.family-member-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 62, 167, 0.1);
    outline: none;
}

.family-member-section .form-control::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

.family-member-section .row {
    margin-bottom: 16px;
}

.family-member-section .row:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for family details */
@media (max-width: 768px) {
    /* .step-panel[data-step="7"] {
        padding: 20px;
    } */
    
    .family-details-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .family-member-section {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .family-member-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .family-member-section .form-group {
        margin-bottom: 16px;
    }
    
    .family-member-section .row {
        margin-bottom: 12px;
    }
}


.d-none{
     display: none;
}






/* Step 4 job appplication education start */
.qualification-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.qualification-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
    background: white;
}
.qualification-card:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}
.qualification-card.active {
    border-color: #007bff;
    background-color: #e7f3ff;
}
.qualification-card i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
    color: #666;
}
.qualification-card.active i {
    color: #007bff;
}
.qualification-card span {
    font-weight: 500;
    color: #333;
}
.qualification-check {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #28a745;
    font-size: 16px;
}
.degree-status-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.education-form {
    display: none;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #f9f9f9;
}
.education-form.active {
    display: block;
}
.education-form h4 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}
@media (max-width: 768px) {
    .qualification-cards {
        justify-content: center;
    }
    .qualification-card {
        min-width: 100px;
        padding: 15px;
    }
    .degree-status-options {
        flex-direction: column;
        gap: 10px;
    }
}

/* Step 4 job appplication education end */