@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }

p, h1, h2, h3, h4, h5, h6, button {
    font-family: "Inter", "Roboto", sans-serif;
}

body {
    background-color: #f5f5f9;
    width: auto;
    overflow-x: hidden;
    font-family: "Inter", "Roboto", sans-serif;
    margin: 0;
    color: #111827;
}

.nav-bar {
    width: 100%;
    background: linear-gradient(90deg, #0c2f6b 0%, #1C539F 55%, #1e5fba 100%);
    box-sizing: border-box;
    position: relative;
    z-index: 50;
    box-shadow: 0 2px 20px rgba(12, 47, 107, 0.35);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 68px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo-img {
    height: 38px;
    width: auto;
}

.nav-content nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-content nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: background 0.18s, color 0.18s;
}

.nav-content nav a:hover {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.nav-content nav a.nav-active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
    .nav-hamburger { display: flex; }

    .nav-content {
        padding: 0 20px;
    }

    .nav-content nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: linear-gradient(160deg, #0c2f6b, #1C539F);
        padding: 8px 16px 16px;
        z-index: 100;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    .nav-content nav.nav-open { display: flex; }

    .nav-content nav a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 8px;
    }
}

.profile {
    background: linear-gradient(150deg, #091f4a 0%, #0d3875 30%, #1C539F 70%, #2060c0 100%);
    text-align: center;
    padding: 72px 24px 120px;
    position: relative;
    overflow: hidden;
}

.profile::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.profile::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: #f5f5f9;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.profile .profile-picture {
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.profile-picture {
    border-radius: 50%;
    width: 138px;
    height: 138px;
    object-fit: cover;
    display: block;
    margin: 0 auto 28px;
    border: 5px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14), 0 16px 48px rgba(0, 0, 0, 0.3);
}

.profile h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

.profile-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    margin: 0 0 32px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.profile-cta-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.profile-cta:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.section-heading {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    border-bottom: 3px solid #1C539F;
    padding-bottom: 12px;
    margin: 0 0 24px;
}

.about-section p {
    font-size: 16.5px;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 18px;
}

/* Page cards */
.explore-section { margin-top: 52px; }

.page-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.page-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #dce7f8;
    border-radius: 16px;
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(28, 83, 159, 0.07);
    transition: transform 0.22s, box-shadow 0.22s;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(28, 83, 159, 0.14);
}

.page-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, #e8f0fb, #cddcf7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.page-card-text h3 { font-size: 15px; font-weight: 700; color: #111827; margin: 0 0 5px; }
.page-card-text p { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.5; }

@media (max-width: 600px) {
    .profile { padding: 52px 20px 100px; }
    .profile h1 { font-size: 36px; }
    .profile-picture.blank { width: 110px; height: 110px; }
    .section-heading { font-size: 22px; }
    .about-section p { font-size: 15px; }
    .page-cards-grid { grid-template-columns: 1fr; }
}

.banner {
    padding: 20px 0px 50px 0px;
    height: 150px;
    background-color: #1d539f;
}

.banner .logo {
    max-width:180px;
    max-height:60px;
    width: auto;
    height: auto;
}

.banner .title {
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.pg-foot {
    background-color: #1C539F;
    padding: 28px 32px;
    margin-top: 40px;
}