/* Wizard Container */
.wizard-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 30px;
}

.wizard-header {
    text-align: center;
}

.wizard-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}
h1, h2 {
  font-family: 'Nunito Sans' !important;
    font-weight: 600 !important;
    font-size: 1.5rem !important;
}
.wizard-header p {
    color: #7f8c8d;
    font-size: 16px;
}
.step.active::before{
    display: none;
}
.step::before{
    display: none;
}

/* Progress Steps */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ecf0f1;
    z-index: 1;
    border-radius: 2px;
}

.wizard-progress-wrapper{
    position: relative;
    margin-bottom: 30px;
}
.progress-line {
    position: absolute;
    top: 20px; /* Adjust according to step positioning */
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #007bff;
    transition: width 0.4s ease;
    z-index: 0;
}

.step {
    text-align: center;
    width: 25%;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-title {
    color: #95a5a6;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #0394D9;
    color: white;
    box-shadow: 0 4px 10px rgba(3, 148, 217, 0.3);
}

.step.active .step-title {
    color: #2c3e50;
    font-weight: 600;
}

.step.completed .step-number {
    background-color: #2ecc71;
    color: white;
}

.step.completed .step-title {
    color: #2ecc71;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

/* Form Sections */


.form-section h2 {
    color: #0394D9;
    margin-bottom: 4px;
    margin-top: 12px;
    font-size: 1.2rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h2 i {
    font-size: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0px;
}

.form-row .form-group {
    flex: 1 1 calc(33.33% - 10px); /* 3 in a row with gap */
  /* min-width: 200px; */
}
@media (max-width: 768px) {
  .form-row .form-group {
    flex: 1 1 calc(50% - 10px); /* 2 in a row on tablet */
  }
}

@media (max-width: 480px) {
  .form-row .form-group {
    flex: 1 1 100%; /* full width on mobile */
  }
}
.remove-edu{
        position: absolute;
    right: 0;
    top: 0;
    background: #0394d9;
    color: white;
    border: none;
    padding: 0px 8px;
    cursor: pointer;
    border-radius: 3px;
}


.remove-skill{
    position: absolute;
    right: 0;
    top: 0;
    background: #0394d9;
    color: white;
    border: none;
    padding: 0px 8px;
    cursor: pointer;
    border-radius: 3px;
}
.remove-exp{
        position: absolute;
    right: 0;
    top: 0;
    background: #0394d9;
    color: white;
    border: none;
    padding: 0px 8px;
    cursor: pointer;
    border-radius: 3px;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000;
  padding-top: 100px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  margin: auto;
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  text-align: center;
}

.close-btn {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
.form-group {
    position: relative;
    margin-bottom: 10px;
}
.btn-remove{
    padding: 3px 6px;
    background: #0394d9;
    border: 1px solid #0394d9;
    color: white;
    border-radius: 4px;
    font-size: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0394D9;
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 148, 217, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-hint {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 4px;
}

/* Error States */
.error {
    border-color: #ff4757 !important;
}

.error-message {
    color: #ff4757;
    font-size: 12px;
    margin-top: 5px;
}

/* Wizard Actions */
.wizard-actions {
    justify-content: space-between;
    display: flex;
    margin-top: 20px;
}

#add-education-btn {
    background-color: white;
    border: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
#add-experience{
    background-color: white;
    border: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
#add-skill{
    background-color: white;
    border: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    border: 1px solid #ddd;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
}

.btn-prev:hover {
    background-color: #e9ecef;
}

.btn-next {
    background-color: #0394D9;
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
}
.btn-save {
    background-color: #0394D9;
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    gap: 8px;
}
.btn-next:hover {
    background-color: #0280c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 148, 217, 0.2);
}

.btn-primary {
    background-color: #0394D9;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #0280c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 148, 217, 0.2);
}

/* ===== Review Section Styles ===== */
.review-section {
    margin-bottom: 1rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.review-section h3 {
    margin: 0 0 1.2rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.review-item {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.review-item strong {
    color: #555;
    display: inline-block;
    min-width: 140px;
    font-weight: 500;
}

.review-entries {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.review-entry h4 {
    margin: 0 0 0.8rem 0;
    color: #3498db;
    font-size: 1.1rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-item strong {
        min-width: 120px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wizard-progress {
        flex-wrap: wrap;
    }
    
    .step {
        width: 50%;
        margin-bottom: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .review-content {
        grid-template-columns: 1fr;
    }
    
    .wizard-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-primary {
        width: 100%;
    }
}



