 /* Assessment Form Styles - Colors: #223246 background, #ffff text, borders */
 /* Enhanced Video Player CSS - Existing CSS section me add karen */

 .video-player-wrapper {
     position: relative;
     width: 100%;
     max-width: 100%;
     margin: 0 auto;
 }

 .video-container {
     position: relative;
     background: #000;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .video-embed {
     width: 100%;
     height: 400px;
     border: none;
 }

 .video-thumbnail {
     width: 100%;
     height: 400px;
     object-fit: cover;
     cursor: pointer;
     transition: opacity 0.3s ease;
 }

 .video-thumbnail:hover {
     opacity: 0.8;
 }

 .video-thumbnail-container {
     position: relative;
     cursor: pointer;
 }

 .platform-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: rgba(0, 0, 0, 0.8);
     color: white;
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 500;
     z-index: 10;
     backdrop-filter: blur(10px);
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.95);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 5;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
 }

 .play-button:hover {
     background: rgba(255, 255, 255, 1);
     transform: translate(-50%, -50%) scale(1.1);
     box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
 }

 .play-button i {
     color: #333;
     font-size: 28px;
     margin-left: 4px;
 }

 .invalid-video {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 400px;
     background: linear-gradient(145deg, #f8f9fa, #e9ecef);
     color: #6c757d;
     text-align: center;
 }

 .invalid-video i {
     font-size: 48px;
     margin-bottom: 16px;
     opacity: 0.5;
 }

 /* Mobile responsive */
 @media (max-width: 768px) {

     .video-embed,
     .video-thumbnail,
     .invalid-video {
         height: 250px;
     }

     .play-button {
         width: 60px;
         height: 60px;
     }

     .play-button i {
         font-size: 20px;
     }
 }

 /* Container and Layout Styles */
 .assessment-container {
     max-width: 800px;
     margin: 20px auto;
     background: white;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(34, 50, 70, 0.15);
     overflow: hidden;
     border: 1px solid #223246;
 }

 .form-header {
     background: linear-gradient(135deg, #223246, #2c4057);
     color: #ffff;
     padding: 30px;
     text-align: center;
     border-bottom: 3px solid #223246;
 }

 .form-header h2 {
     font-size: 28px;
     margin-bottom: 10px;
     font-weight: bold;
     color: #ffff;
 }

 .form-header p {
     font-size: 16px;
     opacity: 0.9;
     color: #ffff;
 }

 .form-content {
     padding: 40px;
     background: #fafafa;
 }

 .form-step {
     display: none;
     background: white;
     padding: 30px;
     border-radius: 8px;
     border: 2px solid #223246;
 }

 .form-step.active {
     display: block;
     animation: slideIn 0.3s ease-in-out;
 }

 @keyframes slideIn {
     from {
         opacity: 0;
         transform: translateX(20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .form-row {
     display: flex;
     gap: 20px;
     margin-bottom: 25px;
 }

 .form-group {
     flex: 1;
     min-width: 0;
     margin-bottom: 20px;
 }

 .form-group.full-width {
     flex: 100%;
 }

 .form-step h3 {
     color: #223246;
     margin-bottom: 30px;
     font-size: 24px;
     text-align: center;
     border-bottom: 2px solid #223246;
     padding-bottom: 15px;
 }

 /* Form Input Styles */
 .assessment-form label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #223246;
     font-size: 14px;
 }

 .assessment-form input[type="text"],
 .assessment-form input[type="email"],
 .assessment-form input[type="tel"],
 .assessment-form input[type="number"],
 .assessment-form select {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid #223246;
     border-radius: 8px;
     font-size: 16px;
     transition: all 0.3s ease;
     background: white;
     color: #333;
 }

 .assessment-form input:focus,
 .assessment-form select:focus {
     outline: none;
     border-color: #223246;
     box-shadow: 0 0 0 3px rgba(34, 50, 70, 0.2);
     transform: translateY(-1px);
     background: #f9f9f9;
 }

 .assessment-form input.error,
 .assessment-form select.error {
     border-color: #e74c3c;
     background-color: #fff5f5;
     box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
 }

 .assessment-form input:valid {
     border-color: #27ae60;
 }

 .assessment-form select option {
     padding: 10px;
     background: white;
     color: #333;
 }

 /* Button Styles */
 .btn {
     padding: 14px 28px;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 140px;
     border: 2px solid transparent;
 }

 .btn-primary {
     background-color: #223246;
     color: #ffff;
     border: 2px solid #223246;
 }

 .btn-primary:hover {
     color: #ffff;
     background-color: #1a2530;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(34, 50, 70, 0.3);
     border-color: #1a2530;
 }

 .btn-primary:active {
     transform: translateY(0);
     box-shadow: 0 2px 6px rgba(34, 50, 70, 0.2);
 }

 .btn-secondary {
     background-color: white;
     color: #223246;
     border: 2px solid #223246;
 }

 .btn-secondary:hover {
     background-color: #223246;
     color: #ffff;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(34, 50, 70, 0.2);
 }

 .button-group {
     display: flex;
     justify-content: space-between;
     margin-top: 40px;
     gap: 20px;
     padding-top: 20px;
     border-top: 2px solid #223246;
 }

 /* Radio Button Styles */
 .radio-group {
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-top: 10px;
 }


 .radio-option {
     display: flex;
     align-items: flex-start;
     padding: 0 0;
     cursor: pointer;
     background: transparent;
     border: none;
 }


 .radio-option:hover {
     border-color: #223246;
     background-color: rgba(34, 50, 70, 0.05);
     
     box-shadow: 0 2px 8px rgba(34, 50, 70, 0.1);
 }

 .radio-option.selected {
     border-color: #223246;
     background-color: rgba(34, 50, 70, 0.1);
     box-shadow: 0 3px 12px rgba(34, 50, 70, 0.15);
 }

 .radio-option input[type="radio"] {
     margin-right: 12px;
     margin-top: 2px;
     width: 18px;
     height: 18px;
     accent-color: #223246;
     cursor: pointer;
 }


 .radio-option label {
     margin: 0;
     cursor: pointer;
     font-weight: normal;
     flex: 1;
     color: #333;
     line-height: 1.4;
     font-size: 14px;
 }

 .radio-option:hover label {
     color: #223246;
 }


 .conditional-fields {
     margin-top: 20px;
     padding: 25px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 2px solid #223246;
     border-style: dashed;
     display: none;
 }

 .conditional-fields.show {
     display: block;
     animation: slideDown 0.3s ease-in-out;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         max-height: 0;
         padding-top: 0;
         padding-bottom: 0;
     }

     to {
         opacity: 1;
         max-height: 500px;
         padding-top: 25px;
         padding-bottom: 25px;
     }
 }

 /* Validation and Error Styles */
 .error-message {
     color: #e74c3c;
     font-size: 12px;
     margin-top: 5px;
     display: none;
     font-weight: 500;
     background: #fff5f5;
     padding: 5px 10px;
     border-radius: 4px;
     border-left: 3px solid #e74c3c;
 }

 .error-message.show {
     display: block;
     animation: errorSlide 0.3s ease-in-out;
 }

 @keyframes errorSlide {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .success-message {
     color: #27ae60;
     font-size: 12px;
     margin-top: 5px;
     display: none;
     font-weight: 500;
     background: #f0fff4;
     padding: 5px 10px;
     border-radius: 4px;
     border-left: 3px solid #27ae60;
 }

 .field-required::after {
     content: " *";
     color: #e74c3c;
     font-weight: bold;
 }

 /* Progress Bar Styles */
 .progress-bar {
     height: 8px;
     background: #e0e0e0;
     border-radius: 4px;
     margin-bottom: 30px;
     overflow: hidden;
     border: 1px solid #223246;
 }

 .progress-fill {
     height: 100%;
     background: linear-gradient(90deg, #223246, #2c4057);
     transition: width 0.5s ease;
     border-radius: 3px;
     box-shadow: 0 2px 4px rgba(34, 50, 70, 0.3);
 }

 .progress-text {
     text-align: center;
     margin-bottom: 10px;
     font-weight: 600;
     color: #223246;
     font-size: 14px;
 }

 /* Loading and Thank You Styles */
 .loading {
     display: none;
     text-align: center;
     padding: 60px 20px;
     background: white;
     border-radius: 8px;
     border: 2px solid #223246;
 }

 .loading.show {
     display: block;
     animation: fadeIn 0.3s ease-in-out;
 }

 .spinner {
     border: 4px solid #f3f3f3;
     border-top: 4px solid #223246;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     animation: spin 1s linear infinite;
     margin: 0 auto 20px;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .loading p {
     color: #223246;
     font-size: 16px;
     font-weight: 500;
 }

 .thank-you {
     display: none;
     text-align: center;
     padding: 40px;
     background: white;
     border-radius: 8px;
     border: 2px solid #223246;
 }

 .thank-you.show {
     display: block;
     animation: fadeIn 0.5s ease-in-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: scale(0.9);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .thank-you h3 {
     color: #223246;
     margin-bottom: 20px;
     font-size: 28px;
     font-weight: bold;
 }

 .thank-you p {
     font-size: 16px;
     margin-bottom: 30px;
     line-height: 1.6;
 }

 .youtube-container {
     margin-top: 30px;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(34, 50, 70, 0.15);
     border: 3px solid #223246;
 }

 .youtube-container iframe {
     width: 100%;
     height: 400px;
     border: none;
 }

 /* Mobile Responsive Styles */
 @media (max-width: 768px) {
     .assessment-container {
         margin: 10px;
         border-radius: 8px;
     }

     .form-content {
         padding: 20px;
     }

     .form-step {
         padding: 20px;
     }

     .form-header {
         padding: 20px;
     }

     .form-header h2 {
         font-size: 22px;
     }

     .form-row {
         flex-direction: column;
         gap: 15px;
     }

     .button-group {
         flex-direction: column;
         gap: 15px;
     }

     .btn {
         width: 100%;
         min-width: auto;
     }

     .radio-option {
         padding: 12px;
     }

     .conditional-fields {
         padding: 15px;
     }

     .youtube-container iframe {
         height: 250px;
     }

     .form-step h3 {
         font-size: 20px;
     }
 }

 @media (max-width: 480px) {
     .assessment-container {
         margin: 5px;
     }

     .form-content {
         padding: 15px;
     }

     .form-step {
         padding: 15px;
     }

     .form-header {
         padding: 15px;
     }

     .form-header h2 {
         font-size: 20px;
     }

     .form-header p {
         font-size: 14px;
     }

     .assessment-form input,
     .assessment-form select {
         padding: 10px 12px;
         font-size: 14px;
     }

     .btn {
         padding: 12px 20px;
         font-size: 14px;
     }

     .radio-option {
         padding: 10px;
     }

     .radio-option label {
         font-size: 14px;
     }

     .youtube-container iframe {
         height: 200px;
     }
 }

 /* Focus and Accessibility Styles */
 .assessment-form input:focus,
 .assessment-form select:focus,
 .btn:focus,
 .radio-option:focus-within {
     outline: 3px solid rgba(34, 50, 70, 0.3);
     outline-offset: 2px;
 }

 /* Smooth transitions for all interactive elements */
 * {
     box-sizing: border-box;
 }

 .assessment-form input,
 .assessment-form select,
 .btn,
 .conditional-fields {
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* Custom scrollbar */
 .form-content::-webkit-scrollbar {
     width: 8px;
 }

 .form-content::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 4px;
 }

 .form-content::-webkit-scrollbar-thumb {
     background: #223246;
     border-radius: 4px;
 }

 .form-content::-webkit-scrollbar-thumb:hover {
     background: #1a2530;
 }

 .phone-formatted {
     font-family: monospace;
     letter-spacing: 1px;
 }


 input[type="radio"]:focus {
     outline: 2px solid #007cba;
     outline-offset: 2px;
 }

 .radio-group:focus-within {
     background-color: rgba(0, 124, 186, 0.05);
     border-radius: 4px;
 }

 .modal {
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
         right: 0;
     animation: fadeIn 0.3s;
 }

 .modal-content {
     background-color: #fefefe;
     margin: 5% auto;
     padding: 0;
     border: none;
     border-radius: 12px;
     width: 90%;
     max-width: 640px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
     animation: slideIn 0.3s;
 }

 .modal-header {
     background: linear-gradient(135deg, #223246 0%, #2c4263 100%);
     color: white;
     padding: 20px 30px;
     border-radius: 12px 12px 0 0;
     text-align: center;
 }

 .modal-header h3 {
     margin: 0;
     font-size: 20px;
     font-weight: 600;
     color: white;

 }

 .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    right: 10px;
    top: 5px;
    line-height: 1;
 }

 .close:hover,
 .close:focus {
     opacity: 0.7;
 }

 .zip-validation-status.validating {
     background-color: #fff3cd;
     color: #856404;
     border: 1px solid #ffeaa7;
 }

 .zip-validation-status.valid {
     background-color: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .zip-validation-status.invalid {
     background-color: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes slideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 @media (max-width: 600px) {
     .modal-content {
         width: 95%;
         margin: 20% auto;
     }

     .modal-header {
         padding: 15px 20px;
     }

     .modal-body {
         padding: 20px !important;
     }
 }
/* Callback Modal St/* Callback Modal Styles */
.callback-modal .modal-content {
    max-width: 500px;
    margin: 5% auto;
}

.customer-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 2px solid #e9ecef;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.customer-details h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.customer-details p {
    margin: 2px 0;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input[type="date"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.help-text {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Time Range Options - TWO COLUMN LAYOUT */
.time-range-options {
    display: grid;
    gap: 12px;
}

.time-range-options.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-option {
    position: relative;
}

.time-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 0;
    font-weight: 500;
}

.time-option label:hover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.time-option input[type="radio"]:checked + label {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.time-option input[type="radio"]:checked + label::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #007bff;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #007bff;
}

.time-text {
    font-size: 12px;
    font-weight: 600;
    margin-left:20px;
}

.time-badge {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-badge.morning {
    background: #fff3cd;
    color: #856404;
}

.time-badge.afternoon {
    background: #d1ecf1;
    color: #0c5460;
}

/* Modal Footer */
.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    margin-top: 25px;
}

.modal-footer .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 450px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.callback-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.callback-summary h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
}

.summary-label {
    
    font-weight: 500;
}

.summary-value {
    color: #333;
    font-weight: 600;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}


/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .callback-modal .modal-content {
        margin: 2% auto;
        width: 95%;
    }
    
    .customer-summary {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .time-range-options.two-column {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .time-column {
        gap: 8px;
    }
    
    .time-option label {
        padding: 10px 12px;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .time-badge {
        align-self: flex-end;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 450px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.callback-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.callback-summary h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
}

.summary-label {
    
    font-weight: 500;
}

.summary-value {
    color: #333;
    font-weight: 600;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .callback-modal .modal-content {
        margin: 2% auto;
        width: 95%;
    }
    
    .customer-summary {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .time-option label {
        padding: 12px 15px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .time-badge {
        align-self: flex-end;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

#callbackRequestForm{
    padding:20px;
}
.elementor-widget-wrap{
    width: 110% !important;
}
.modal-body {
         padding: 10px !important;
     }