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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-color: #050a14;
    --bg-secondary: #0a1628;
    --bg-glass: rgba(10, 22, 40, 0.6);
    --text-color: #e8eaf0;
    --text-muted: #8892a4;
    --cyan: #00d4ff;
    --purple: #7c3aed;
    --blue: #2563eb;
    --main-color: #00d4ff;
    --gradient: linear-gradient(135deg, #00d4ff, #7c3aed);
    --gradient-soft: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.4);
    --glass-border: rgba(0, 212, 255, 0.15);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.6);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    cursor: none;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

/* CURSOR */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
}

.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0,212,255,0.8) 0%, rgba(124,58,237,0.3) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 20px #00d4ff, 0 0 40px rgba(124,58,237,0.5);
    animation: mainPulse 2s ease-in-out infinite;
}

@keyframes mainPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.8rem 9%;
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: 0.3s;
}

.header.sticky {
    background: rgba(5, 10, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar a {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 3.5rem;
    transition: 0.3s;
    letter-spacing: 0.3px;
}

.navbar a:hover,
.navbar a.active {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

/* HOME */
.home {
    display: flex;
    align-items: center;
    padding: 0 9%;
    background: url('assests/homeprofile.jpg') no-repeat;
    background-size: contain;
    background-position: 90%;
    position: relative;
}

.home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.home-imgHover { display: none; }

.home-content {
    max-width: 62rem;
    z-index: 99;
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.home-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-content .text-animate {
    position: relative;
    width: 38rem;
    margin: 1rem 0;
}

.home-content .text-animate h3 {
    font-size: 2.8rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 0.7px var(--cyan);
    background-image: linear-gradient(var(--cyan), var(--cyan));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -38rem 0;
}

.home.show-animate .home-content .text-animate h3 {
    animation: homeBgText 6s linear infinite;
    animation-delay: 2s;
}

.home-content .text-animate h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-right: 2px solid var(--cyan);
    z-index: -1;
}

.home.show-animate .home-content .text-animate h3::before {
    animation: homeCursorText 6s linear infinite;
    animation-delay: 2s;
}

.home-content p {
    font-size: 1.6rem;
    margin: 2.5rem 0 4rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 55rem;
}

/* BUTTONS */
.btn-box {
    display: flex;
    gap: 1.5rem;
    width: auto;
    height: 5rem;
}

.btn-box .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 2.5rem;
    height: 100%;
    background: var(--gradient);
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(124, 58, 237, 0.3);
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--cyan);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.btn-box .btn:nth-child(2):hover {
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 212, 255, 0.08);
}

/* SOCIAL ICONS */
.home-sci {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1.2rem;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 20px;
    color: var(--cyan);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.home-sci a:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

/* SECTION HEADING */
.heading {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

.heading span,
span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* EDUCATION / EXPERIENCE / PROJECTS SECTIONS */
.education {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 6rem;
    background: var(--bg-color);
}

.education:nth-child(even) {
    background: var(--bg-secondary);
}

.education .education-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    width: 100%;
}

.education-row .education-column {
    flex: 1 1 40rem;
}

.education-column .title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 2rem 2rem;
    color: var(--text-color);
}

.education-column .education-box {
    position: relative;
    border-left: 2px solid rgba(0, 212, 255, 0.3);
}

.education-box .education-content {
    position: relative;
    padding-left: 2.5rem;
}

.education-box .education-content::before {
    content: '';
    position: absolute;
    top: 1.8rem;
    left: -1rem;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.education-content .content {
    position: relative;
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.3s;
    overflow: hidden;
}

.education-content .content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: 0.3s;
    border-radius: 1.2rem;
    z-index: -1;
}

.education-content .content:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1), 0 0 0 1px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.education-content .content:hover::before {
    opacity: 1;
}

.education-content .content .year {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cyan);
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education-content .content .year i {
    padding-right: 0.5rem;
}

.education-content .content h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.education-content .content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.education-content .content p span {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cyan);
    margin: 0.3rem 0.2rem;
    -webkit-text-fill-color: var(--cyan);
}

/* SKILLS */
.skills {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--bg-secondary);
}

