
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0f172a;
    color:white;
}


.navbar{
    display:flex;
    justify-content:space-between;
    padding:20px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
}

.navbar a{
    color:white;
    text-decoration:none;
    margin-left:15px;
}


.about-hero{
    height:60vh;
    background:url('image\ 0.jpg') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-hero h1{
    background:rgba(0,0,0,0.6);
    padding:20px;
    border-radius:10px;
}


section{
    padding:50px 20px;
    text-align:center;
}


.story{
    max-width:800px;
    margin:auto;
    line-height:1.6;
}


.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:30px;
}

.team-card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:15px;
    border-radius:15px;
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    border-radius:10px;
}


.features{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.feature{
    background:rgba(255,255,255,0.1);
    padding:20px;
    border-radius:10px;
}


footer{
    text-align:center;
    padding:20px;
    background:#020617;
}
