body {
  background: linear-gradient(
    to bottom,
    #1e1b4b 0%,
    #2b2886 20%,
    #0f172a 50%,
    #050505 100%
  ) !important;
}


/* HERO (ONLY TEAM PAGE BG CHANGE) */
.team-hero{
  text-align:center;
  padding:100px 20px;
   background: transparent;
}


.team-hero h1{
  font-size:42px;
  font-family:'Orbitron';
}

.team-hero p{
  opacity:0.8;
}

/* BELOW = PREMIUM BLACK */
.team-section{
  background: transparent;
  display:flex;
  justify-content:center;
  gap:30px;
  padding:60px 20px;
  flex-wrap:wrap;
}


/* CARD */
.member-card{
  width:260px;
  padding:20px;
  border-radius:20px;
  


  background: rgba(255,255,255,0.05); 
  backdrop-filter: blur(12px);

  text-align:center;
  transition:0.3s;
}

.member-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 25px #130629;
}

.member-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
}

.member-card h2{
  font-family:'Orbitron';
}

.member-card p{
  font-size:14px;
  opacity:0.8;
}

.member-card button{
  margin-top:10px;
  padding:8px 15px;
  border:none;
  border-radius:20px;
  background:#7c3aed;
  color:white;
  cursor:pointer;
}

/* 📱 MOBILE FIX */
@media(max-width:768px){

  .team-hero{
    padding:80px 15px;
  }

  .team-hero h1{
    font-size:28px;
  }

  .team-section{
    flex-direction:column;
    align-items:center;
    padding:40px 15px;
  }

  .member-card{
    width:90%;
  }
}

/* NAV FIX */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* spacing fix */
body {
  padding-top: 80px;
}

.team-page {
  background: linear-gradient(
    to bottom,
    #1e1b4b 0%,
    #1a1577 20%,
    #0f172a 50%,
    #050505 100%
  );
}

.portfolio-btn{
  display:inline-block;
  margin-top:10px;
  padding:8px 15px;
  border-radius:20px;
  background:#7c3aed;
  color:white;
  text-decoration:none;
}

.footer-recognition{
  display:flex;
  flex-wrap:wrap;          /* 👈 next line me aa jayega */
  gap:10px;
  margin-top:15px;
  justify-content:center;
}

.footer-recognition img{
  width:60px;              /* 👈 sab same size */
  height:auto;
  object-fit:contain;

  border-radius:8px;
  background:white;        /* 👈 agar transparent ho */
  padding:5px;
}

@media(max-width:768px){
  .footer-recognition img{
    width:50px;
  }
}

.footer-links{
  display:flex;
  flex-direction:column;
  align-items:center;   /* 👈 center */
}
.footer-contact{
  display:flex;
  flex-direction:column;
  align-items:center;
}