body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #547c8f;
  color: #fff;
}
.navbar {
  background: #547c8f;
}
.navbar .nav-link, .navbar-brand {
  color: #e1e1e1 !important;
  font-weight: 600;
  padding: 0.25rem 1rem;
  padding-inline: 1.4rem;
  transition: all 0.2s, color 0.2s;
  border-radius: 2rem;
  margin-inline: 0.2rem;
}
.navbar .nav-link:focus, .navbar .nav-link:hover {
  color: #005f73 !important;
  background: #fff !important;
  padding-inline: 1.1rem;
}

.navbar .nav-link.active {
  color: #353535 !important;
  background:rgb(235, 250, 255);
  padding-inline: 1.1rem;

}

.hero {
   background: linear-gradient(
      90deg,
      rgba(0, 32, 64, 0.6) 0%,
      rgba(0, 32, 64, 0.2) 60%,
      rgba(0,0,0,0) 100%
   ), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
   color: white;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   text-align: left;
   min-height: 400px;
   padding: 6rem 0 6rem 10vw;
}
.hero h1 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  text-shadow: 2px 2px 8px #003049;
}
.section {
   padding: 4rem 8vw;
   width: 100%;
   color: #222;
   background: #f8f9fa;
   box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section h2 {
  text-align: center;
}

.review-form h3 {
  text-align: center;
}

/* Homepage section customizations */
.home-section {
  border-top: .5px solid #ffffff9c;
  border-radius: 0 !important;
  padding: 6rem 14vw;
  padding-bottom: 2rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.section-title {
  font-weight: 700;
  color: #005f73;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.section-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #0077b6;
  margin-top: 0.5rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.section-link:hover,
.section-link:focus {
  color: #023e8a;
  text-decoration: underline;
}

/* Ensure modal text is visible on white background */
.modal-content,
.modal-content .modal-body,
.modal-content .modal-title,
.modal-content p,
.modal-content .fst-italic {
  color: #222 !important;
}

/* Alternating gradient backgrounds for homepage sections */
.section-gradient-a {
  background: linear-gradient(135deg, #f8f9fa 0%, #e0f7fa 100%);
}
.section-gradient-b {
  background: linear-gradient(135deg, #e0ecff 0%, #f8f9fa 100%);
}
.card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #222;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px) scale(1.02);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.card img:hover {
  transform: scale(1.05);
}
.testimonial {
  font-style: italic;
  color: #005f73;
}
footer {
  background: #547c8f;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
.footer-section h3 {
  color: rgb(231, 231, 231) ;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #acced9;
  text-decoration: none;
}
.footer-section a:hover {
  text-decoration: underline;
}
.social-icons img {
  width: 36px;
  margin: 0 8px;
  vertical-align: middle;
}