
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background: #0a1e44 url('https://i.imgur.com/7a5wVgZ.png') repeat;
    background-size: cover;
}

header {
    background-color: rgba(10, 30, 68, 0.95);
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-logo span {
    font-weight: bold;
    font-size: 26px;
    color: #FFD700;
}

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

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

.hero {
    text-align: center;
    padding: 150px 20px;
    background: linear-gradient(to right, #0a1e44, #140035);
    color: white;
}

.hero h1 {
    font-size: 58px;
    margin-bottom: 30px;
}

.btn {
    background-color: #FFD700;
    color: #0a1e44;
    padding: 15px 35px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background-color: #ffcc00;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
}

.page-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.page-section h1 {
    font-size: 48px;
    color: #0a1e44;
}

.page-section p {
    font-size: 20px;
    margin: 20px auto;
    max-width: 700px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #fff6d6;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
}

footer {
    text-align: center;
    background-color: rgba(10, 30, 68, 0.95);
    padding: 20px;
    font-size: 14px;
    color: white;
}
