/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== DARK THEME (default) ===== */
:root,
[data-theme="dark"] {
    --bg: #050810;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --surface-hover: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(124, 106, 247, 0.4);
    --text: #e8eaf0;
    --text-muted: #8891a8;
    --text-soft: #b4bcd0;
    --accent: #7c6af7;
    --accent2: #f7926a;
    --accent3: #6af7c4;
    --nav-bg: rgba(5, 8, 16, 0.75);
    --nav-border: rgba(255, 255, 255, 0.06);
    --card-bg: rgba(255, 255, 255, 0.04);
    --timeline-line: rgba(124, 106, 247, 0.4);
    --pill-bg: rgba(124, 106, 247, 0.1);
    --pill-border: rgba(124, 106, 247, 0.2);
    --pill-text: #9d8fff;
    --mark-bg: rgba(124, 106, 247, 0.15);
    --mark-text: #a590ff;
    --footer-bg: rgba(5, 8, 16, 0.9);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 106, 247, 0.15);
    --nav-h: 72px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --scheme: dark;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --bg: #f5f4ff;
    --surface: rgba(255, 255, 255, 0.85);
    --surface-2: rgba(255, 255, 255, 0.95);
    --surface-hover: rgba(255, 255, 255, 1);
    --border: rgba(124, 106, 247, 0.15);
    --border-hover: rgba(124, 106, 247, 0.5);
    --text: #1a1630;
    --text-muted: #6b6888;
    --text-soft: #4a4766;
    --accent: #5b47e8;
    --accent2: #e8602a;
    --accent3: #1ab87f;
    --nav-bg: rgba(245, 244, 255, 0.85);
    --nav-border: rgba(124, 106, 247, 0.12);
    --card-bg: rgba(255, 255, 255, 0.9);
    --timeline-line: rgba(91, 71, 232, 0.35);
    --pill-bg: rgba(91, 71, 232, 0.08);
    --pill-border: rgba(91, 71, 232, 0.2);
    --pill-text: #5b47e8;
    --mark-bg: rgba(91, 71, 232, 0.1);
    --mark-text: #5b47e8;
    --footer-bg: rgba(230, 228, 255, 0.9);
    --shadow-card: 0 4px 24px rgba(91, 71, 232, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(91, 71, 232, 0.2), 0 0 0 1px rgba(91, 71, 232, 0.15);
    --scheme: light;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    transition: background 0.5s ease, color 0.5s ease;
}

[data-theme="light"] body {
    cursor: auto;
}

/* ===== CURSOR ===== */
#sparkle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: background 0.3s;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(124, 106, 247, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

[data-theme="light"] .cursor-dot,
[data-theme="light"] .cursor-ring {
    display: none;
}

/* ===== ANIMATED BG ===== */
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    transition: background 2.5s ease;
}

[data-theme="dark"] .animated-bg {
    background: linear-gradient(135deg, #050810, #0d0f1a, #0a0810);
}

[data-theme="dark"] .animated-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 106, 247, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 106, 247, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

[data-theme="light"] .animated-bg {
    background: linear-gradient(135deg, #f5f4ff, #ede8ff, #f5f9ff);
}

[data-theme="light"] .animated-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(91, 71, 232, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 71, 232, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ===== NAVBAR ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-border);
    transition: background 0.3s, border-color 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
    letter-spacing: 0.02em;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text);
    background: var(--surface-hover);
}

.nav-resume-btn {
    font-family: var(--font-mono) !important;
    font-size: 0.78rem !important;
    color: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    transition: background 0.3s, color 0.3s !important;
}

.nav-resume-btn:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 6px 12px;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
    font-size: 0.85rem;
}

.theme-toggle:hover {
    border-color: var(--accent);
}

.theme-icon-sun,
.theme-icon-moon {
    transition: opacity 0.3s, transform 0.3s;
}

[data-theme="dark"] .theme-icon-sun {
    opacity: 0.35;
    transform: scale(0.85);
}

[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
}

[data-theme="light"] .theme-icon-sun {
    opacity: 1;
}

[data-theme="light"] .theme-icon-moon {
    opacity: 0.35;
    transform: scale(0.85);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* ===== PANELS ===== */
.panel {
    min-height: 100vh;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Section Headers — NO NUMBERS */
.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
}

.sec-accent-line {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
    border-radius: 4px;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    animation: none;
    text-shadow: none;
}

.section-title span {
    color: var(--accent2);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: -40px;
    margin-bottom: 50px;
    max-width: 580px;
    line-height: 1.7;
}

/* ===== HOME ===== */
.home {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    padding: var(--nav-h) 5% 40px;
    min-height: 100vh;
    overflow: hidden;
    gap: 40px;
}

.home-grid {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

.home-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent3);
    background: rgba(106, 247, 196, 0.08);
    border: 1px solid rgba(106, 247, 196, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

[data-theme="light"] .home-tag {
    color: var(--accent3);
    background: rgba(26, 184, 127, 0.08);
    border-color: rgba(26, 184, 127, 0.25);
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent3);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8)
    }
}

.home-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--text);
    margin-bottom: 24px;
    animation: none;
    text-shadow: none;
}

.line-wrap {
    display: block;
    overflow: hidden;
}

.reveal-text {
    display: inline-block;
}

.hello-anim {
    display: inline-block;
    font-family: var(--font-display);
}

.name-highlight {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-sub {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--accent2);
    margin-bottom: 18px;
    min-height: 2rem;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--accent);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.home-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.home-desc strong {
    color: var(--text-soft);
}

.home-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 20px rgba(124, 106, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(124, 106, 247, 0.5);
    background: #8f7fff;
}

