.nicg-review-wrapper {
max-width: 720px;
margin: 40px auto;
padding: 35px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.10);
font-family: Arial, Helvetica, sans-serif;
color: #333333;
}

.nicg-review-wrapper h1 {
color: #2259a8;
text-align: center;
margin-bottom: 10px;
font-size: 30px;
}

.nicg-review-wrapper .intro {
text-align: center;
font-size: 17px;
line-height: 1.5;
margin-bottom: 30px;
}

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

.nicg-form-group label.main-label {
display: block;
font-weight: bold;
margin-bottom: 8px;
font-size: 16px;
}

.nicg-form-group input[type="text"] {
width: 100%;
padding: 12px;
font-size: 16px;
border: 1px solid #cccccc;
border-radius: 6px;
box-sizing: border-box;
}

.nicg-question {
margin-top: 28px;
padding-top: 20px;
border-top: 1px solid #eeeeee;
}

.nicg-question-title {
display: block;
font-weight: bold;
font-size: 17px;
margin-bottom: 14px;
}

.nicg-radio {
display: block;
margin: 10px 0;
font-size: 16px;
}

.nicg-radio input {
margin-right: 8px;
}

.nicg-required {
color: #c62828;
}

.nicg-review-button {
display: block;
width: 100%;
margin-top: 30px;
padding: 16px 20px;
border: none;
border-radius: 7px;
background: #2259a8;
color: #ffffff;
font-size: 19px;
font-weight: bold;
cursor: pointer;
text-align: center;
transition: background 0.2s ease;
}

.nicg-review-button:hover {
background: #18457f;
}

.nicg-review-button:disabled {
background: #aaaaaa;
cursor: not-allowed;
}

.nicg-note {
text-align: center;
margin-top: 16px;
color: #666666;
font-size: 14px;
}

.nicg-error {
display: none;
color: #c62828;
background: #fff3f3;
border: 1px solid #e5b7b7;
padding: 12px;
border-radius: 6px;
margin-top: 20px;
text-align: center;
}

How Did We Do?

Thank you for choosing NIC Group. We hope your recent support experience
met your expectations. Your feedback helps us continue to provide the
responsive, professional IT support our clients depend on.


1. Was your support issue resolved to your satisfaction?
*

Yes

Partially

No


2. How would you rate your overall experience with NIC Group support?
*

Excellent

Good

Fair

Poor

Please complete all required fields before continuing.

Your feedback is greatly appreciated. Thank you for allowing NIC Group
to support your business.

document.getElementById("nicgReviewForm").addEventListener("submit", function(event) {

event.preventDefault();

const form = event.target;
const errorBox = document.getElementById("nicgError");

if (!form.checkValidity()) {

errorBox.style.display = "block";
form.reportValidity();
return;

}

errorBox.style.display = "none";

// NIC Group Google Review URL
const googleReviewURL =
"https://g.page/r/CSieh2Pate7nEBM/review";

// Redirect visitor to Google Reviews
window.location.href = googleReviewURL;

});