button.btn.btn-primary.saveresume {
    display: none;
}
.mainpagediv{
/*    background: transparent linear-gradient(180deg, #F2F2F2 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;*/
	background: #F2F2F2;
    position: relative;
}
.progress-bar {
    height: 15px;
    background: #e0e0e0;
/*    position: fixed;*/
    top: 102px;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background: #7EBEAF;
    width: 0%;
    transition: width 0.3s ease;
}

.breadcrumb-container {
    padding: 15px 0px;
    margin-top: 8px;
}

.back-button {
    color: #999;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 8px;
    display: inline-block;
    transition: color 0.3s;
}

.back-button:hover {
    color: #333;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: #5DCCB7;
    font-weight: 500;
} 

.formcontainer {
    padding: 40px 15px 85px;
/*
    margin: 40px auto 85px;
    padding: 0 20px;
*/
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}
.form-step#step2,  .form-step#step6{
    max-width: 740px;
    margin: auto;
     
}

.form-step#step3, .form-step#step4, .form-step#step5{
    max-width: 610px;
    margin: auto;
     
}
p.results-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {    
/*    margin-bottom: 30px;*/
	position: relative;
}

h1 {
    font-size: 32px;
/*    color: #231F20;*/
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    text-align: center;
/*    color: #231F20;*/
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 18px;
/*    color: #231F20;*/
    font-weight: 500;
    font-size: 18px;
}

.radio-option label, .checkbox-option label{
	 display: block;
    margin-bottom: 0px;
/*    color: #231F20;*/
    font-weight: 500;
    font-size: 15px !important;
}

input[type="text"],input[type="number"], input[type="email"], input[type="tel"], input[type="date"], select {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
    height: 65px;
	outline: none;
}

input:focus,
select:focus {
    outline: none;
    border-color: #5DCCB7;
}

.radio-option,
.checkbox-option {
    background: white;
/*    border: 2px solid #e0e0e0;*/
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
	  height: 65px;
	outline: none;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: #5DCCB7;
    background: #f8fffe;
}

.radio-option.selected,
.checkbox-option.selected {
    border-color: #5DCCB7;
    background: #98e5d7;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    margin-right: 2px;
    width: 0px;
    height: 0px;
    cursor: pointer;
    visibility: hidden;
}
.form-step#step1 .radio-option input[type="radio"],
.form-step#step1 .checkbox-option input[type="checkbox"]{
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    visibility: visible;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.icon-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.icon-card:hover {
    border-color: #5DCCB7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 204, 183, 0.15);
}

.icon-card.selected {
    border-color: #5DCCB7;
    background: #98e5d7;
}

.icon-card .icon {
    font-size: 50px;
    margin-bottom: 12px;
}

.icon-card .label {
 
    font-size: 16px;
    line-height: 1.4;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
	    position: relative;
    z-index: 1;
}

.form-step  .btn {
    padding: 0;
    border-radius: 100px !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    min-width: 170px;
    height: 50px;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
    background: #08123D;
    color: white;
/*    flex: 1;*/
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: #59C0AB;
	box-shadow: none !important;
	outline: none !important;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

/* Results Section */
.results-section {
    display: none;
/*    min-height: 100vh;*/
/*    padding: 40px 0;*/
}

.results-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}


.form-card h2{
	text-align: center;
	margin-bottom: 0;
}
.results-header p {
/*    color: #231F20;*/
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.results-header {
    text-align: center;
    /* margin-bottom: 30px; */
    max-width: 610px;
    margin: 0 auto 30px;
}
.brand-logo {
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.brand-price {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-tagline {
    color: #00BCD4;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-description {
/*    color: #231F20;*/
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 80px;
    text-align: left;
}

.view-quote-btn {
    border: 1px solid #08123D !important;
    color: #08123D;
    background: #F6F6F6;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.results-actions {
    text-align: center;
    margin-top: 50px;
    padding: 0px 20px;
}

.restart-btn {
    background:#59C0AB ;
    color: white;
     padding: 12px 35px;
 border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
	text-transform: uppercase;
	border: none;
    display: inline-block;
}

.restart-btn:hover {
    background: #08123D;
   
}

.error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.validation-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    border-left: 4px solid #59C0AB;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    min-width: 300px;
    animation: slideIn 0.3s ease;
    display: none;
}

.validation-toast.show {
    display: block;
}

.validation-toast.success {
    border-left-color: #4CAF50;
}

.validation-toast .toast-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 800;
    font-family: 'Spartan';
    font-size: 20px;
    color: #08123D;
}

.validation-toast .toast-icon {
    font-size: 24px;
    margin-right: 12px;
}

.validation-toast .toast-message {
    color: #08123D;
    font-size: 15px;
    line-height: 20px;
}

.validation-toast .toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.validation-toast.hiding {
    animation: slideOut 0.3s ease forwards;
}

/* Confirmation Modal */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.confirm-modal.show {
    display: flex;
}

.confirm-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.confirm-modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.confirm-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.confirm-modal-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.confirm-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
}

.confirm-btn-primary {
    background: #d32f2f;
    color: white;
}

.confirm-btn-primary:hover {
    background: #b71c1c;
}

.confirm-btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.confirm-btn-secondary:hover {
    background: #e8e8e8;
}

.help-text {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}
.great-text {
    position: relative;
    margin-top:20px;
    text-align: center;
    width: 100%;
    bottom: 5px;
    margin-bottom: 0 !important;
/*	color: #231F20;*/
    font-size: 16px;
}
.form-card h1{
	margin-bottom: 0;
}
.help-text a{
	color: #999 !important;
	text-decoration: none;
}
@media (max-width: 768px) {
    
    h1 {
        font-size: 26px;
    }

    .icon-grid {
        grid-template-columns: 1fr 1fr;
    }
 #step7 .button-group {
    flex-wrap: wrap;
    justify-content: center !important;
}
}
