@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;700&display=swap');

:root {
    --primary: #0046ad;
    --primary-light: #0066ff;
    --accent: #dc143c;
    --bg: #f8fafc;
    --text: #0f172a;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 20px 40px rgba(0, 70, 173, 0.08);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Luxury Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 70, 173, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(220, 20, 60, 0.05) 0%, transparent 40%);
    z-index: -1;
}

header {
    min-height: 90vh;
    background: linear-gradient(135deg, #001a3d 0%, #0046ad 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

main {
    max-width: 1100px;
    margin: -10vh auto 5rem;
    padding: 0 2rem;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 70, 173, 0.12);
}

.card h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 70, 173, 0.2);
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 70, 173, 0.3);
    background: var(--accent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    padding: 5rem 2rem;
    background: #000c1a;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}