*:focus {
    box-shadow: none !important;
    border-color: initial;
}
.empty-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}

.section-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 50px;
    flex-shrink: 0;
    color: #C7C7C7;
    font-size: 32px;
}      

.card-select {
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: border-color 0.3s, background-color 0.3s;
    padding-left: 45px !important;
}
.card-select input[type="radio"] {
    display: none;
}
.card-select .checkmark {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 1.2rem;
    color: #ccc;
}
.card-select.active {
    border-color: #28a745;
    background-color: #e9fbe9;
}
.card-select.active .checkmark {
    color: #28a745;
}
.card-select span {
    display: flex;
    flex-direction: column;
}                
.hero-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Responsive hero image for small screens */
@media (max-width: 768px) {
    .section-number {
        width: 36px;
        height: 36px;
        font-size: 22px;
        margin-right: 10px;
        margin-top: -7px;
    }
    .empty-number{
        margin-right: 10px;
    }
    .d-flex.align-items-center {
        align-items: flex-start !important;
    }
    
    .hero-image {
        height: 400px;
        width: 100%;
        object-fit: cover;
        object-position: 75%;
        margin: 0 auto;
    }
}
    
.upload-box {
    border: 2px dashed #ccc;
    text-align: center;
    color: #888;
    transition: all 0.3s ease;
}
.upload-box:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-2px);
}
.upload-box.upload-area.dragover {
    border-color: #667eea;
    transform: scale(1.02);
}

.upload-area {
    padding: 60px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.upload-icon {
    font-size: 4em;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.upload-text {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 10px;
}

.upload-hint {
    font-size: 0.9em;
    color: #999;
}

.file-input {
    display: none;
}

.file-list {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    color: #666;
    font-size: 0.9em;
}

.remove-btn {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #ff3742;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    display: none;
}

.result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.result-image {
    max-width: 100%;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 

.bg-light {
    background-color: #F7F7F7 !important;
}
.hidden-steps {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, height 0.5s ease;
}
.hidden-steps.show {
    opacity: 1;
    height: auto;
}
label.form-label {
    font-weight: bolder;
}

/* Modal styles */
.modal-modern {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header-modern {
    border-bottom: none;
    padding: 30px 30px 20px 30px;
}

.modal-title-modern {
    color: #333;
}

.modal-body-modern {
    padding: 0 30px 20px 30px;
}

.modal-footer-modern {
    border-top: none;
    padding: 20px 30px 30px 30px;
    gap: 15px;
}

.form-input-modern {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.btn-modern {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-success-modern {
    background: #28a745;
    border: none;
}
.btn-outline-success {
    border-color: #00C70D;
    color: #00C70D;
}
.btn-outline-success:hover {
    border-color: #00C70D;
    color: #fff;
    background-color: #00C70D;
}
.btn.btn-success {
    border-color: #00C70D;
    background: #00C70D;
} 
.input-group-text {
    background-color: #F7F9FA;
}    
.input-group-text i {
    color: #666; 
} 
.form-select, .form-control {
    border-radius: 2px;
}
span.input-group-text {
    border-radius: 2px;
    width: 40px;
}


div.input-group {
    border: 1px solid #D4D4D4;
}   
div.input-group.is-valid,
.form-control.is-valid {
    border: 1px solid #00B706;
    background-image:none;
}
div.input-group.is-invalid,
.form-control.is-invalid {
    border: 1px solid #B70606;
    background-image:none;
}

.input-group .form-control, 
.input-group .form-select,
.input-group .input-group-text {
    border: none;
}