.skills h2 {
    display: block;
    text-align: center;
}

.skills .skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.skills-row .skills-column {
    flex: 1 1 40rem;
}

.skills-column .title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text-color);
}

.skills-column .skills-box {
    position: relative;
}

.skills-box .skills-content {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.3s;
}

.skills-box .skills-content:hover {
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.08);
}

.skills-content .progress {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.skills-content .progress:last-child {
    border-bottom: none;
}

.skills-content .progress h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skills-content .progress h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CONTACT */
.contact {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--bg-color);
}

.contact h2 {
    display: block;
    text-align: center;
}

.contact form {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact form .input-box .input-field {
    position: relative;
    width: 48%;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
    background: var(--bg-glass);
    border-radius: 0.8rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.contact form .input-box .input-field input:focus,
.contact form .textarea-field textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
    color: var(--text-muted);
}

.contact form .focus {
    display: none;
}

.contact form .textarea-field {
    position: relative;
    margin: 1.5rem 0 2.7rem;
}

.contact form .textarea-field textarea {
    resize: none;
    min-height: 15rem;
}

.contact form .btn-box.btns .btn {
    cursor: pointer;
}

/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2.5rem 9%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-text p {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--gradient);
    border-radius: 0.8rem;
    transition: 0.3s;
}

.footer-iconTop a:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.footer-iconTop a i {
    font-size: 2rem;
    color: #fff;
}

/* CERTIFICATES */
.work__img {
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.work__img img {
    transition: 0.4s;
    width: 100%;
    height: auto;
    display: block;
}

.work__img img:hover {
    transform: scale(1.03);
}

/* BTN BOX BTNS */
.btn-box.btns {
    display: inline-block;
    width: auto;
    height: auto;
}

.btn-box.btns .btn {
    padding: 1.2rem 3rem;
    height: auto;
}

/* SCROLL ANIMATIONS */
.animate { display: none; }

.about.show-animate .animate.scroll,
.education.show-animate .animate.scroll,
.skills.show-animate .animate.scroll,
.contact.show-animate .animate.scroll,
.footer.show-animate .animate.scroll {
    width: 0;
}

/* KEYFRAMES */
@keyframes homeBgText {
    0%, 10%, 100% { background-position: -38rem 0; }
    65%, 85% { background-position: 0 0; }
}

@keyframes homeCursorText {
    0%, 10%, 100% { width: 0; }
    65%, 78%, 85% { width: 100%; opacity: 1; }
    75%, 81% { opacity: 0; }
}

@keyframes showRight {
    100% { width: 0; }
}

/* BREAKPOINTS */
@media (max-width: 1200px) {
    html { font-size: 55%; }
}

@media (max-width: 991px) {
    .header { padding: 1.8rem 4%; }
    section { padding: 10rem 4% 2rem; }
    .home { padding: 0 4%; }
    .footer { padding: 2rem 4%; }
}

@media (max-width: 768px) {
    .header { background: rgba(5, 10, 20, 0.95); }

    #menu-icon { display: block; }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        z-index: 1;
        transition: 0.25s ease;
        transition-delay: 0.25s;
    }

    .navbar.active {
        left: 0;
        transition-delay: 0s;
    }

    .navbar .active-nav {
        display: none;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 2.5rem 0;
        transform: translateX(-20rem);
        transition: 0.25s ease;
        transition-delay: 0s;
    }

    .navbar.active a {
        transform: translateX(0);
        transition-delay: 0.25s;
    }
}

@media (max-width: 520px) {
    html { font-size: 50%; }
    .home-content h1 { flex-direction: column; }
    .home-sci { gap: 1rem; }
}

@media (max-width: 462px) {
    .home-content h1 { font-size: 5.2rem; }
    .education { padding: 10rem 4% 5rem; }
    .contact form .input-box .input-field { width: 100%; }
    .footer { flex-direction: column-reverse; gap: 1.5rem; }
}

@media (max-width: 371px) {
    .home { justify-content: center; }
    .home-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .home-content h1 { font-size: 5rem; }
}

/* ============================================================
   ANIMATIONS CSS
   ============================================================ */

