.bsb-hero-1 {
    background-image: url('../img/medium-shot-smiley-friends-with-phone.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.bsb-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bsb-hero-1 .container {
    position: relative;
    z-index: 2;
}






/* Pink theme overrides */
.navbar-secondary {
    background-color: #f4f4f4 !important; /* Dark bg for contrast */
}
.navbar-secondary .navbar-brand {
    color: #ff66c4; /* Pink logo text */
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar-secondary .nav-link {
    color: #ffffff; /* White text */
}
.navbar-secondary .nav-link:hover,
.navbar-secondary .nav-link.active {
    color: #ff66c4; /* Pink on hover/active */
}
.navbar-secondary .social-icon {
    color: #ffffff;
    font-size: 1.2rem;
}
.navbar-secondary .social-icon:hover {
    color: #ff66c4;
}
/* Sticky positioning */
.navbar-sticky {
    position: sticky;
    top: 0; /* Adjust if primary navbar exists */
    z-index: 1020;
}

/* Add to your CSS file */
.navbar-toggler {
    border-color: #ff69b4 !important; /* Pink border */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff69b4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 180, 0.25) !important; /* Pink focus shadow */
}


#get-help {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

#get-help .card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#get-help .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#get-help h2 {
  color: #a100f2;
}

.badge {
  background-color: #a100f2;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bg-primary {
  background-color: #a100f2;
  color: #fff;
}