[data-theme="light"] .btn-primary {
    box-shadow: 0 4px 16px rgba(91, 71, 232, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    background: var(--surface-hover);
    transform: translateY(-2px);
}

.home-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

.home-decorations {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.c1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    border-color: rgba(124, 106, 247, 0.12);
    animation: spin 25s linear infinite;
}

.c2 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 80px;
    border-color: rgba(247, 146, 106, 0.1);
    animation: spin 18s linear infinite reverse;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.deco-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 106, 247, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 106, 247, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}

.floating-code {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-code span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(124, 106, 247, 0.3);
    padding: 8px 14px;
    border: 1px solid rgba(124, 106, 247, 0.1);
    border-radius: 6px;
    animation: floatCode 4s ease-in-out infinite;
}

.floating-code span:nth-child(2) {
    animation-delay: 1s;
}

.floating-code span:nth-child(3) {
    animation-delay: 2s;
}

.floating-code span:nth-child(4) {
    animation-delay: 3s;
}

@keyframes floatCode {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3
    }

    50% {
        transform: translateY(-8px);
        opacity: 0.6
    }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.about-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    position: relative;
}

.avatar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringPulse 3s ease-in-out infinite;
}

.r1 {
    width: 162px;
    height: 162px;
    border-color: rgba(124, 106, 247, 0.4);
}

.r2 {
    width: 186px;
    height: 186px;
    border-color: rgba(124, 106, 247, 0.2);
    animation-delay: 0.5s;
}

.r3 {
    width: 210px;
    height: 210px;
    border-color: rgba(124, 106, 247, 0.1);
    animation-delay: 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.04);
        opacity: 0.6
    }
}

.about-stats {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 76px;
    transition: border-color 0.3s, transform 0.3s;
    box-shadow: var(--shadow-card);
}

.stat-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent2);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.resume-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(124, 106, 247, 0.3);
}

.resume-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 106, 247, 0.4);
}

.about-content {
    padding: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
}

.about-para {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-para mark {
    background: var(--mark-bg);
    color: var(--mark-text);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.about-tags span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: border-color 0.3s, color 0.3s;
}

.about-tags span:hover {
    border-color: var(--accent3);
    color: var(--accent3);
}

/* ===== SKILLS ===== */
.skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.skill-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.skill-card-header:hover {
    background: var(--surface-hover);
}

.skill-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: background 0.3s, transform 0.3s;
}

.skill-card:hover .skill-icon-wrap {
    background: rgba(124, 106, 247, 0.18);
    transform: rotate(5deg) scale(1.05);
}

.skill-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.skill-header-text {
    flex: 1;
}

.skill-header-text h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.skill-count {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.skill-toggle-icon {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s, color 0.3s;
}

.skill-card.open .skill-toggle-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.skill-pills-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
}

.skill-card.open .skill-pills-wrap {
    max-height: 300px;
}

.skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px 22px;
}

.pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 6px 14px;
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 20px;
    color: var(--pill-text);
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.pill:hover {
    background: rgba(124, 106, 247, 0.22);
    transform: scale(1.06);
    box-shadow: 0 2px 8px rgba(124, 106, 247, 0.2);
}

/* Desktop: always open */
@media (min-width: 769px) {
    .skill-pills-wrap {
        max-height: 300px !important;
        padding-top: 0;
    }

    .skill-toggle-icon {
        display: none;
    }
}

/* ===== EDUCATION ===== */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 44px;
}

.timeline-dot {
    position: absolute;
    left: -58px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(124, 106, 247, 0.15), 0 0 14px rgba(124, 106, 247, 0.35);
}

.timeline-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: var(--shadow-card);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.timeline-card:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
}

.timeline-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--accent2);
    background: rgba(247, 146, 106, 0.1);
    border: 1px solid rgba(247, 146, 106, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.timeline-inst {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.timeline-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.meta-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 3px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
}

.meta-tag.grade {
    background: rgba(106, 247, 196, 0.08);
    border-color: rgba(106, 247, 196, 0.2);
    color: var(--accent3);
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PROJECTS ===== */
.project-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pill-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.35s;
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.project-card.hidden {
    display: none;
}

/* Project Visuals */
.project-visual {
    height: 172px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-bg-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-icon-wrap {
    font-size: 2.2rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
    transition: transform 0.3s;
}

.project-card:hover .project-icon-wrap {
    transform: scale(1.18) rotate(6deg);
}

.project-category-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.75);
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 3;
}

/* ===== CALENDAR PROJECT THEME ===== */

[data-theme="calendar"] {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    position: relative;
    overflow: hidden;
}

/* Top spiral binding effect */
[data-theme="calendar"] .calendar-ring-art {
    position: absolute;
    top: 12px;
    left: 12%;
    width: 76%;
    height: 6px;
    background: repeating-linear-gradient(90deg,
            #94a3b8,
            #94a3b8 10px,
            transparent 10px,
            transparent 20px);
    border-radius: 10px;
    opacity: 0.7;
}

/* Calendar body */
[data-theme="calendar"] .calendar-box {
    width: 72%;
    height: 60%;
    background: linear-gradient(145deg, #31455a, #2b416c);
    border-radius: 12px;
    margin: 45px auto 0;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
}

/* Dot indicators (notes) */
[data-theme="calendar"] .calendar-dots {
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.8);
}

/* Dot positions */
[data-theme="calendar"] .cd1 {
    top: 55%;
    left: 35%;
}

[data-theme="calendar"] .cd2 {
    top: 65%;
    left: 52%;
}

[data-theme="calendar"] .cd3 {
    top: 75%;
    left: 62%;
}

/* Subtle glow effect */
[data-theme="calendar"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15), transparent 70%);
    pointer-events: none;
}

.project-card:hover [data-theme="calendar"] .calendar-box {
    transform: translateY(-5px) scale(1.03);
    transition: 0.3s ease;
}

.project-card:hover [data-theme="calendar"] .calendar-dots {
    transform: scale(1.2);
}

