body{
    display: flex;
    flex-direction: column;   /* <-- this is the key */
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    min-height: 100vh;
    background-color: rgb(18, 18, 18);
    margin: 0;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1; 
    pointer-events: none; 
    background-image:
        linear-gradient(rgba(59,130,246,0.06) 2px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.06) 2px, transparent 1px);
    background-size: 60px 60px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient( ellipse at center, transparent 60%, rgb(12, 12, 12) 100%);
}

p{
    font-size:30px;
    font-family: 'Inter', sans-serif;
    font-weight:bold;
    color:white;
    text-align:center;
}

.subtitle{
    display:block;
    font-size:15px;
    color:#ddd;
    margin-top:8px;
}


.content{
    border: 1px solid rgba(255, 255, 255, 0.1);  /* subtle border at rest */
    border-radius: 3px;
    padding: 20px;
    background-color: rgb(18, 18, 18);
    width: 80%;
    max-width: 400px;
    text-align: center;
    position:relative;
    overflow:hidden;

    /* slight inner glow at rest */
    box-shadow: inset 0 0 20px rgba(0, 174, 255, 0.1);

    transition: transform 0.3s cubic-bezier(.2,0,.3,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    cursor: pointer;
}


.content:hover{
    transform: translateY(-6px);

    /* border lights up */
    border-color: rgba(0, 174, 255, 0.6);

    /* inner glow gets stronger + outer glow appears */
    box-shadow:
        inset 0 0 25px rgba(0, 174, 255, 0.08),  /* inner */
        0 0 20px rgba(0, 174, 255, 0.2),           /* close outer */
        0 0 60px rgba(0, 174, 255, 0.1);
}

.spot {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.25s;
    background: radial-gradient(
        220px circle at var(--x, 50%) var(--y, 50%),
        rgba(0, 174, 255, 0.1),
        transparent 70%
    );
}

.content:hover .spot {
    opacity: 1;
}

/* ── TWO COLUMN LAYOUT ── */
.sections-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    align-items: start;
    
}

@media (max-width: 700px) {
    .sections-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ── SECTION CARD ── */
.section {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgb(14, 16, 24);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.30s ease, box-shadow 0.30s ease;
}

.section:hover {
    border-color: rgba(0, 174, 255, 0.3);
    box-shadow:
        inset 0 0 25px rgba(0, 174, 255, 0.04),
        0 0 30px rgba(0, 174, 255, 0.06);
}

/* ── LABELS + HEADINGS ── */
.section-label {
    font-size: 0.62rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7490;
    margin: 0;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #e8eaf2;
    letter-spacing: -0.02em;
    margin: 0;
}

/* ── DIVIDER ── */
.section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0.25rem 0;
}

/* ── EDUCATION ── */
.edu-entry {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.edu-school {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #e8eaf2;
}

.edu-degree {
    font-size: 0.75rem;
    color: #8892a4;
}

.edu-date {
    font-size: 0.7rem;
    color: rgba(0, 174, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.edu-note {
    font-size: 0.68rem;
    color: #6b7490;
    margin-top: 0.15rem;
}

/* ── SKILLS ── */
.skills-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-category {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7490;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8892a4;
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.25s, border-color 0.25s;
}

.section:hover .tag {
    color: #b0bcd0;
    border-color: rgba(255, 255, 255, 0.15);
}

/* ── EXPERIENCE ── */
.exp-entry {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.exp-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e8eaf2;
}

.exp-date {
    font-size: 0.68rem;
    color: rgba(0, 174, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.exp-org {
    font-size: 0.75rem;
    color: rgba(0, 174, 255, 0.6);
}

.exp-bullets {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.exp-bullets li {
    font-size: 0.73rem;
    color: #6b7490;
    line-height: 1.6;
    padding-left: 1rem;
    position: relative;
}

.exp-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(0, 174, 255, 0.4);
}