.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; 
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-light:hover,
.btn-light:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-outline-light {
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 6px;
}

.brand {
  color: #f8f9fa;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.brand:hover {
  color: #ffb482;
  border-color: rgba(255, 180, 130, 0.6);
  box-shadow: 0 12px 32px rgba(255, 140, 66, 0.25);
}

.top-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill-link {
  color: #e6e9f1;
  text-decoration: none;
  padding: 6px 8px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pill-link:hover,
.pill-link:focus {
  color: #ffb482;
  border-color: #ffb482;
}

.nav-cta {
  color: #ffb482;
  border-color: #ffb482;
}

.nav-cta:hover,
.nav-cta:focus {
  color: #ffceae;
}

.subtle-link {
  color: #cdd3df;
}

.tagline-header{
  font-size: medium;
  font-weight: bold;
  padding-top: 10px;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 12px auto 0; /* Centered under the image */
  text-align: center;
  display: inline-block;
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 60% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}



.pimg{
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: rgb(139, 137, 137);
}

.name{
  padding-top: 20px;
  font-weight: bold;
}

.lead{
  padding-top: 10px;
}

.title{
  font-size: 30px;
}

.about {
  max-width: 36rem;
  margin: 10px auto 0;
  color: #e2e6f1;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 10px;
}

.chip {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #f4f5f7;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.links a {
  color: #f4f5f7;
  font-size: 18px;
}

.links a:hover {
  color: #ffb482;
}

.footer-links {
  margin-top: 8px;
  gap: 20px;
}

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f5f7;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.tagline-inline {
  display: flex;
  justify-content: center;
  margin: 6px 0 14px;
}

.tagline-block {
  display: flex;
  justify-content: center;
  margin: 0 0 64px;
}


body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  background: radial-gradient(circle at 20% 20%, rgba(255, 140, 66, 0.15), transparent 30%), radial-gradient(circle at 80% 0%, rgba(88, 135, 255, 0.18), transparent 25%), #0b0f16;
  font-family: 'Ubuntu', sans-serif;
}

.cover-container {
  max-width: 42em;
}


.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.fotertxt{
  color: #fff;
}
