/* Feedback Section Styling */
.feedback-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f9 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-card {
  background: #fff;
  padding: 44px 34px;
  border-radius: 8px;
  border: 1px solid #dbe3ea;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.feedback-card:hover {
  box-shadow: 0 30px 75px rgba(17, 24, 39, 0.18);
}

.feedback-header {
  text-align: center;
  margin-bottom: 30px;
}

.feedback-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #172033;
}

.feedback-header h2 span {
  color: #0f766e;
}

.divider {
  width: 60px;
  height: 4px;
  background: #0f766e;
  border-radius: 5px;
  margin: 10px auto 15px;
}

.separater{
	position:relative;
	width:106px;
	height:7px;
	margin-top:8px !important;
	margin-bottom:6px;
	background:url(../images/icons/separater.png) no-repeat;
    margin-left: auto;
    margin-right: auto;
}


.feedback-header p {
  font-size: 16px;
  color: #5d6b7f;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input {
  flex: 1 1 30%;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  transition: border 0.3s ease;
  background: #fff;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #0f766e;
  outline: none;
  background: #fff;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #0f766e, #115e59);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #111827;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