/* Theme backgrounds for project visuals */
[data-theme="ai-art"] {
    background: linear-gradient(135deg, #1a0533, #2d1b4e, #1a0f3c);
}

[data-theme="ai-art"] .art-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

[data-theme="ai-art"] .a1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(180, 0, 255, 0.4), transparent);
    animation: artFloat 4s ease-in-out infinite;
}

[data-theme="ai-art"] .a2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.4), transparent);
    animation: artFloat 5s ease-in-out infinite 1s;
}

[data-theme="ai-art"] .a3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 100, 0, 0.3), transparent);
    animation: artFloat 3s ease-in-out infinite 2s;
}

[data-theme="forecast"] {
    background: linear-gradient(135deg, #001428, #002a55, #001428);
}

[data-theme="forecast"] .art-wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 60px;
    border-radius: 50%;
    opacity: 0.4;
}

[data-theme="forecast"] .w1 {
    top: 30%;
    background: rgba(0, 120, 255, 0.3);
    animation: waveMove 3s ease-in-out infinite;
}

[data-theme="forecast"] .w2 {
    top: 50%;
    background: rgba(0, 200, 255, 0.2);
    animation: waveMove 4s ease-in-out infinite 0.5s;
}

[data-theme="forecast"] .w3 {
    top: 70%;
    background: rgba(100, 255, 200, 0.15);
    animation: waveMove 5s ease-in-out infinite 1s;
}

[data-theme="aqi"] {
    background: linear-gradient(135deg, #1a0f00, #2d1a00, #140a14);
}

[data-theme="aqi"] .aqi-bar {
    position: absolute;
    bottom: 20px;
    width: 18px;
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-in-out infinite;
}

[data-theme="aqi"] .b1 {
    left: 20%;
    height: 40px;
    background: rgba(100, 255, 100, 0.7)
}

[data-theme="aqi"] .b2 {
    left: 35%;
    height: 65px;
    background: rgba(255, 255, 100, 0.7);
    animation-delay: .3s
}

[data-theme="aqi"] .b3 {
    left: 50%;
    height: 90px;
    background: rgba(255, 165, 0, 0.7);
    animation-delay: .6s
}

[data-theme="aqi"] .b4 {
    left: 65%;
    height: 55px;
    background: rgba(255, 80, 80, 0.7);
    animation-delay: .9s
}

[data-theme="aqi"] .b5 {
    left: 78%;
    height: 110px;
    background: rgba(180, 0, 180, 0.7);
    animation-delay: 1.2s
}

[data-theme="multimodal"] {
    background: linear-gradient(135deg, #001a2e, #0d2137, #1a1a3e);
}

.art-note {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: noteFloat 3s ease-in-out infinite;
}

.n1 {
    top: 20%;
    left: 20%
}

.n2 {
    top: 40%;
    right: 25%;
    animation-delay: 1s
}

.n3 {
    bottom: 25%;
    left: 40%;
    animation-delay: 2s
}

[data-theme="deforestation"] {
    background: linear-gradient(135deg, #0a2000, #153300, #0d1a00);
}

.forest-tree {
    position: absolute;
    font-size: 2rem;
    animation: treeSway 4s ease-in-out infinite;
}

.t1 {
    bottom: 10%;
    left: 20%
}

.t2 {
    bottom: 10%;
    left: 45%;
    animation-delay: .7s
}

.t3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.4s
}

.forest-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 100, 0, 0.15), transparent)
}

[data-theme="form"] {
    background: linear-gradient(135deg, #0d1a2e, #1a2d42);
}

.form-line {
    position: absolute;
    height: 2px;
    border-radius: 2px;
    background: rgba(100, 180, 255, 0.3);
    animation: formSlide 2s ease-in-out infinite;
}

.fl1 {
    width: 70%;
    top: 35%;
    left: 15%
}

.fl2 {
    width: 55%;
    top: 50%;
    left: 15%;
    animation-delay: .4s
}

.fl3 {
    width: 65%;
    top: 65%;
    left: 15%;
    animation-delay: .8s
}

.form-btn-fake {
    position: absolute;
    bottom: 18%;
    left: 15%;
    width: 100px;
    height: 22px;
    background: rgba(100, 180, 255, 0.25);
    border-radius: 5px
}

[data-theme="games"] {
    background: linear-gradient(135deg, #1a0a2e, #2d1a4e);
}

.game-pixel {
    position: absolute;
    border-radius: 4px;
    animation: pixelBlink 1s step-end infinite;
}

.gp1 {
    width: 20px;
    height: 20px;
    top: 25%;
    left: 20%;
    background: rgba(255, 255, 0, 0.7)
}

.gp2 {
    width: 15px;
    height: 15px;
    top: 45%;
    right: 30%;
    background: rgba(0, 255, 200, 0.7);
    animation-delay: .3s
}

.gp3 {
    width: 25px;
    height: 25px;
    bottom: 25%;
    left: 50%;
    background: rgba(255, 100, 200, 0.7);
    animation-delay: .6s
}

.gp4 {
    width: 12px;
    height: 12px;
    top: 30%;
    right: 20%;
    background: rgba(100, 200, 255, 0.7);
    animation-delay: .9s
}

[data-theme="chatbot"] {
    background: linear-gradient(135deg, #001a14, #002d24);
}

.chat-bubble {
    position: absolute;
    padding: 6px 12px;
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    animation: chatPop 3s ease-in-out infinite;
}

.cb1 {
    top: 20%;
    left: 12%;
    background: rgba(0, 200, 100, 0.2);
    border: 1px solid rgba(0, 200, 100, 0.3);
    color: rgba(0, 220, 120, .9)
}

.cb2 {
    top: 45%;
    right: 12%;
    background: rgba(100, 200, 255, 0.2);
    border: 1px solid rgba(100, 200, 255, 0.3);
    color: rgba(120, 210, 255, .9);
    animation-delay: 1s
}

.cb3 {
    bottom: 20%;
    left: 30%;
    background: rgba(200, 200, 200, 0.1);
    border: 1px solid rgba(200, 200, 200, 0.2);
    color: rgba(200, 200, 200, .7);
    animation-delay: 2s
}

[data-theme="calc"] {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 14px;
    width: 100%
}

.calc-btn {
    padding: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .7)
}

.calc-btn.op {
    background: rgba(124, 106, 247, .3);
    color: #7c6af7
}

[data-theme="space"] {
    background: linear-gradient(135deg, #000010, #000828);
}

.star {
    position: absolute;
    font-size: 1.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.s1 {
    top: 20%;
    left: 20%
}

.s2 {
    top: 50%;
    right: 25%;
    animation-delay: .7s
}

.s3 {
    bottom: 25%;
    left: 50%;
    animation-delay: 1.4s
}

.space-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(100, 100, 255, .08), transparent 70%)
}

[data-theme="weather"] {
    background: linear-gradient(135deg, #001428, #002855);
}

.weather-icon {
    position: absolute;
    font-size: 2rem;
    animation: weatherFloat 3s ease-in-out infinite;
}

.wi1 {
    top: 20%;
    left: 15%
}

.wi2 {
    top: 35%;
    right: 20%;
    animation-delay: 1s
}

.wi3 {
    bottom: 20%;
    left: 40%;
    animation-delay: 2s
}

[data-theme="todo"] {
    background: linear-gradient(135deg, #0a1428, #142846);
}

.todo-item {
    position: absolute;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
}

.ti1 {
    top: 25%;
    left: 12%;
    color: rgba(106, 247, 196, .8);
    border-color: rgba(106, 247, 196, .2)
}

.ti2 {
    top: 48%;
    left: 18%
}

.ti3 {
    bottom: 22%;
    left: 25%
}

.todo-item .check {
    color: var(--accent3);
    margin-right: 3px
}

[data-theme="landing"] {
    background: linear-gradient(135deg, #1a001a, #2d002d);
}

.landing-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 146, 106, .6), transparent);
    animation: landingLine 3s ease-in-out infinite;
}

.ll1 {
    width: 80%;
    top: 35%;
    left: 10%
}

.ll2 {
    width: 60%;
    top: 60%;
    left: 20%;
    animation-delay: 1s
}

.landing-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent2);
    box-shadow: 0 0 10px var(--accent2);
    animation: dotPulse 2s ease-in-out infinite;
}

