
:root {
    --primary-blue: #286090;
    --gradient-start: #f98c05;
    --gradient-end: #fd5509;
    --bg-orange: #FD8B00;
}

/* Base Typography */
body {
    font-family: 'DM Sans';
}
.bg-gradient{
    background-image: linear-gradient(#f98c05, #fd5509) !important; 
}
.bg-blue{
    background-color: var(--primary-blue);
}
.card-1{
    padding: 10px;
    box-shadow: 0px 0px 10px #00000036;
    background: #fff;
    border-radius: 5px;
}
#process{
    background-color: #e9e9e994;
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.step-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #dee2e6;
    z-index: 1;
}
.step-progress .step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.step-progress .step::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #0d6efd;
    z-index: 1;
    transition: all 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}
.step-progress .step.completed::after,
.step-progress .step.active::after {
    transform: scaleX(1);
}
.step-progress .step:first-child::after {
    left: 50%;
}
.step-progress .step:last-child::after {
    width: 50%;
}
.step-progress .step-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    color: #6c757d;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.step-progress .step.active .step-icon {
    background-color: #0d6efd;
    color: white;
}
.step-progress .step.completed .step-icon {
    background-color: #198754;
    color: white;
}
.step-progress .step-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}
.step-progress .step.active .step-label {
    color: #0d6efd;
    font-weight: 600;
}
.step-progress .step.completed .step-label {
    color: #198754;
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

/* Enhanced Photo Upload Styles */
.photo-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.photo-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.photo-remove-btn:hover {
    background: #dc3545;
    transform: scale(1.1);
}
.upload-status {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 5px;
}
.upload-status.text-success {
    color: #198754;
}
.upload-status.text-danger {
    color: #dc3545;
}
/* before after image css */

.slider-wrap {
    max-width: 700px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
}

/* FAQ Accordion - Background color when open */
.accordion-item .accordion-button:not(.collapsed) {
    background-color: #286090;
    color: white;
}

.accordion-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
.logo-box{
    width: 100%;
}   
}