:root {
    --primary: #002d5a;
    --accent: #00c2ff;
    --text: #333;
    --light: #f8fbff;
}

body { font-family: 'Poppins', sans-serif; margin: 0; background: var(--light); color: var(--text); overflow-x: hidden; }

/* Dynamic Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; }
.brand-name { font-weight: 700; font-size: 1.5rem; color: var(--primary); }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Banner & Animations */
.hero {
    background: linear-gradient(rgba(0,45,90,0.6), rgba(0,45,90,0.6)), url('../simpatico_hr_banner.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate { animation: fadeInUp 0.8s ease-out forwards; }