.ld1 {
    top: 35%;
    left: 10%
}

.ld2 {
    top: 60%;
    left: 20%;
    animation-delay: 1s
}

[data-theme="music"] {
    background: linear-gradient(135deg, #1a0a00, #2d1400);
}

.music-bar {
    position: absolute;
    bottom: 20px;
    width: 12px;
    border-radius: 6px;
    background: linear-gradient(to top, var(--accent2), var(--accent));
    animation: musicPulse 1s ease-in-out infinite;
}

.mb1 {
    left: 20%;
    height: 30px
}

.mb2 {
    left: 33%;
    height: 55px;
    animation-delay: .2s
}

.mb3 {
    left: 46%;
    height: 70px;
    animation-delay: .4s
}

.mb4 {
    left: 59%;
    height: 45px;
    animation-delay: .6s
}

.mb5 {
    left: 72%;
    height: 80px;
    animation-delay: .8s
}

@keyframes artFloat {

    0%,
    100% {
        transform: scale(1) rotate(0)
    }

    50% {
        transform: scale(1.1) rotate(10deg)
    }
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-20px)
    }
}

@keyframes barGrow {

    0%,
    100% {
        opacity: .5;
        transform: scaleY(1)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1)
    }
}

@keyframes noteFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
        opacity: .6
    }

    50% {
        transform: translateY(-14px) rotate(5deg);
        opacity: 1
    }
}

@keyframes treeSway {

    0%,
    100% {
        transform: rotate(-3deg)
    }

    50% {
        transform: rotate(3deg)
    }
}

@keyframes formSlide {

    0%,
    100% {
        opacity: .3;
        width: 70%
    }

    50% {
        opacity: .7;
        width: 80%
    }
}

@keyframes pixelBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes chatPop {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7
    }

    50% {
        transform: translateY(-5px);
        opacity: 1
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.3);
        opacity: 1
    }
}

@keyframes weatherFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes landingLine {

    0%,
    100% {
        opacity: .3;
        transform: scaleX(.8)
    }

    50% {
        opacity: .8;
        transform: scaleX(1)
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }
}

@keyframes musicPulse {

    0%,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(1.3)
    }
}

.project-content {
    padding: 18px 20px 20px;
}

.project-content h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.project-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.project-content p strong {
    color: var(--text-soft);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.project-tech span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 3px 8px;
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 20px;
    color: var(--pill-text);
}

.project-link {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.project-link:hover {
    gap: 10px;
}

/* Mobile Slider Nav */
.mobile-slider-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, width 0.3s;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 4px;
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cert-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.cert-card:hover .cert-line {
    transform: scaleX(1);
}

.cert-card:hover .cert-glow {
    opacity: 1;
}

.cert-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 106, 247, 0.15), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.cert-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.cert-provider-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent2);
    background: rgba(247, 146, 106, 0.1);
    border: 1px solid rgba(247, 146, 106, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.cert-card h3 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.cert-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.cert-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    resize: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--surface-hover);
}

.send-btn {
    align-self: flex-start;
    background: var(--accent);
    color: #fff;
}

