body {
  font-family: 'Segoe UI', sans-serif;
}

header {
  background: linear-gradient(to right, #007bff, #0056b3);
}

h2 {
  margin-bottom: 20px;
}
#services {
  background-color: #f8f9fa;
}

.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.contact-section {
  background: linear-gradient(to right, #f8f9fa, #e9f1ff); /* Light gradient background */
  padding: 60px 0;
}

.contact-section form {
  background-color: #ffffff; /* White background for form */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-section input,
.contact-section textarea {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  transition: 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-section .btn-primary {
  background-color: #0062E6;
  border-color: #0056b3;
  border-radius: 30px;
  font-weight: 500;
}

.contact-section .btn-primary:hover {
  background-color: #0056b3;
  border-color: #004a99;
}


