body{
margin:0;
font-family:'Segoe UI', sans-serif;
background:radial-gradient(circle at top,#1e293b,#0b1220 60%);
color:white;
overflow-x:hidden;
}

/* ===== HEADER ===== */
header{
text-align:center;
padding:70px 20px;
background:linear-gradient(90deg,#2563eb,#7c3aed);
box-shadow:0 15px 40px rgba(0,0,0,0.4);
position:relative;
overflow:hidden;
}

header::after{
content:"";
position:absolute;
width:300px;
height:300px;
background:rgba(255,255,255,0.1);
border-radius:50%;
top:-100px;
right:-100px;
animation:float 6s infinite ease-in-out;
}

header h1{
margin:0;
font-size:38px;
letter-spacing:2px;
animation:fadeDown 1s ease;
}

header p{
opacity:0.85;
margin-top:10px;
}

/* ===== NAV ===== */
nav{
display:flex;
justify-content:center;
align-items:center;
gap:28px;
background:rgba(11,18,32,0.85);
backdrop-filter:blur(15px);
padding:14px;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.1);
box-shadow:
0 12px 30px rgba(0, 198, 255, 0.25),
0 0 15px rgba(124, 58, 237, 0.15);
}

/* FIX LINK */
nav a{
text-decoration:none;
position:relative;
}

nav a{
color:white;
font-size:22px;
width:46px;
height:46px;
display:flex;
justify-content:center;
align-items:center;
border-radius:12px;
transition:0.35s ease;
position:relative;
text-decoration:none;
}

nav a::after{
content:"";
position:absolute;
bottom:-6px;
width:0;
height:2px;
background:#60a5fa;
transition:0.3s;
border-radius:10px;
}

nav a:hover{
background:linear-gradient(135deg,#2563eb,#7c3aed);
transform:translateY(-4px) scale(1.1);
box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

nav a:hover::after{
width:60%;
}

/* ===== TITLE ===== */
.team-title{
text-align:center;
padding:50px 20px 20px;
animation:fadeUp 1s ease;
}

.team-title h2{
font-size:32px;
margin-bottom:10px;
}

.team-title p{
opacity:0.7;
}

/* ===== GRID ===== */
.team-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
gap:28px;
padding:40px;
max-width:1200px;
margin:auto;
}

/* ===== CARD ===== */
.team-card{
background:rgba(255,255,255,0.05);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,0.1);
border-radius:18px;
padding:25px;
text-align:center;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
position:relative;
overflow:hidden;

/* animation load */
opacity:0;
transform:translateY(30px);
animation:cardIn 0.8s forwards;
}

.team-card:nth-child(1){animation-delay:0.2s;}
.team-card:nth-child(2){animation-delay:0.4s;}
.team-card:nth-child(3){animation-delay:0.6s;}
.team-card:nth-child(4){animation-delay:0.8s;}

/* badge */
.team-card::before{
content:"TEAM MEMBER";
position:absolute;
top:10px;
left:-40px;
background:#60a5fa;
color:#000;
font-size:10px;
padding:5px 50px;
transform:rotate(-35deg);
opacity:0.8;
}

/* hover */
.team-card:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* avatar */
.team-card img{
width:110px;
height:110px;
border-radius:50%;
border:3px solid #60a5fa;
object-fit:cover;
margin-bottom:10px;
animation:float 3s infinite ease-in-out;
}

/* name */
.team-card h3{
margin:5px 0;
}

/* role */
.team-card span{
display:inline-block;
color:#60a5fa;
font-size:13px;
font-weight:bold;
margin-bottom:10px;
}

/* description */
.team-card p{
font-size:13px;
opacity:0.85;
margin:10px 0;
}

/* list */
.team-card ul{
text-align:left;
padding-left:18px;
font-size:13px;
opacity:0.8;
}

/* skill bar fake */
.skill{
margin-top:10px;
text-align:left;
font-size:12px;
}

.bar{
width:100%;
height:6px;
background:#1e293b;
border-radius:10px;
margin-top:5px;
overflow:hidden;
}

.bar span{
display:block;
height:100%;
background:linear-gradient(90deg,#2563eb,#7c3aed);
border-radius:10px;
animation:grow 2s ease;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
background:#020617;
margin-top:30px;
opacity:0.8;
}

/* ===== ANIMATION ===== */
@keyframes fadeDown{
from{opacity:0; transform:translateY(-20px);}
to{opacity:1; transform:translateY(0);}
}

@keyframes fadeUp{
from{opacity:0; transform:translateY(20px);}
to{opacity:1; transform:translateY(0);}
}

@keyframes cardIn{
to{opacity:1; transform:translateY(0);}
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}
}

@keyframes grow{
from{width:0;}
to{width:80%;}
}

.team-detail{
  padding: 70px 20px;
  background: #0f172a;
  color: white;
}

/* ABOUT */
.team-about{
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

.team-about h2{
  font-size: 32px;
  margin-bottom: 15px;
}

.team-about p{
  opacity: 0.8;
}

/* STATS */
.team-stats{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.stat-box{
  background: rgba(255,255,255,0.05);
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
}

.stat-box h3{
  font-size: 28px;
  color: #38bdf8;
}

.stat-box:hover{
  transform: scale(1.05);
}

/* TECH */
.team-tech{
  text-align: center;
  margin-bottom: 50px;
}

.tech-list{
  margin-top: 20px;
}

.tech-list span{
  display: inline-block;
  background: #1e293b;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 20px;
  font-size: 14px;
}

/* PROCESS */
.team-process{
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}

.process-step{
  border-left: 3px solid #38bdf8;
  padding-left: 15px;
  margin-bottom: 20px;
}

/* CTA */
.team-cta{
  text-align: center;
}

.btn-view{
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(90deg,#2563eb,#7c3aed);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view:hover{
  transform: scale(1.1);
}
/* footer */
/* ===== FOOTER ===== */
.footer{
background:#0f172a;
color:#fff;
margin-top:60px;
padding-top:40px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
padding:0 40px;
}

.footer-col h3{
margin-bottom:15px;
color:#38bdf8;
}

.footer-col p,
.footer-col li{
font-size:14px;
color:#cbd5e1;
line-height:1.6;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
text-decoration:none;
color:#cbd5e1;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#38bdf8;
}

/* SOCIAL */
.socials a{
display:inline-block;
margin-right:10px;
width:35px;
height:35px;
line-height:35px;
text-align:center;
border-radius:50%;
background:#1e293b;
color:#fff;
transition:0.3s;
}

.socials a:hover{
background:#38bdf8;
transform:translateY(-3px);
}

/* BOTTOM */
.footer-bottom{
text-align:center;
border-top:1px solid #334155;
margin-top:30px;
padding:15px;
font-size:14px;
color:#94a3b8;
<<<<<<< HEAD
}
=======
}
>>>>>>> 472099a3019fad88cd929fd528c6196db8da19a2