.send-btn:hover {
    background: #8f7fff;
    transform: translateY(-2px);
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail i {
    width: 34px;
    height: 34px;
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.detail-value {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
}

.contact-resume-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
}

.resume-card-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.resume-icon-big {
    font-size: 1.8rem;
    color: var(--accent2);
}

.resume-card-content h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.resume-card-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.resume-dl-btn {
    width: 100%;
    justify-content: center;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.88rem;
    transition: border-color 0.3s, transform 0.2s, background 0.3s;
    box-shadow: var(--shadow-card);
}

.social-btn:hover {
    transform: translateX(5px);
    background: var(--surface-hover);
    border-color: var(--accent);
}

.social-btn i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 28px;
    border-top: 1px solid var(--border);
    background: var(--footer-bg);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer span {
    color: var(--accent2);
}

/* ===== LIGHT THEME ADJUSTMENTS ===== */
[data-theme="light"] .animated-bg {
    background: linear-gradient(135deg, #f0eeff, #ede8ff, #f5f0ff) !important;
}

[data-theme="light"] .floating-code span {
    color: rgba(91, 71, 232, 0.4);
    border-color: rgba(91, 71, 232, 0.15);
}

[data-theme="light"] .deco-grid {
    background-image: linear-gradient(rgba(91, 71, 232, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 71, 232, 0.06) 1px, transparent 1px);
}

[data-theme="light"] .c1 {
    border-color: rgba(91, 71, 232, 0.18);
}

[data-theme="light"] .c2 {
    border-color: rgba(232, 96, 42, 0.12);
}

[data-theme="light"] .scroll-line::after {
    background: var(--accent);
}

[data-theme="light"] .section-header {}

[data-theme="light"] .about-avatar .avatar-ring.r1 {
    border-color: rgba(91, 71, 232, 0.4);
}

[data-theme="light"] .about-avatar .avatar-ring.r2 {
    border-color: rgba(91, 71, 232, 0.2);
}

[data-theme="light"] .about-avatar .avatar-ring.r3 {
    border-color: rgba(91, 71, 232, 0.1);
}

[data-theme="light"] .timeline::before {
    background: linear-gradient(to bottom, var(--accent), transparent);
}

[data-theme="light"] .timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(91, 71, 232, 0.12), 0 0 12px rgba(91, 71, 232, 0.25);
}


/* ===== DEV GIRL ILLUSTRATION ===== */
.dev-girl-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.girl-glow-blob {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(ellipse at 50% 50%, rgba(124, 106, 247, 0.22) 0%, rgba(247, 146, 106, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobPulse 4s ease-in-out infinite;
    filter: blur(20px);
    pointer-events: none;
}

@keyframes blobPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -55%) scale(1.1);
        opacity: 1;
    }
}

[data-theme="light"] .girl-glow-blob {
    background: radial-gradient(ellipse at 50% 50%, rgba(91, 71, 232, 0.15) 0%, rgba(232, 96, 42, 0.08) 40%, transparent 70%);
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    pointer-events: none;
}

.or1 {
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(124, 106, 247, 0.2);
    animation: orbitSpin 22s linear infinite;
    transform: translate(-50%, -50%);
}

.or2 {
    width: 460px;
    height: 300px;
    border: 1px dashed rgba(247, 146, 106, 0.15);
    animation: orbitSpin2 28s linear infinite reverse;
}

.or3 {
    width: 300px;
    height: 460px;
    border: 1px dashed rgba(106, 247, 196, 0.12);
    animation: orbitSpin3 18s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes orbitSpin2 {
    from {
        transform: translate(-50%, -50%) rotateX(65deg) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotateX(65deg) rotate(360deg)
    }
}

@keyframes orbitSpin3 {
    from {
        transform: translate(-50%, -50%) rotateY(65deg) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotateY(65deg) rotate(360deg)
    }
}

.dev-girl-svg {
    width: 290px;
    height: auto;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 18px 38px rgba(124, 106, 247, 0.28));
    animation: girlFloat 5s ease-in-out infinite;
    transform-origin: center bottom;
    transition: filter 0.3s;
}

@keyframes girlFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(-0.4deg);
    }

    40% {
        transform: translateY(-13px) rotate(0.5deg);
    }

    70% {
        transform: translateY(-5px) rotate(-0.3deg);
    }
}

.dev-girl-wrap:hover .dev-girl-svg {
    filter: drop-shadow(0 24px 48px rgba(124, 106, 247, 0.5)) drop-shadow(0 0 22px rgba(106, 247, 196, 0.25));
    animation-play-state: paused;
}

