
.services-section, .process-section, .contact-section {
  padding: 60px 20px;
  /* background-color: #f9f9f9; */
  animation: fadeInUp 1s ease-in-out;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}.services-section{
  margin-top: 4%;
}

.services-section h2, .process-section h2, .contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: #007bff;
}

.service-cards, .process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-left: 5%;
}.service-cards{
  gap: 3%;
}

.service-card {
 
  background: transparent;
  border: 1px solid #ddd;
  /* padding: 130px; */
  width: 35%;
  margin-top: 2%;
  /* margin-left: 5%; */
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  /* margin: 10px; */
  flex: 1 1 30%;
  box-sizing: border-box;
  /* text-align: center; */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}.process-step{
  background: rgb(95, 95, 17);
  /* border: 1px solid #ff4500; */
  padding: 70px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-top: 5%;
  /* margin-left: 6%; */
  flex: 1 1 30%;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover{
  cursor: pointer;
  transform: translateY(-10px);
  background-color: #007bff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-card h3, .process-step h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: aqua;
}

.service-card p, .process-step p {
  color: white;
  font-size: 1em;
}

/* Contact Section */
.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: slideInUp 1s ease-in-out;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.3);
}

.form-group textarea {
  resize: vertical;
  height: 150px;
}

/* Button Styles */
button.new-cta-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

button.new-cta-button:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.scroll-animation {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.scroll-animation.visible {
  opacity: 1;
}







