*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background:#f5f5f5;
    color:#222;
}

header{
    width:100%;
    padding:20px 40px;
    background:#000;
    color:white;
    position:fixed;
    top:0;
    z-index:10;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    display:flex;
    gap:30px;
}

nav ul li{
    list-style:none;
}

nav a{
    text-decoration:none;
    color:white;
    font-size:16px;
}

nav a:hover{
    color:#00d4ff;
}

.section{
    padding:100px 40px;
    text-align:center;
}

.home{
    height:100vh;
    /* position:absolute; */
        position: relative;
    background:url('images/bg.jpg') center/cover no-repeat;
    /* color:white; */
    display:flex;
    overflow: hidden;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.home img{
    /* position: relative; */
     position:absolute;
     z-index: -1;

}

.home h1{
    color: rgb(0, 0, 0);
    position: relative;
    top: -160px;
    font-size: 45px;
}

.home p{
    color: #111111;
        position: relative;
    top: -150px;
    font-size: 25px;
}

.home .btn{
    margin-top:20px;
}

.section2 h2{
    font-size: 35px;
    color: rgb(0, 0, 0);
    translate: 40vw;
}

.section2 p{
    font-size: 20px;
    color: rgb(37, 37, 37);
}

.btn{
    background:#00d4ff;
    padding:10px 20px;
    color:#000;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
}

.dark{
    background:#111;
    color:white;
}

.project-grid, .team-grid{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.card, .member{
    background:white;
    color:black;
    padding:20px;
    width:260px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
}

.card img, .member img{
    width:100%;
    border-radius:10px;
}

form{
    width:340px;
    margin:20px auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

form input, form textarea{
    padding:12px;
    width:100%;
    border-radius:5px;
    border:none;
}

footer{
    padding:20px;
    text-align:center;
    background:#000;
    color:white;
}