.dev-girl-wrap.clicked .dev-girl-svg {
    animation: girlBounce 0.65s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes girlBounce {
    0% {
        transform: translateY(0) scale(1);
    }

    18% {
        transform: translateY(-22px) scale(1.05) rotate(3deg);
    }

    36% {
        transform: translateY(-10px) scale(1.03) rotate(-2deg);
    }

    54% {
        transform: translateY(-16px) scale(1.04) rotate(1.5deg);
    }

    72% {
        transform: translateY(-5px) scale(1.01);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.code-line {
    opacity: 0;
    animation: codeAppear 0.25s ease forwards;
}

.cl1 {
    animation-delay: 0.9s
}

.cl2 {
    animation-delay: 1.3s
}

.cl3 {
    animation-delay: 1.7s
}

.cl4 {
    animation-delay: 2.0s
}

.cl5 {
    animation-delay: 2.4s
}

.cl6 {
    animation-delay: 2.9s
}

@keyframes codeAppear {
    to {
        opacity: 1
    }
}

.screen-cursor {
    animation: screenBlink 0.85s step-end infinite;
}

@keyframes screenBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.sparkle-star {
    animation: sparkleFloat 3s ease-in-out infinite;
    transform-origin: center;
}

.ss1 {
    animation-delay: 0s
}

.ss2 {
    animation-delay: 1.1s
}

.ss3 {
    animation-delay: 2s
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.4) rotate(25deg);
        opacity: 1;
    }
}

.float-tag {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.63rem;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    white-space: nowrap;
    z-index: 5;
    animation: tagFloat 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
    pointer-events: all;
}

.float-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.float-tag .tag-bracket {
    color: var(--accent2);
}

.ft1 {
    top: 6%;
    left: -2%;
    animation-delay: 0s;
    color: var(--accent);
    border-color: rgba(124, 106, 247, 0.3);
}

.ft2 {
    top: 16%;
    right: -2%;
    animation-delay: 0.8s;
    color: var(--accent3);
    border-color: rgba(106, 247, 196, 0.3);
}

.ft3 {
    top: 74%;
    left: -6%;
    animation-delay: 1.6s;
    color: #61dafb;
    border-color: rgba(97, 218, 251, 0.3);
}

.ft4 {
    bottom: 14%;
    right: -4%;
    animation-delay: 2.3s;
    color: #f7d44c;
    border-color: rgba(247, 212, 76, 0.3);
}

.ft5 {
    bottom: 5%;
    left: 4%;
    animation-delay: 3.1s;
    font-size: 0.56rem;
}

.ft6 {
    top: 46%;
    right: -6%;
    animation-delay: 1.3s;
    color: var(--accent3);
    border-color: rgba(106, 247, 196, 0.3);
}

@keyframes tagFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.skill-bubble {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    pointer-events: none;
    animation: bubbleFloat 5s ease-in-out infinite;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.sb1 {
    background: linear-gradient(135deg, #e34c26, #f06529);
    top: 28%;
    left: -16%;
    animation-delay: 0s;
}

.sb2 {
    background: linear-gradient(135deg, #264de4, #2965f1);
    top: 56%;
    left: -13%;
    animation-delay: 1.5s;
}

.sb3 {
    background: linear-gradient(135deg, #f0db4f, #e8d44d);
    color: #333;
    top: 28%;
    right: -13%;
    animation-delay: 3s;
}

.sb4 {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    top: 56%;
    right: -11%;
    animation-delay: 4.5s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    40% {
        transform: translateY(-10px) scale(1.09)
    }

    70% {
        transform: translateY(-4px) scale(1.04)
    }
}

.click-ripple-zone {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: rippleOut 0.75s ease-out forwards;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

@keyframes rippleOut {
    from {
        width: 0;
        height: 0;
        opacity: 0.9;
    }

    to {
        width: 220px;
        height: 220px;
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 260px 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .skills-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--nav-bg);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 80px 36px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 1px solid var(--nav-border);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 13px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-resume-btn {
        border: none !important;
        color: var(--accent2) !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .home-title {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        letter-spacing: -1.5px;
    }

    .home {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 60px;
    }

    .dev-girl-wrap {
        height: 320px;
    }

    .dev-girl-svg {
        width: 200px;
    }

    .float-tag {
        display: none;
    }

    .skill-bubble {
        width: 32px;
        height: 32px;
        font-size: 0.5rem;
    }

    .orbit-ring {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-visual {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }

    .skill-pills-wrap {
        max-height: 0 !important;
    }

    .skill-card.open .skill-pills-wrap {
        max-height: 300px !important;
    }

    .skill-toggle-icon {
        display: block !important;
    }

    .timeline {
        padding-left: 24px;
    }

    .timeline-dot {
        left: -32px;
    }

    /* Projects: Mobile Slider */
    .projects-grid {
        display: flex;
        overflow: hidden;
        gap: 0;
        scroll-behavior: smooth;
    }

    .project-card {
        min-width: 100%;
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
        display: none;
    }

    .project-card.slide-active {
        display: block;
        animation: slideIn 0.4s ease;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(30px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    .mobile-slider-nav {
        display: flex;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .panel {
        padding: 96px 5% 60px;
    }

    .cursor-dot,
    .cursor-ring,
    #sparkle-canvas {
        display: none;
    }

    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .home-cta {
        flex-direction: column;
    }

    .home-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .home-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .about-content {
        padding: 22px;
    }

    .timeline-card {
        padding: 18px;
    }

    .section-header {
        gap: 10px;
    }

    .section-title {
        font-size: 1.65rem;
    }
}

/* ===== NEURAL BACKGROUND ===== */
#neural-bg {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 1;
}

/* ===== 3D DEV CANVAS ===== */
#devCanvas3D {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    cursor: pointer;
}

.dev-girl-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

/* ===== AI TWIN ORB ===== */
.ai-twin-orb {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 10000;
    animation: orbPulse 3.5s ease-in-out infinite;
}

.orb-glow {
    position: absolute;
    inset: -18px;
    background: radial-gradient(circle, rgba(124, 106, 247, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbGlow 3s ease-in-out infinite;
}

.orb-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c6af7 0%, #f7926a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 0 30px rgba(124, 106, 247, 0.7), 0 0 60px rgba(124, 106, 247, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
}

.ai-twin-orb:hover .orb-inner {
    transform: scale(1.12);
}

.orb-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-muted);
    background: rgba(5, 8, 16, 0.92);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(124, 106, 247, 0.3);
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1) translateY(0)
    }

    50% {
        transform: scale(1.08) translateY(-4px)
    }
}

@keyframes orbGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.15)
    }
}

/* ===== AI MODAL ===== */
.ai-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.ai-modal.open {
    display: flex;
}

.ai-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: var(--surface);
    border: 1px solid rgba(124, 106, 247, 0.3);
    padding: 40px 44px;
    border-radius: 24px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 0 60px rgba(124, 106, 247, 0.35), 0 24px 48px rgba(0, 0, 0, 0.5);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from {
        transform: scale(0.7) translateY(40px);
        opacity: 0
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1
    }
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-orb {
    font-size: 2.5rem;
    animation: orbPulse 2s ease-in-out infinite;
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

#aiResponse {
    font-size: 1rem;
    color: var(--accent3);
    margin: 16px 0;
    line-height: 1.6;
    font-family: var(--font-body);
    min-height: 48px;
}

.modal-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 20px 0;
}

.mstat {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
}

.mstat span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent2);
}

