
.contact {
  text-align: center;
  margin-top: 40px;
}

.contact-info {
  font-size: 1.2em;
  margin-top: 10px;
}


/* other  */
/* Base Styles */

.container {
  width: 80%;
  margin: 50px auto;
  text-align: center;
}


p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

/* Service Cards Container */
.service-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  padding: 0 10px;
  grid-auto-rows: minmax(200px, auto); /* Ensures card height adapts */
}

/* Service Card Style */
.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card i {
  font-size: 50px;
  color: #4CAF50;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

/* Responsive Breakpoints */

/* Small Devices (Mobile) */
@media screen and (max-width: 600px) {
  .service-cards-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}

/* Medium Devices (Tablets) */
@media screen and (min-width: 601px) and (max-width: 900px) {
  .service-cards-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10px;
  }

  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1.1rem;
  }
}

/* Large Devices (Desktop) */
@media screen and (min-width: 901px) {
  .service-cards-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 10px;
  }

  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.2rem;
  }
}
