/* Feedback Section Styling */
.feedback-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.feedback-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.feedback-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feedback-header {
  text-align: center;
  margin-bottom: 30px;
}

.feedback-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.feedback-header h2 span {
  color: #eb0028;
}

.divider {
  width: 60px;
  height: 4px;
  background: #007BFF;
  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: #666;
}

.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 #ddd;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  transition: border 0.3s ease;
  background: #fafafa;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #eb0028;
  outline: none;
  background: #fff;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #eb0028;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #eb0027e9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