.mstat {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.modal-close-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

.modal-close-btn:hover {
    background: #8f7fff;
    transform: scale(1.04);
}

/* ===== 3D CARD TILT ===== */
.project-card {
    transform-style: preserve-3d;
}

/* ===== LIGHT THEME AI ORB ===== */
[data-theme="light"] .orb-label {
    background: rgba(245, 244, 255, 0.95);
    color: var(--text-muted);
    border-color: rgba(91, 71, 232, 0.2);
}

/* ===== MOBILE ORB ===== */
@media (max-width: 768px) {
    .ai-twin-orb {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .orb-inner {
        font-size: 20px;
    }
}

/* ====================== GIRL PHOTO CARD ====================== */
.girl-photo-card {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: girlFloat 5s ease-in-out infinite;
    cursor: pointer;
}

.girl-photo-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 106, 247, 0.15), rgba(106, 247, 196, 0.08));
    border: 2px solid rgba(124, 106, 247, 0.25);
    box-shadow:
        0 24px 60px rgba(124, 106, 247, 0.3),
        0 0 0 1px rgba(124, 106, 247, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.girl-photo-card:hover .girl-photo-frame {
    box-shadow:
        0 32px 80px rgba(124, 106, 247, 0.5),
        0 0 40px rgba(106, 247, 196, 0.2),
        0 0 0 1px rgba(124, 106, 247, 0.3);
    transform: scale(1.02);
}

[data-theme="light"] .girl-photo-frame {
    background: linear-gradient(135deg, rgba(91, 71, 232, 0.08), rgba(26, 184, 127, 0.05));
    border-color: rgba(91, 71, 232, 0.2);
    box-shadow: 0 20px 50px rgba(91, 71, 232, 0.2), 0 0 0 1px rgba(91, 71, 232, 0.08);
}

.girl-cartoon-img {
    width: 380px;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
    transition: filter 0.4s;
    filter: brightness(1.02) saturate(1.05);
}

[data-theme="light"] .girl-cartoon-img {
    filter: brightness(1) saturate(1);
}

.girl-screen-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(124, 106, 247, 0.18), transparent);
    pointer-events: none;
}

[data-theme="light"] .girl-screen-glow {
    background: linear-gradient(to top, rgba(91, 71, 232, 0.1), transparent);
}

.girl-typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 20px;
    margin-top: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4
    }

    50% {
        transform: translateY(-5px);
        opacity: 1
    }
}

.girl-typing-text {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--accent3);
    margin-left: 2px;
    letter-spacing: 0.05em;
}

.girl-photo-card.bounce {
    animation: girlClickBounce 0.65s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes girlClickBounce {
    0% {
        transform: translateY(0) scale(1)
    }

    18% {
        transform: translateY(-22px) scale(1.05) rotate(2.5deg)
    }

    36% {
        transform: translateY(-10px) scale(1.03) rotate(-1.5deg)
    }

    54% {
        transform: translateY(-16px) scale(1.04) rotate(1deg)
    }

    72% {
        transform: translateY(-4px) scale(1.01)
    }

    100% {
        transform: translateY(0) scale(1)
    }
}

/* ====================== ABOUT - PROFILE PHOTO ====================== */
.avatar-photo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}

.avatar-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 4px rgba(124, 106, 247, 0.2);
}

.avatar-upload-btn {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: #fff;
    border: 2px solid var(--bg);
    transition: background 0.2s, transform 0.2s;
    z-index: 3;
}

.avatar-upload-btn:hover {
    background: var(--accent2);
    transform: scale(1.1);
}

.avatar-initials {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    position: relative;
}

/* ====================== SAKSHI ORB CHATBOT ====================== */
.sakshi-orb {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 68px;
    height: 68px;
    cursor: pointer;
    z-index: 10000;
    animation: orbFloat 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sakshi-orb-glow {
    position: absolute;
    inset: -16px;
    background: radial-gradient(circle, rgba(124, 106, 247, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbGlow2 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbGlow2 {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.2)
    }
}

.sakshi-orb-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg), var(--bg)) padding-box,
        linear-gradient(135deg, #7c6af7, #f7926a, #6af7c4) border-box;
    box-shadow: 0 0 28px rgba(124, 106, 247, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 2;
}

.sakshi-orb-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.sakshi-orb:hover .sakshi-orb-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(124, 106, 247, 0.8);
}

.sakshi-orb-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
    background: rgba(5, 8, 16, 0.9);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(124, 106, 247, 0.2);
}

[data-theme="light"] .sakshi-orb-label {
    background: rgba(245, 244, 255, 0.95);
}

.orb-online-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--bg);
    z-index: 3;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

/* ====================== SAKSHI CHAT MODAL ====================== */
.sakshi-chat-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.sakshi-chat-modal.open {
    display: flex;
}

.chat-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.chat-modal-box {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 620px;
    background: var(--surface-2, rgba(10, 10, 20, 0.98));
    border: 1px solid rgba(124, 106, 247, 0.25);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(124, 106, 247, 0.2), 0 24px 48px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] .chat-modal-box {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(91, 71, 232, 0.2);
    box-shadow: 0 8px 40px rgba(91, 71, 232, 0.15), 0 24px 48px rgba(0, 0, 0, 0.12);
}

@keyframes chatSlideIn {
    from {
        transform: translateY(40px) scale(0.9);
        opacity: 0
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1
    }
}

/* Chat Header */
.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(124, 106, 247, 0.15), rgba(106, 247, 196, 0.08));
    border-bottom: 1px solid var(--border);
}

.chat-header-avatar {
    width: 44px;
    height: 44px;
    position: relative;
    flex-shrink: 0;
}

.chat-header-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--accent);
}

.chat-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--bg);
}

.chat-header-info {
    flex: 1;
}

