/* Optional: Import a Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");

body {
  font-family: "Poppins", sans-serif; /* Apply the imported font */
}

/* Add some smooth scrolling for internal links */
html {
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
}

/* Ensure sections have consistent padding, adjust as needed */
section {
  padding-top: 60px; /* Adjust based on your sticky navbar height */
  padding-bottom: 60px;
}

/* Add some space below the navbar */
body {
  padding-top: 0px; /* Default Bootstrap navbar height, adjust if yours is different */
}

/* Style the hero section slightly */
#home {
  background-color: #f8f9fa; /* Light background for hero */
}

/* Make the embedded map responsive */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

/* Optional: Add hover effects to service cards */
#services .card:hover,
#stats .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Enhance shadow on hover */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Style the "Why Us" icons */
#why-us .bi {
  font-size: 1.8rem; /* Make icons a bit larger */
}

/* Ensure placeholder images have a background */
img[src^="https://placehold.co"]
{
  background-color: #eee;
}
