.info-card{
  position: relative;
  padding: 26px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow: hidden;
}

/* subtle glow blobs */
.info-card::before,
.info-card::after{
  content:"";
  position:absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
}
.info-card::before{
  top: -220px;
  right: -180px;
  background: rgba(255,255,255,.45);
}
.info-card::after{
  bottom: -240px;
  left: -200px;
  background: rgba(0,0,0,.35);
  opacity: .18;
}

.info-card__header{
  display:flex;
  align-items:flex-start;
  gap: 14px;
}

.info-badge{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
  flex: 0 0 auto;
}
.info-badge i{ font-size: 1.25rem; color:#fff; }

.info-title{
  color:#fff;
  font-weight: 700;
  letter-spacing: .2px;
  margin: 0;
}
.info-subtitle{
  color: rgba(255,255,255,.85);
  max-width: 62ch;
  line-height: 1.45;
}

.info-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-item{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(13,110,253,.08);
}
.info-item__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  flex: 0 0 auto;
}
.info-item__icon i{ color:#fff; font-size: 1.1rem; }

.info-item__title{
  color:#fff;
  font-weight: 700;
  margin-bottom: 2px;
}
.info-item__text{
  color: rgba(255,255,255,.86);
  line-height: 1.45;
}

.info-footer{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items:center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.info-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info-chip{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .9rem;
}

.info-note{
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  display:flex;
  align-items:center;
}

/* On larger screens, make the items feel more "designed" */
@media (min-width: 992px){
  .info-grid{
    grid-template-columns: 1fr 1fr;
  }
  .info-grid .info-item:last-child{
    grid-column: 1 / -1;
  }
}

/* Center arrow / pill toggle */
.info-toggle-wrap{
  display: grid;
  place-items: center;
  margin: 8px 0 12px;
}

.info-toggle-btn{
  background: transparent;
  border: 0;
  padding: 0;
}

.info-toggle-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2.5px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.info-toggle-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.26);
}

.info-toggle-text{
  font-weight: 600;
  letter-spacing: .2px;
  font-size: .98rem;
}

.info-toggle-icon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,.35);
  border: 1px solid rgba(255,255,255,.22);
}

.info-toggle-icon i{
  font-size: 0.7rem;
  color: #fff;
  transition: transform .22s ease;
}

/* Rotate arrow when expanded */
.info-toggle-btn[aria-expanded="true"] .info-toggle-icon i{
  transform: rotate(180deg);
}

/* Optional: add a small separator line behind the pill (nice "middle" feel) */
.info-toggle-wrap::before{
  content:"";
  width: min(520px, 92%);
  height: 1px;
  background: rgba(255,255,255,.22);
  position: absolute;
  transform: translateY(0);
  z-index: 0;
}

.info-toggle-wrap{
  position: relative;
}
.info-toggle-btn{
  position: relative;
  z-index: 1;
}

/* =========================
   Info text (your 3 sentences) — icons + tighter spacing
   Add these classes in HTML:
   .info-text, .info-line, .info-dot
   ========================= */

.info-text{
  display: flex;
  flex-direction: column;
  gap: 10px;                 /* smaller space between sentences */
}

.info-line{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* icon bubble */
.info-dot{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: rgba(13,110,253,.35);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.info-dot i{
  color: #fff;
  font-size: 1.05rem;
}

.info-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 7px;

  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,0) 45%),
              linear-gradient(145deg, rgba(13,110,253,.95), rgba(13,110,253,.55));

  box-shadow:
    0 0 0 2px rgba(255,255,255,.28),
    0 6px 14px rgba(0,0,0,.25);
}

/* make paragraph spacing tighter inside info-card */
.info-card p{
  padding-bottom: 2 !important;     /* overrides pb-3 */
  margin-bottom: 0 !important;
  line-height: 1.45;
  color: rgba(255,255,255,.90);
}

/* if you want a tiny spacing after the last line only (optional) */
.info-text .info-line:last-child{
  margin-bottom: 2px;
}

/* slightly smaller padding on the card to match compact text (optional but nice) */
.info-card{
  padding: 22px 24px;
}

.info-check{
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(145deg, #20c997, #198754);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(32,201,151,.45);
  flex: 0 0 auto;
  margin-top: 4px;
}

.info-check i{
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
}

/* FIX IMAGE CIRCLE */
.avatar-wrapper {
    width: 200px;           /* same width */
    height: 200px;          /* same height */
    border-radius: 50%;
    overflow: hidden;       /* forces circular crop */
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE ALWAYS FILLS CIRCLE */
.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* no distortion */
}


/* ONLY affects cards that have .team-card */
.team-card {
    height: 430px;     /* pick what you want */
    display: flex;
}

/* make inner content fill the fixed box */
.team-card .team-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* keep top section same height so text doesn't change card shape */
.team-card .text-center.border-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* keep buttons always at the bottom */
.team-card .d-flex.justify-content-center {
    margin-top: auto;
}

/* Let menus render above neighbors */
.dropdown-menu {
  z-index: 9999 !important;
}

/* When a dropdown is open, lift its card above the rest */
.card.dropdown-open {
  position: relative;
  z-index: 9998;
}

/* Optional but recommended: prevent hover-transforms from covering menus
   while ANY dropdown is open on the page */
body.dropdown-any-open .card-hover:hover {
  transform: none !important;
}

.welcome-card{
  position:relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(13,110,253,.12);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.06);
  overflow:hidden;
}

.welcome-accent{
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 220px at 12% 0%, rgba(13,110,253,.18), transparent 55%),
    radial-gradient(500px 220px at 88% 10%, rgba(32,201,151,.14), transparent 55%);
  pointer-events:none;
}

.welcome-card > *{ position:relative; } /* keep content above accent */

.welcome-icon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);
  color: #0d6efd;
  flex: 0 0 auto;
}

.welcome-icon i{ font-size: 1.4rem; }

.welcome-bullets{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  margin-top:.35rem;
}

.welcome-bullets .wb{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  font-size:.95rem;
  color:#495057;
}

.welcome-bullets .wb i{
  color:#0d6efd;
  margin-top:.15rem;
}
