.space{
        margin-top: 100px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.services-section {
   background: linear-gradient(to right, #eff6ff, #d1fae5);
  padding: 100px 0;

}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
}

.services-header .highlight {
  color: #2563eb;
}

.services-header p {
  font-size: 1.2rem;
  color: #4b5563;
  max-width: 700px;
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
  font-weight: bold;
}

.icon-circle.blue { background: #dbeafe; color: #2563eb; }
.icon-circle.green { background: #d1fae5; color: #16a34a; }
.icon-circle.purple { background: #ede9fe; color: #7c3aed; }
.icon-circle.orange { background: #ffedd5; color: #ea580c; }

.service-card h3 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 12px;
}

.service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-card ul li {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 8px;
}

.btn {
  background: linear-gradient(to right, #2563eb, #22c55e);
  border: none;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(to right, #1e3a8a, #15803d);
}
/*-------------------------------------------------------------*/
.services-section {
  padding: 5rem 1rem;
  background: linear-gradient(to right, #eff6ff, #d1fae5);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  font-weight: bold;
}

.section-header .highlight {
  color: #2563eb;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  color: #4b5563;
  font-size: 1.1rem;
}

.services-group {
  margin-bottom: 4rem;
}

.services-group h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #111827;
  font-weight: bold;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-grid.small {
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-card .icon {
  background-color: #dbeafe;
  color: #2563eb;
  font-size: 2rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.service-card h4 {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

.cta-button {
  text-align: center;
  margin-top: 3rem;
}

.btn-devis {
  display: inline-block;
  background: linear-gradient(to right, #2563eb, #22c55e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-devis:hover {
  background: linear-gradient(to right, #1e40af, #15803d);
}

