.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.services-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #444;
}

.services-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.service-card {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 2.5em;
  color: #007bff;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #555;
}

.service-card p {
  font-size: 1em;
  line-height: 1.6;
}

body.dark-mode .services-section {
  padding: 60px 20px;
  background-color: #111; /* Dark background for dark mode */
  color: #ffffff; /* Light text color for visibility */
}

body.dark-mode .services-section h2 {
  color: #e0e0e0; /* Softer light color for headings */
}

body.dark-mode .services-section p {
  color: #d3d3d3; /* Softer light color for paragraphs */
}

body.dark-mode .service-card {
  background-color: #222; /* Slightly lighter dark background for cards */
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1); /* Subtle light shadow for contrast */
}

body.dark-mode .service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2); /* Enhanced hover shadow in dark mode */
}

body.dark-mode .service-card i {
  color: #1e90ff; /* Bright accent color for icons */
}

body.dark-mode .service-card h3 {
  color: #f0f0f0; /* Light heading color for dark mode */
}

body.dark-mode .service-card p {
  color: #cccccc; /* Softer light color for card text */
}


.service-card:nth-child(3) i {
  color: #1e90ff; /* Blue for WordPress/Wix */
}

.service-card:nth-child(4) i {
  color: #32cd32; /* Green for "Build and Hand Off" */
}

.service-card:nth-child(5) i {
  color: #ffa500; /* Orange for "Build and Maintain" */
}

.service-card:nth-child(6) i {
  color: #800080; /* Purple for SEO and Google Setup */
}


@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-card i {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

body.dark-mode .service-card:hover i {
  color: #87cefa; /* Slightly lighter color on hover for better interaction */
}

