/* Custom Styles */
body {
  font-family: 'Inter', sans-serif;
  color: #343a40;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1607746882042-944635dfe10e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  height: 90vh;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.6); /* dark overlay */
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* CTA Section */
.cta-section {
  background-color: #e63946;
  height: 50vh;
}

/* Cards hover effect */
.hover-zoom:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

.card {
  border-radius: 1rem;
}

/* Footer */
footer {
  font-size: 0.9rem;
}



.custom-billboard {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full viewport height */
  background-image: url('image.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.custom-billboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.custom-billboard .content {
  position: relative;
  z-index: 2;
}

.custom-billboard h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.custom-billboard p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.custom-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: white;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.custom-button:hover {
  background-color: #0056b3;
}

        /* Custom overrides for Bootstrap */
        .bls-hero {
          background-color: #fff;
          padding: 3rem 0;
          position: relative;
      }
      
      .breadcrumb-nav {
          font-size: 0.875rem;
          margin-bottom: 1.5rem;
      }
      
      .breadcrumb-nav a {
          color: var(--bs-primary);
          text-decoration: none;
      }
      
      .breadcrumb-nav .separator {
          color: #6c757d;
          padding: 0 5px;
      }
      
      .bls-heading {
          font-size: 2.5rem;
          font-weight: 700;
          color: #212529;
          margin-bottom: 1rem;
          line-height: 1.2;
      }
      
      .bls-subheading {
          font-size: 1.25rem;
          color: #495057;
          margin-bottom: 1.5rem;
          line-height: 1.4;
      }
      
      .bls-features {
          list-style: none;
          padding-left: 0;
          margin-bottom: 2rem;
      }
      
      .bls-features li {
          position: relative;
          padding-left: 1.5rem;
          margin-bottom: 0.75rem;
          font-size: 1.1rem;
          color: #212529;
      }
      
      .bls-features li:before {
          content: "•";
          color: var(--bs-primary);
          position: absolute;
          left: 0;
          font-weight: bold;
      }
      
      .btn-bls-primary {
          background-color: var(--bs-primary);
          color: white;
          padding: 0.75rem 1.5rem;
          font-weight: 600;
          border-radius: 4px;
          border: none;
          transition: all 0.3s ease;
      }
      
      .btn-bls-primary:hover {
          background-color: #0a58ca;
          transform: translateY(-2px);
          box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }
      
      .group-cert-link {
          color: var(--bs-primary);
          text-decoration: none;
          font-weight: 500;
      }
      
      .group-cert-link:hover {
          text-decoration: underline;
      }
      
      .rating-badge {
          display: inline-flex;
          align-items: center;
          background: white;
          padding: 0.5rem 0.75rem;
          border-radius: 6px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
          margin-top: 1.5rem;
      }
      
      .rating-badge img {
          width: 20px;
          height: 20px;
          margin-right: 8px;
      }
      
      .rating-stars {
          display: flex;
          align-items: center;
          margin-left: 8px;
      }
      
      .rating-stars img {
          width: 17px;
          height: 17px;
          margin-right: 2px;
      }
      
      .cert-card-img {
          max-width: 100%;
          height: auto;
          border-radius: 8px;
          box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      }
      
      @media (max-width: 991.98px) {
          .bls-hero {
              padding: 2rem 0;
          }
          
          .bls-heading {
              font-size: 2rem;
          }
          
          .bls-subheading {
              font-size: 1.1rem;
          }
          
          .cert-card-img {
              margin-top: 2rem;
          }
      }
      
      :root {
          --bs-primary: #0d6efd; /* Bootstrap primary color - can be changed */
      }

      /* Additional preserved custom styles */
      .indexheader {
          color: #333;
          margin-bottom: 1rem;
      }
      .img-padding {
          padding: 0 15px 15px 0;
      }
      .list-font li {
          font-size: 1rem;
          line-height: 1.6;
      }
      .submitbutton {
          display: inline-block;
          background: #e63946;
          color: white;
          padding: 10px 20px;
          border-radius: 4px;
          text-decoration: none;
          font-weight: bold;
      }
      .footer {
          background: #f8f9fa;
          padding: 2rem 0;
          margin-top: 2rem;
      }