/* ── PAGE LOADER ─────────────────────────────────────────── */
#loader {
    position: fixed;
    inset: 0;
    background: #050a14;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

#loader.loader-out {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoPulse 1.5s ease-in-out infinite;
    letter-spacing: -2px;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0,212,255,0.5)); }
    50%       { filter: drop-shadow(0 0 30px rgba(124,58,237,0.8)); }
}

.loader-bar {
    width: 24rem;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 99px;
    transition: width 0.15s ease;
    box-shadow: 0 0 12px rgba(0,212,255,0.6);
}

.loader-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ── PARTICLE CANVAS ─────────────────────────────────────── */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ensure content sits above canvas */
header, section, footer { position: relative; z-index: 1; }

/* ── DUAL CURSOR ─────────────────────────────────────────── */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
}

.cursor-glow {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    z-index: 99998;
    box-shadow: 0 0 8px rgba(0,212,255,0.8);
    transition: width 0.1s linear;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* staggered card reveal */
.content, .skills-content, .progress {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.content.card-revealed,
.skills-content.card-revealed,
.progress.card-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── GLITCH HEADING ──────────────────────────────────────── */
.heading {
    position: relative;
}

.heading.glitch::before,
.heading.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

.heading.glitch::before {
    color: #00d4ff;
    animation: glitch1 0.3s steps(2) infinite;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}

.heading.glitch::after {
    color: #7c3aed;
    animation: glitch2 0.3s steps(2) infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%   { transform: translate(-2px, 0); }
    50%  { transform: translate(2px, 0); }
    100% { transform: translate(-1px, 0); }
}

@keyframes glitch2 {
    0%   { transform: translate(2px, 0); }
    50%  { transform: translate(-2px, 0); }
    100% { transform: translate(1px, 0); }
}

/* ── CLICK RIPPLE ────────────────────────────────────────── */
.click-ripple {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.4);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleOut 0.8s ease-out forwards;
    pointer-events: none;
    z-index: 9997;
}

@keyframes rippleOut {
    to {
        transform: translate(-50%, -50%) scale(25);
        opacity: 0;
    }
}

/* ── MAGNETIC BUTTON TRANSITION ──────────────────────────── */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    will-change: transform;
}

/* ── TILT CARD TRANSITION ────────────────────────────────── */
.content {
    will-change: transform;
    transform-style: preserve-3d;
}

/* ── SOCIAL ICON STAGGER ─────────────────────────────────── */
.home-sci a:nth-child(1) { animation-delay: 0.1s; }
.home-sci a:nth-child(2) { animation-delay: 0.2s; }
.home-sci a:nth-child(3) { animation-delay: 0.3s; }
.home-sci a:nth-child(4) { animation-delay: 0.4s; }

/* ── NEON BORDER PULSE ON CARDS ──────────────────────────── */
.education-content .content:hover {
    box-shadow:
        0 0 0 1px rgba(0,212,255,0.3),
        0 0 20px rgba(0,212,255,0.15),
        0 0 40px rgba(124,58,237,0.1),
        0 20px 40px rgba(0,0,0,0.4);
}

/* ── SKILLS PROGRESS HOVER GLOW ──────────────────────────── */
.skills-content .progress:hover h3 {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0,212,255,0.4);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* ── HEADER LOGO SHIMMER ─────────────────────────────────── */
.logo {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── FLOATING HOME CONTENT ───────────────────────────────── */
.home-content h1 {
    animation: floatUp 1s ease forwards;
    opacity: 0;
}

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

/* ── SECTION DIVIDER GLOW LINE ───────────────────────────── */
section::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), rgba(124,58,237,0.2), transparent);
    margin-top: 4rem;
}

/* ── YEAR TAG PULSE ──────────────────────────────────────── */
.year {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.year::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    margin-left: 0.5rem;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #00d4ff; }
    50%       { opacity: 0.3; box-shadow: none; }
}

/* ── FOOTER GLOW ─────────────────────────────────────────── */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7c3aed, transparent);
    box-shadow: 0 0 10px rgba(0,212,255,0.3);
}
