:root {
    --page-bg: #e5f0ff;
    --card-bg: #ffffff;
    --card-border: #d4e1f3;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    min-height: 100vh;
    background:
            radial-gradient(circle at 0% 0%, #c7ddff, transparent 55%),
            radial-gradient(circle at 100% 0%, #e0f2fe, transparent 55%),
            var(--page-bg);
    color: var(--text-main);
}

.page-shell {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 24px 16px;
}

.layout-card {
    background: linear-gradient(145deg, #f9fbff 0%, #ffffff 60%, #f1f5fb 100%);
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.95);
    padding: 24px 18px 28px;
}

@media (min-width: 992px) {
    .layout-card {
        padding: 30px 32px 34px;
    }
}

/* HEADER */
.profile-header {
    border-radius: 20px;
    padding: 24px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Glossy Deep Blue with micro-tweaks */
    background: linear-gradient(180deg, #425b88 0%, #2f3f5c 100%);
    box-shadow:
            inset 0 0 14px rgba(255, 255, 255, 0.06),
            0 16px 40px rgba(0, 0, 0, 0.18);

    color: #f9fafb;
}

.profile-info h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.profile-info h2 {
    font-size: 1.1rem;
    margin: 4px 0 12px;
    font-weight: 400;
    opacity: 0.93;
}

.profile-contact {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Make contact text in header a touch brighter */
.profile-header .profile-contact {
    opacity: 0.97;
}

.profile-photo {
    width: 110px;
    height: 110px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;

    /* Avatar glow ring */
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .profile-photo {
        order: -1;
    }
}

/* SECTION TITLES */
.section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 24px;
}

.divider {
    border-bottom: 1px solid #e2e8f0;
    margin: 12px 0 20px;
}

/* TEXT BLOCKS */
.hero-p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.hero-list-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-top: 0.3rem;
    margin-bottom: 0.15rem;
}

.hero-list {
    font-size: 0.9rem;
    color: var(--text-main);
    padding-left: 1.1rem;
    margin-bottom: 0.9rem;
}

.hero-list li + li {
    margin-top: 0.15rem;
}

/* EXPERIENCE / TIMELINE */
.timeline-item {
    margin-bottom: 24px;
}

.experience-title {
    font-weight: 600;
    font-size: 1rem;
}

.experience-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.achievements {
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.achievements li {
    margin-bottom: 6px;
}

/* SKILLS */
.skill-item {
    margin-bottom: 10px;
}

.skill-name {
    font-weight: 500;
}

.skill-years {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 4px;
}

.skill-desc {
    font-size: 0.88rem;
    color: #334155;
}

/* FOOTER */
footer {
    font-size: 0.78rem;
    color: var(--text-muted);
}