@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    color: rgb(199, 199, 199);
    background-color: #000f1a;
}

.center-box {
  width: 50%;
  margin: 0 auto;
}

.profile-img {
  border-radius: 50%;
}

.role {
  display: block;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.top-left {
  display: flex;
  align-items: center;
}

.top-left img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  margin: 0 8px;
}

.top-left p {
  font-size: 14px;
}

.top-right img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  margin: 0 8px;
}

/* .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container a {
  display: flex;            
  justify-content: center;   
  align-items: center;
  height: auto;
}

.img-container a img {
  object-fit: contain;         
  display: block;             
} */

.img-container {
  display: flex;
  justify-content: center;   /* center them as a group */
  align-items: center;
  gap: 40px;                 /* equal spacing between logos */
  padding: 20px 0;           /* some breathing room */
}

.img-container a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container a img {
  max-height: 60px;          /* caps logo height */
  max-width: 120px;          /* caps logo width */
  object-fit: contain;       /* keeps aspect ratio */
  display: block;
}

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

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 310px);
  gap: 2rem;

  justify-content: center; 
  align-content: start;

  width: 100%;
  max-width: 800px;
  padding: 1rem;
}

.holographic-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.holographic-card {
  width: 300px;
  height: 100px;
  background: #001a2b;
  display: flex;
  /* justify-content: center;
  align-items: center; */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
  flex-direction: column;
  padding: 0rem 1rem;
}

.holographic-card h2 {
  /* color: #0ff; */
  font-size: 15px;
  /* position: relative; */
  z-index: 2;
  margin: 0;
}

.holographic-card p {
    font-size: 11px;
    margin: 0;
}

.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
