*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:'Poppins',sans-serif;
}
body{
background:#050a19;
color:white;
min-height:100vh;
}
/* HEADER */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 5%;
background:#081326;
position:sticky;
top:0;
z-index:1000;
}
header b{
font-size:24px;
color:#00f7ff;1
}
.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
}
.logo img{
width:45px;
height:45px;
object-fit:contain;
}
nav{
display:flex;
gap:15px;
flex-wrap:wrap;
}
nav a{
color:white;
text-decoration:none;
font-size:14px;
padding:8px 12px;
border-radius:8px;
}
nav a:hover{
background:#00aaff;
}
/* HERO */
.hero{
text-align:center;
padding:60px 20px;
background:
linear-gradient(
135deg,

#07142d,

#003b6f

);

}
.hero h1{

font-size:40px;

}
.hero h2{

font-size:22px;

margin-top:10px;

}
.intro{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro p{
    text-align: center;
}
.intro h2{
    text-align: center;
}

/* About Box */


.about-box{

    background:

    rgba(255,255,255,0.06);
    border:

    1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:40px;
    backdrop-filter:blur(12px);
    box-shadow:

    0 10px 40px rgba(0,0,0,0.35);

}

.about-box h3{

    text-align:center;

    margin-bottom:20px;

    color:#00eaff;

    font-size:1.5rem;

}

.about-box p{

    line-height:1.9;
    text-align:center;

    color:#dbe4f0;

    margin-bottom:25px;
    text-align: center;

}

/* Members */
.members-section{

    padding:80px 0 100px;

}

.members-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(240px,1fr));
    gap:25px;

}
.member-card{
    background:
    rgba(255,255,255,0.06);
    border:
    1px solid rgba(255,255,255,0.08);


    border-radius:22px;


    padding:30px 20px;


    text-align:center;


    transition:.4s ease;


    backdrop-filter:blur(10px);

}

.member-card:hover{

    transform:translateY(-10px);
    box-shadow:

    0 15px 35px rgba(0,234,255,0.18);
}
.member-image{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #00eaff;
}
    .member-frame{

    width:100px;
    height:100px;

    border-radius:50%;

    border:3px solid #00eaff;

    overflow:hidden;

}
  /* Member Content */

.member-card h3{

    margin-bottom:10px;

    font-size:1.2rem;

}
.member-role{

    color:#00eaff;

    margin-bottom:12px;

    font-size:.95rem;

    font-weight:600;

}
.member-card p{

    color:#d1d5db;

    font-size:.92rem;

    line-height:1.7;

}

/* FOOTER */


footer{

text-align:center;

padding:25px;

background:#081326;

margin-top:40px;

color:#aaa;

}
/* ==============================
   MOBILE RESPONSIVE
============================== */
@media(max-width:768px){

header{

flex-direction:column;

gap:15px;

}

nav{

justify-content:center;

}
.hero h1{

font-size:30px;

}
.hero h2{
font-size:18px;
}

.box{

width:95%;

padding:18px;

}
.dashboard-menu button{
width:100%;

}

.timeline-card img{

height:180px;

}
}

/* SMALL PHONE */
@media(max-width:480px){

.logo{

font-size:18px;

}

nav a{

font-size:12px;

padding:6px;

}

.hero{

padding:40px 15px;

}
.temporary{
    text-align: center;
    padding:60px 20px;

}
button{

width:100%;

}

}
