/* General Styles */
body {
  font-family: "Arial", sans-serif;
  color: #333;
}

/* Navbar Styles */
.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hero Section Styles */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #222222; /* Dark background */
}
#hero h1 {
  font-size: 3rem;
  font-weight: bold;
}
#hero .btn {
  background-color: #ffffff;
  color: #006d6a;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
#hero .btn:hover {
  background-color: #005c58;
  color: #ffffff;
  border-color: #005c58;
}

/* Service Card Styles */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.card-body {
  flex-grow: 1;
  padding: 20px;
  text-align: center;
}
.card {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border: none;
  background-color: #006d6a; /* Deep teal color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Section Styles */
#mission {
  background-color: #f8f9fa; /* Light background */
  padding: 40px 0;
}
#services .container {
  padding: 40px 0;
}

/* CTA Section Styles */
#cta {
  background-color: #006d6a;
  color: white;
  text-align: center;
  padding: 50px 0;
}
#cta h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#cta p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}
#cta .btn {
  background-color: #ffffff;
  color: #006d6a;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 30px;
  font-size: 1.125rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}
#cta .btn:hover {
  background-color: #005c58;
  color: #ffffff;
  border-color: #005c58;
}

/* Footer Styles */
footer {
  background-color: #333333;
  color: white;
  padding: 20px 0;
  text-align: center;
}
footer p {
  font-size: 1rem;
}
