/* Google Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f8fc;
    color: #222;
}

/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #003366;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.logo i {
    color: #ffb400;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: #ffb400;
}

.btn {
    background: #ffb400;
    padding: 10px 20px;
    border-radius: 30px;
    color: #003366;
    font-weight: bold;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 140px 8%;
    background: linear-gradient(135deg, #003366, #0057b7);
}

.left {
    width: 50%;
}

.left h1 {
    color: white;
    font-size: 60px;
    line-height: 1.2;
}

.left p {
    color: #ddd;
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.8;
}

.track-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #ffb400;
    color: #003366;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: .4s;
}

.track-btn:hover {
    transform: translateY(-5px);
}

.right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.float {
    animation: float 3s ease-in-out infinite;

}

.right img {
    width: 100%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
}

footer {
    background: #111;
    color: white;
    padding: 25px;
    text-align: center;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }

}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 80px 8%;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.card:hover {
    transform: translateY(-15px);
}

.card i {
    font-size: 55px;
    color: #0057b7;
    margin-bottom: 20px;
}

.card h2 {
    margin-bottom: 15px;
}

.card p {
    color: #666;
    line-height: 1.8;
}

.admin-link {
    text-decoration: none;
}

/* Responsive */

@media(max-width:900px) {

    header {
        padding: 0 5%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .left {
        width: 100%;
    }

    .right {
        width: 100%;
        margin-top: 50px;
    }

    .left h1 {
        font-size: 40px;
    }

    nav {
        display: none;
    }

}