/* General Body Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #003366; /* Dark blue background */
  color: grey; /* Ensures readable text */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 0;
  font-weight: bold; /* Makes header text bold */
}

/* Navigation Links */
header .nav-link {
  color: blue !important;
  font-weight: bold; /* Makes navigation links bold */
}

/* Hero Section */
.hero-section {
  background: #f8f9fa;
  padding: 50px 0;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.video-wrapper {
  margin: 20px auto;
  max-width: 640px;
}

/* Services Overview Section */
.services-overview {
  padding: 40px 0;
}
.services-overview h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}
.services-overview p {
  font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
  padding: 40px 0;
  background: #e9ecef;
}
.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.why-choose h4 {
  margin-top: 20px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
footer img {
  margin-bottom: 10px;
}

/* Map Responsive */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .video-wrapper {
    width: 100%;
    padding: 0 10px;
  }
}