/* === Navbar === */
.navbar-custom {
  background-color: white;
  border-bottom: 1px solid #000000;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #111111;
  font-weight: 500;
}

.navbar-custom .nav-link:hover {
  color: #0077B6; /* Slight hint of brand color on hover */
}

/* === Slider === */
.slider-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 5px;
}

/* === Service Section === */
.service-card {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  margin: 20px auto;
  max-width: 900px;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
}

.service-card h5 {
  color: #023E8A;
}

/* === Button === */
.btn-primary {
  background-color: #0077B6;
  border-color: #0077B6;
  color: white;
}

.btn-primary:hover {
  background-color: #023E8A;
  border-color: #023E8A;
}
.btn-outline-primary {
  color: #0077B6;
  border-color: #0077B6;
}

.btn-outline-primary:hover {
  background-color: #0077B6;
  color: white;
}



/* === Footer === */
.footer-custom {
  background-color: #161A1D;
  color: #F8F9FA;
  padding: 40px 0 20px 0;
}

.footer-custom h5 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-custom a {
  color: #F8F9FA;
  text-decoration: none;
}

.footer-custom a:hover {
  color: #0077B6;
}

/* === Social Icons === */
.social-icons a {
  color: #0077B6; /* Or #000000 for black */
  font-size: 1.25rem;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #023E8A; /* Darker shade on hover */
}


/* === Body and Utility === */
body {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.phone-field-wrapper {
    display: flex;
    gap: 10px; /* spacing between select and input */
    align-items: stretch; /* align items to stretch */
}

.phone-field-wrapper select {
    width: 100px; /* or whatever you want */
    flex-shrink: 0;
}

.phone-field-wrapper input {
    flex: 1; /* takes remaining space */
}


/* Form error message styling */
.errorlist {
    color: red; /* Red color for all error messages in the list */
}

.errorlist li {
    color: red; /* Ensuring each list item is also red */
}

/* Flash message styling */
.alert-error {
    color: red; /* Red text color */
    background-color: #f8d7da; /* Light red background */
    border-color: #f5c6cb; /* Border to match the background */
}

/* === Service Stat Card === */
.service-stat-card {
  background: #0077B6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  margin: 20px auto;
  max-width: 900px;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
}
.service-stat-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
}
.service-stat-value {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
}

