* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
	 font-family: 'Mada', sans-serif;
}

/* body {
    font-family: 'Mada', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #111827;
} */

.cqs-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 750px;
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 50px 60px;
    position: relative;
}

/* Hide progress bar as per mockup (can be styled if needed) */
.progress-container {
    display: none;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-heading {
    font-size: 48px;
    font-weight: 600;
    color: #071D49;
    text-align: center;
    margin-bottom: 8px;
}

.step-subheading {
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #CACACA;
    padding-bottom: 25px;
}

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

.form-group>label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 10px;
    padding-bottom: 25px;
}

.form-group label .required {
    color: #e74c3c;
    display: none;
    margin-left: 2px;
}

/* Form Inputs (Contact Info) */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #e5e7eb;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    color: #111827;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #071D49;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

[data-step="1"] .radio-group,
[data-step="1"] .checkbox-group {
    justify-content: center;
}

.radio-option,
.checkbox-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e5e7eb;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.radio-option:hover,
.checkbox-option:hover {
    background: #d1d5db;
}

.radio-option.selected,
.checkbox-option.selected {
    background: #eff6ff;
    border-color: #071D49;
    color: #071D49;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #071D49;
    cursor: pointer;
    margin: 0;
}

.radio-option label,
.checkbox-option label {
    cursor: pointer;
    margin: 0;
}

/* Specific styling for Brand Logos */
.brand-logo-img {
    max-height: 25px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Navigation Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

[data-step="1"] .form-actions {
    justify-content: center;
}

[data-step="1"] .form-actions>div {
    display: none;
    /* Hide the empty placeholder div so Next button centers */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #071D49;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600 !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #1e293b;
}

.btn-back {}

.btn-back img {
    width: 20px;
    transform: scaleX(-1);
    /* Flips horizontally */
}

.btn-next {}

.btn-submit {
    background: #16a34a;
}

.btn-submit:hover {
    background: #15803d;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-msg {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc2626;
    background: #fef2f2;
}

.form-group.error .error-msg {
    display: block;
}

.global-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #ef4444;
    font-size: 14px;
}

/* Thank You Section */
.thankyou-container {
    text-align: center;
    animation: fadeIn 0.4s ease;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 4px;
    max-width: 600px;
    width: 100%;
    border: 1px solid #e9ecef;
	
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    background: #10b981;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

.thankyou-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.thankyou-subtitle {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 30px;
	
}


.thanks-contentout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou-titles {
    margin: 15px 0 10px;
	color: #071D49;
	font-size: 48px;
	font-weight: 600;
	font-family: 'Mada', sans-serif;
}

.thankyou-subtitles {
    max-width: 70%;
    margin: 0 auto;
	color: #222222;
	font-size: 24px;
	font-weight: 400;
	font-family: 'Mada', sans-serif;
	line-height: 34px;
}


.thankyou-details h3{
	font-family: 'Mada', sans-serif;
	color: #071D49;
	font-size: 35px;
	border-bottom: 1px solid #CACACA;
	padding-bottom: 18px;
}

.thankyou-icons {
    display: flex;
    align-items: center;
    justify-content: center;
	
}

.btn-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #071D49;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: 0.3s ease;
	margin-top: 30px
}

.btn-home::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url('https://print-pass.com/wp-content/uploads/2026/06/Frame-139.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.btn-home:hover {
    background: #1e293b;
	color: #ffffff;
}

/* Review Section */
.review-section {
    background: #e7e7e7;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 16px;
   
}

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

.review-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
	font-family: 'Mada', sans-serif;
}

.edit-btn {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

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

.rlabel {
    color: #555555;
    font-weight: 500;
	font-family: 'Mada', sans-serif;
	font-size: 16px;
}

.rvalue {
    color: #111827;
    font-weight: 600;
    max-width: 65%;
    text-align: right;
}

/* Layout adjustments for Step 10 */
.fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

[data-step="10"] .form-group:not(.main-label-group) {
    width: 100% !important;
    margin: 0 !important;
}

[data-step="10"] .form-group:not(.main-label-group)>label {
    display: none;
}

[data-step="10"] .form-group[data-field="address"] {
    grid-column: 1 / -1;
    /* spans both columns */
}

@media (max-width: 600px) {
    .form-container {
        padding: 30px 20px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .radio-option,
    .checkbox-option {
        width: 100%;
    }

    .fields-grid {
        grid-template-columns: 1fr;
    }
}



/* Remove the pen icon from the edit buttons */
.edit-btn img.emoji[src*="270f"] {
    display: none !important;
}

/* Remove the checkmark icon from the submit button */
#submitBtn img.emoji[src*="2705"] {
    display: none !important;
}

/* Add custom icon to the right side of submit button text */
#submitBtn span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    /* Adjust spacing between text and icon */
}

#submitBtn span:first-child::after {
    content: "";
    display: inline-block;
    width: 20px;
    /* Adjust width as needed */
    height: 20px;
    /* Adjust height as needed */
    background-image: url('https://print-pass.com/wp-content/uploads/2026/06/Frame-139.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.detail-row .label {
    text-align: left;
	color: #555555;
	font-size: 16px;
	font-weight: 500;
}

.detail-row .value {
    text-align: right;
	color: #222222;
	font-size: 16px;
	font-weight: 600;
}

.thankyou-container-main{
	display: flex;
	justify-content:center;
	margin-top: 50px;
	
	
}



}