/* ----------------------------
   Global Styling
---------------------------- */
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: #fff;
    background-color: #0A1E3D;
    overflow-x: hidden;
}

h1, h2, h3 {
    margin: 0;
}

/* ----------------------------
   Header / Navbar
---------------------------- */
header {
    background: transparent;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

.logo {
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #cfd9e9;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #66c0ff;
}

/* ----------------------------
   Hero Section
---------------------------- */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
}

.background-shapes::before,
.background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #182B57, #384C90);
    z-index: 0;
}

.background-shapes::before {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -200px;
    opacity: 0.4;
}

.background-shapes::after {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: auto;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3A6FE2;
    margin-bottom: 25px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.hero h3 {
    color: #a7b7d4;
    margin-top: 10px;
    font-weight: 400;
}

.hero p {
    margin: 20px 0;
    line-height: 1.6;
    color: #dbe3f0;
}

/* --------------------*
