*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1020;
    color:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#111827;
    height:80px;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#ffd54a;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#ffd54a;
}

.hero{
    min-height:calc(100vh - 80px);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#0b1020,#1b2950);
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero h1 span{
    display:block;
    color:#ffd54a;
}

.hero p{
    color:#ccc;
    font-size:20px;
    margin-bottom:40px;
}

.search{
    display:flex;
    justify-content:center;
}

.search input{
    width:550px;
    height:55px;
    border:none;
    border-radius:8px 0 0 8px;
    padding:15px;
    font-size:18px;
}

.search button{
    width:160px;
    border:none;
    background:#ffd54a;
    font-weight:bold;
    cursor:pointer;
    border-radius:0 8px 8px 0;
}

footer{
    background:#111827;
    text-align:center;
    padding:25px;
}


.hero{

    min-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:
    radial-gradient(circle at top,#263b7a,#0B1020);

    padding:40px;

}

.hero-content{

    max-width:900px;

}

.badge{

    display:inline-block;

    background:#1E3A8A;

    color:white;

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.2;

}

.hero h1 span{

    color:#FFD54A;

}

.hero p{

    margin:30px 0;

    color:#c8c8c8;

    font-size:22px;

}

.search-box{

    display:flex;

    justify-content:center;

    margin-top:30px;

}

.search-box input{

    width:600px;

    height:60px;

    border:none;

    border-radius:12px 0 0 12px;

    padding:20px;

    font-size:18px;

}

.search-box button{

    background:#FFD54A;

    border:none;

    width:180px;

    font-size:18px;

    cursor:pointer;

    border-radius:0 12px 12px 0;

    transition:.3s;

}

.search-box button:hover{

    background:#ffca1b;

}

.features{

    padding:80px 0;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.card{

    background:#171F33;

    border-radius:18px;

    padding:35px;

    transition:.3s;

    border:1px solid rgba(255,255,255,.08);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.card h3{

    margin-bottom:15px;

    color:#FFD54A;

}

.card p{

    color:#c7c7c7;

}

.cards-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(220px,1fr));

gap:25px;

padding:60px 0;

}

.card-item{

background:#171F33;

padding:20px;

border-radius:15px;

transition:.3s;

text-align:center;

}

.card-item:hover{

transform:translateY(-10px);

}

.card-image{

height:260px;

display:flex;

align-items:center;

justify-content:center;

background:#222;

border-radius:10px;

margin-bottom:20px;

overflow:hidden;

}

.card-image img{

width:100%;

height:100%;

object-fit:cover;

}

.no-image{

color:#888;

}

.status{

display:flex;

justify-content:space-between;

margin-top:20px;

font-weight:bold;

}