html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
    background-color: #1b1b1b;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%231b1b1b"/><circle cx="10" cy="10" r="1" fill="%232a2a2a"/></svg>');
    background-repeat: repeat;
    color: #f5f5f5;
}

.section-heading {
    font-weight: 600;
    font-size: 2rem; 
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    color: #ffffff;
}


.section-heading::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, #7b3dd0, #00d4e1);
}

h1, h2, h3, h4, h5, h6 {
    color: #00d4e1;
    font-family: 'Roboto', sans-serif;
}

.card, .card-body {
  background-color: transparent !important;
  color: #ffffff !important;
}

.pretty-links {
  list-style-type: none;
  color: inherit;
}

footer {
  font-size: 0.8em;
  color: rgb(99, 98, 98);
}

.badge-wrapper iframe {
    border-radius: 8px; /* smooth corners */
    border: none;       /* remove default border if any */
    background-color: #1b1b1b; /* match container background */
}

.badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 576px) {
    .badge-wrapper {
        margin-bottom: 1rem;
    }
}


a.btn:hover {
    filter: brightness(1.1);
}



.badge-card {
    background-color: #2a2a2a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.badge-wrapper iframe {
    border-radius: 8px;
    border: none;
    background-color: #1b1b1b;
}

  p.lead {
      font-size: 1.15rem;
      line-height: 1.6;
  }