
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

body {
    background: #f1f3f6;
}

.container {
    width: 1200px;
    margin: auto;
}

nav {
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    color: #2d3748;
    font-weight: 500;
    cursor: pointer;
}

.hero {
    background: linear-gradient(90deg, rgba(37,99,235,0.95) 0%, rgba(37,99,235,0.7) 40%, rgba(37,99,235,0.2) 70%), 
                url('../assets/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: white;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 700px;
    margin-bottom: 30px;
}

.hero .btn-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
}

.btn-secondary {
    background: white;
    color: #2563eb;
    padding: 12px 22px;
    border-radius: 8px;
    border: 2px solid #2563eb;
    font-weight: 600;
}

.filter-bar {
    background: #ffffff;
    padding: 20px;
    margin-top: -40px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.card-body {
    display: flex;
}

.card-info {
    padding: 20px;
    flex: 1;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-info p {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 6px;
}

.card img {
    width: 200px;
    object-fit: cover;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-weight: 600;
    color: white;
}

.status-blue { background: #2563eb; }
.status-green { background: #16a34a; }
.status-yellow { background: #f59e0b; }

.status-bar a {
    color: white;
    text-decoration: none;
}
