
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#08111e;
    color:white;
    line-height:1.6;

}

section{

    width:min(1200px,90%);
    margin:auto;
    padding:100px 0;

}

.hero{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    min-height:85vh;

}

.hero-text{

    flex:1;

}

.hero h1{

    font-size:4rem;
    margin-bottom:20px;

}

.hero p{

    color:#b5c3d8;
    font-size:1.2rem;
    margin-bottom:40px;

}

.hero-image{

    flex:1;

}

.hero-image img{

    width:100%;
    border-radius:20px;

}

.buttons{

    display:flex;
    gap:20px;

}

.buttons a{

    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;

}

.primary{

    background:#00d4ff;
    color:#08111e;

}

.primary:hover{

    transform:translateY(-3px);

}

.secondary{

    border:1px solid #00d4ff;
    color:white;

}

.secondary:hover{

    background:#00d4ff;
    color:#08111e;

}

.about{

    text-align:center;

}

.about h2{

    margin-bottom:20px;
    font-size:2.5rem;

}

.about p{

    max-width:800px;
    margin:auto;
    color:#b5c3d8;

}

.research h2,
.projects h2{

    text-align:center;
    margin-bottom:50px;
    font-size:2.5rem;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.card,
.project{

    background:#111c2f;
    border-radius:15px;
    padding:30px;
    transition:.3s;

}

.card:hover,
.project:hover{

    transform:translateY(-8px);

}

.project img{

    width:100%;
    border-radius:10px;
    margin-bottom:20px;

}

.stats{

    display:flex;
    justify-content:space-around;
    text-align:center;
    background:#111c2f;
    border-radius:20px;
    padding:70px;

}

.stats h2{

    font-size:3rem;
    color:#00d4ff;

}

.cta{

    text-align:center;

}

.cta h2{

    font-size:3rem;
    margin-bottom:20px;

}

.cta p{

    color:#b5c3d8;
    margin-bottom:40px;

}

.cta a{

    display:inline-block;
    text-decoration:none;
    background:#00d4ff;
    color:#08111e;
    padding:15px 40px;
    border-radius:8px;
    font-weight:bold;

}

footer{

    text-align:center;
    padding:40px;
    border-top:1px solid #1b2a42;
    color:#6f7f95;

}

@media(max-width:900px){

.hero{

    flex-direction:column;
    text-align:center;

}

.buttons{

    justify-content:center;

}

.hero h1{

    font-size:3rem;

}

.stats{

    flex-direction:column;
    gap:40px;

}

}
