/* View Available Caregivers Section - Light Blue Version */
.view-available-caregivers-bg {
  background: #e6f2ff; /* Soft light blue background */
  padding: 80px 0;
  color: #2c4964; /* Dark blue text for contrast */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.view-available-caregivers-bg .container {
  position: relative;
  z-index: 2;
}

.view-available-caregivers-bg h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c4964;
}

.view-available-caregivers-bg p {
  font-size: 18px;
  color: #4a6b8a;
  margin-bottom: 0;
}

.cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  color: #fff;
  background: #47b2e4;
  box-shadow: 0 5px 15px rgba(71, 178, 228, 0.3);
  text-transform: uppercase;
  border: 2px solid transparent;
}

.cta-btn:hover {
  background: #fff;
  color: #47b2e4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(71, 178, 228, 0.4);
  border-color: #47b2e4;
}

/* Decorative elements */
.view-available-caregivers-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: url('../img/dots-light-blue.png') no-repeat;
  opacity: 0.3;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .view-available-caregivers-bg .text-lg-start {
    text-align: center !important;
  }
  
  .view-available-caregivers-bg .cta-btn-container {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .view-available-caregivers-bg {
    padding: 60px 0;
  }
  
  .view-available-caregivers-bg h3 {
    font-size: 24px;
  }
  
  .view-available-caregivers-bg p {
    font-size: 16px;
  }
  
  .cta-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .view-available-caregivers-bg::after {
    width: 100px;
    height: 100px;
  }
}

/* Caregiver Banner Section */
.caregiver-banner {
  background: url("../img/caregiver-banner.jpg") center center/cover no-repeat;
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.caregiver-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 33, 61, 0.55); /* lighter overlay so text is visible */
  z-index: 1;
}

.caregiver-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.caregiver-banner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.caregiver-banner p {
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.caregiver-banner .btn-register {
  background: #5bc0de; /* Light blue */
  color: #fff;
  padding: 14px 40px;
  border-radius: 60px; /* More rounded */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.caregiver-banner .btn-register:hover {
  background: #31b0d5; /* Darker shade of light blue on hover */
  transform: translateY(-3px);
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .caregiver-banner {
    height: 280px;
  }
  .caregiver-banner h2 {
    font-size: 24px;
  }
  .caregiver-banner p {
    font-size: 16px;
  }
}
