 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* Top Header Bar */
.top-bar {
  background-color: #6B3610;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  border-top: 3px solid #2f4034; /* Dark green top line */
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.top-bar .social-icons i {
  color: white;
  font-size: 20px;
}

.contact-info span {
  margin-right: 20px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-icons a {
  color: #000;
  text-decoration: none;
  margin-left: 12px;
  font-size: 16px;
}

.social-icons a:hover {
  color: #6B3610;
}
/* Make the entire .service-card clickable and styled as a block */
.service-card {
  display: block;
  text-decoration: none; /* Removes underline */
  color: inherit;         /* Inherit text color from parent */
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: scale(1.02); /* Slight zoom on hover */
}

/* Optional: style inner elements */
.service-card h4,
.service-card span {
  margin: 0;
}








.services-section {
  padding: 2rem;
  max-width: 1800px;
  margin: 0 auto;
  background-color: #ffffff;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  color: #6B3610;
  text-align: center;
  margin: 0 0 1rem 0;
  padding: 0;
  letter-spacing: 0.2px;
}


.service-category h3 {
  font-size: 0.9rem;
  color: #aaaaaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}


.service-category {
  margin-bottom: 2.5rem;
  margin-top: 20px;
}

.service-category h3 {
  font-size: 1.4rem;
  color: #6B3610;
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 columns */
  gap: 1.5rem;
}

.service-card {
  background-color: #6B3610;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  font-size: 18px;
}

.service-card:hover {
  background-color: #E5742B;
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-right: 1rem;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  border-radius: 8px; /* Rounded edges */
}



.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.service-card a {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Tablets: 768px to 992px */
@media (max-width: 992px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card h4 {
    font-size: 1.3rem;
  }
}

/* Phones: below 768px */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px;
  }

  .card-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
    text-align: left;
  }

  .service-category h3 {
    font-size: 1.1rem;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card img {
    margin-bottom: 0.5rem;
  }
}

