/* ===============================
   PAGE BACKGROUND
================================ */
body {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  min-height: 100vh;
}

/* ===============================
   CARD STYLE
================================ */
.card {
  border: none;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: #ffffff;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===============================
   HEADER
================================ */
.card h4 {
  font-weight: 700;
  color: #1f2937;
}

.card small {
  color: #6b7280;
}

/* ===============================
   INPUT FIELDS
================================ */
.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* Focus Glow */
.form-control:focus,
.form-select:focus {
  border-color: #f3740b;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* ===============================
   TEXTAREA
================================ */
textarea.form-control {
  resize: none;
}

/* ===============================
   BUTTON STYLE
================================ */
.btn-primary {
  background: linear-gradient(135deg, #f3740b, #f3740b);
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f3740b, #f3740b);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(79,70,229,0.3);
}

/* ===============================
   ADD MORE LINK
================================ */
#moreless {
  font-weight: 500;
  cursor: pointer;
  color: #f3740b;
  text-decoration: none;
  transition: 0.2s;
}

#moreless:hover {
  color: #f3740b;
  text-decoration: underline;
}

/* ===============================
   FOOTER
================================ */
.footer-links a {
  color: #6b7280;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #f3740b;
}

/* ===============================
   LABELS
================================ */
label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}

/* ===============================
   SMOOTH FADE IN
================================ */
.card {
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   MOBILE IMPROVEMENTS
================================ */
@media (max-width: 768px) {
  .card {
    padding: 20px !important;
  }

  .form-control,
  .form-select {
    font-size: 15px;
  }
}

.footer-links a {
  color: #6c757d;
  transition: 0.2s;
}
.footer-links a:hover {
  color: #f3740b;
}

.input-group-text iconify-icon {
  font-size: 18px;
  color: #f3740b;
}

.input-group-text {
  border-right: 0;
}

.form-control,
.form-select {
  border-left: 0;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f3740b, #f3740b);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.icon-circle iconify-icon {
  font-size: 26px;
  color: #fff;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-label iconify-icon {
  font-size: 18px;
  color:#f3740b;;
}

.add-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f3740b;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.add-more-btn iconify-icon {
  font-size: 18px;
}

.input-group-text iconify-icon {
  font-size: 16px;
  color: #666;
}


.add-more-btn {
  text-decoration: none;
  font-weight: 600;
  color: #f3740b;
}

.add-icon {
  font-size: 20px;
  margin-right: 6px;
  transition: 0.3s;
}

.add-more-btn:hover .add-icon {
  transform: rotate(90deg) scale(1.15);
}


.service-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.service-icon {
  font-size: 20px;
  color: #f3740b;
  transition: 0.3s ease;
}

.service-label:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
}