.chat-header-info h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.chat-status {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: onlinePulse 2s infinite;
}

.chat-header-actions {
    display: flex;
    gap: 6px;
}

.chat-action-btn {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s, color 0.2s;
}

.chat-action-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.chat-date-divider {
    text-align: center;
    position: relative;
    margin: 4px 0;
}

.chat-date-divider span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    background: var(--surface);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

/* Message bubbles */
.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.chat-msg.user-msg {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.msg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.user-avatar-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    font-family: var(--font-mono);
}

.msg-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 18px 18px 18px 4px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.user-msg .msg-bubble {
    border-radius: 18px 18px 4px 18px;
    background: linear-gradient(135deg, var(--accent), #9d8fff);
    border: none;
    color: #fff;
}

.msg-bubble p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0;
}

.user-msg .msg-bubble p {
    color: #fff;
}

.msg-time {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.user-msg .msg-time {
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
}

/* Typing bubble */
.typing-bubble .msg-bubble {
    padding: 12px 16px;
}

.typing-animation {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-animation span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-animation span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Suggestions */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.sugg-btn {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 6px 12px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.sugg-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(124, 106, 247, 0.08);
}

/* Chat Input */
.chat-input-area {
    padding: 12px 16px 14px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.chat-input-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-input-wrap input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input-wrap input:focus {
    border-color: var(--accent);
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    background: #8f7fff;
    transform: scale(1.08);
}

.chat-powered {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 6px;
}

/* ====================== ANALYZER MODAL ====================== */
.analyzer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10002;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.analyzer-modal.open {
    display: flex;
}

.analyzer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.analyzer-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 840px;
    max-height: 90vh;
    background: var(--surface-2, rgba(10, 10, 20, 0.98));
    border: 1px solid rgba(124, 106, 247, 0.2);
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(124, 106, 247, 0.2), 0 24px 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    animation: chatSlideIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] .analyzer-box {
    background: rgba(255, 255, 255, 0.99);
}

.analyzer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: inherit;
    z-index: 3;
}

.analyzer-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.analyzer-title h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text);
}

.analyzer-badge {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(124, 106, 247, 0.2), rgba(106, 247, 196, 0.15));
    border: 1px solid rgba(124, 106, 247, 0.3);
    color: var(--accent);
}

/* Loading animation */
.analyzer-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    gap: 24px;
}

.analyzer-scan-anim {
    position: relative;
    width: 200px;
    height: 120px;
}

.scan-girl {
    width: 120px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.85;
}

.scan-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent3), transparent);
    animation: scanMove 1.5s ease-in-out infinite;
    box-shadow: 0 0 12px var(--accent);
}

@keyframes scanMove {
    0% {
        top: 0;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        top: 118px;
        opacity: 0
    }
}

.analyzer-loading p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 320px;
}

.load-step {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    opacity: 0.4;
}

.load-step.active {
    opacity: 1;
    color: var(--accent3);
    border-color: rgba(106, 247, 196, 0.3);
    background: rgba(106, 247, 196, 0.06);
}

.load-step.done {
    opacity: 0.7;
    color: var(--accent);
}

/* Dashboard */
.analyzer-dashboard {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Score card */
.dash-overview {
    display: flex;
}

.dash-score-card {
    display: flex;
    gap: 28px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}

.score-ring {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.score-ring svg {
    width: 120px;
    height: 120px;
}

.score-arc {
    transition: stroke-dashoffset 2s ease;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    line-height: 1;
}

.score-value span {
    font-size: 0.9rem;
    color: var(--accent);
}

.score-label {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.score-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sb-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    width: 90px;
    flex-shrink: 0;
}

.sb-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.sb-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease;
}

.sb-val {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text);
    width: 36px;
    text-align: right;
}

/* Stats row */
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.ds-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ds-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}

.ds-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* Two col */
.dash-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.dash-card.full-width {
    grid-column: 1 / -1;
}

.dash-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.skill-radar-wrap {
    display: flex;
    justify-content: center;
}

/* Insights */
.ai-insights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
}

.insight-item.good {
    background: rgba(106, 247, 196, 0.06);
}

.insight-item.suggest {
    background: rgba(247, 212, 76, 0.06);
}

.insight-item i {
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.insight-item.good i {
    color: var(--accent3);
}

.insight-item.suggest i {
    color: #f7d44c;
}

.insight-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Project chart */
.proj-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proj-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pbi-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 80px;
    flex-shrink: 0;
}

.pbi-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pbi-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 1.5s ease;
}

.pbi-val {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text);
    width: 70px;
}

/* Career paths */
.career-card {
    background: linear-gradient(135deg, rgba(124, 106, 247, 0.08), rgba(106, 247, 196, 0.05));
}

.career-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.career-path {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.career-path.best {
    border-color: rgba(124, 106, 247, 0.4);
    background: rgba(124, 106, 247, 0.08);
}

.cp-rank {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

.career-path strong {
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: var(--text);
}

.career-path p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cp-score {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent3);
    background: rgba(106, 247, 196, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(106, 247, 196, 0.2);
    display: inline-block;
    margin-top: 4px;
}

.dash-footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .sakshi-orb {
        bottom: 18px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .sakshi-orb-avatar {
        width: 56px;
        height: 56px;
    }

    .chat-modal-box {
        width: 100%;
        height: 85vh;
        border-radius: 20px 20px 0 0;
    }

    .sakshi-chat-modal {
        padding: 0;
        align-items: flex-end;
    }

    .analyzer-box {
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
    }

    .analyzer-modal {
        padding: 0;
        align-items: flex-end;
    }

    .dash-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-two-col {
        grid-template-columns: 1fr;
    }

    .career-paths {
        grid-template-columns: 1fr;
    }

    .dash-score-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .girl-cartoon-img {
        width: 240px;
    }

    .girl-photo-frame {
        border-radius: 20px;
    }
}