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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;

    background:
        radial-gradient(circle at 15% 20%, rgba(255, 51, 102, 0.25), transparent 25%),
        radial-gradient(circle at 85% 10%, rgba(128, 0, 32, 0.35), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(255, 179, 198, 0.12), transparent 30%),
        #140007;

    background-attachment: fixed;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;

    padding: 0 40px;

    background: rgba(20, 0, 7, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);

    z-index: 999;
    transition: 0.3s ease;
}

.navbar:hover {
    background: rgba(20, 0, 7, 0.72);
}

/* LOGO */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffb3c6;
    letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 14px;
    font-weight: 500;

    padding: 8px 14px;
    border-radius: 999px;

    background: transparent;
    transition: 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #ffb3c6;

    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.18);
    transform: translateY(-2px);
}

/* SCROLL PROGRESS LINE */
#scrollProgress {
    position: fixed;
    top: 70px;
    left: 0;

    height: 2px;
    width: 0%;

    background: linear-gradient(90deg, #ff3366, #ffb3c6);
    z-index: 1000;

    transition: width 0.1s linear;
}

/* HEADER */
header {
    padding: 140px 20px 110px;
    text-align: center;

    background: rgba(128, 0, 32, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;
}

header:hover {
    background: rgba(128, 0, 32, 0.35);
}

header h1 {
    font-size: 45px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

header p {
    color: #ffd6e0;
    font-weight: 300;
}

/* SECTIONS */
section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    font-weight: 600;
    color: #ffb3c6;
    margin-bottom: 20px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* GRID SYSTEM */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* GLASS CARDS */
.card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    padding: 24px;
    border-radius: 22px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition: 0.35s ease;
    font-weight: 300;
}

.card:hover {
    transform: translateY(-8px) scale(1.015);

    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 179, 198, 0.35);

    box-shadow:
        0 25px 70px rgba(255, 51, 102, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 18px;

    background: rgba(128, 0, 32, 0.7);
    color: white;

    text-decoration: none;
    border-radius: 999px;

    margin-top: 10px;

    border: 1px solid rgba(255, 179, 198, 0.25);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background: rgba(179, 0, 45, 0.9);
    transform: scale(1.05);

    box-shadow:
        0 10px 25px rgba(179, 0, 45, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;

    background: rgba(11, 0, 3, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: #aaa;
    font-size: 14px;
}

/* LEFT RIGHT TEXT */
.left {
    text-align: left;
}

.right {
    text-align: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 10px;
        margin-right: 0;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 10px;
    }

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

    .right {
        text-align: left;
    }

    header h1 {
        font-size: 34px;
    }
}

/* ABOUT ME SHOWCASE */
.about-showcase {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 45px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-copy {
    text-align: left;
}

.section-label {
    color: #ffb3c6;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-copy p {
    font-size: 22px;
    line-height: 1.7;
    font-weight: 400;
    color: #f5f5f5;
    margin-bottom: 22px;
}

.about-copy .muted-text {
    color: rgba(245, 245, 245, 0.45);
}

/* SKILL BADGES */
.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.skill-badges span {
    padding: 8px 14px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 179, 198, 0.18);

    color: #ffd6e0;
    font-size: 13px;
    font-weight: 500;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: 0.3s ease;
}

.skill-badges span:hover {
    transform: translateY(-3px);
    background: rgba(255, 51, 102, 0.16);
    border-color: rgba(255, 179, 198, 0.4);
    box-shadow: 0 12px 25px rgba(255, 51, 102, 0.16);
}

/* PHOTO CARD */
.photo-panel {
    position: relative;
    overflow: hidden;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;
}

.photo-panel:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow:
        0 30px 90px rgba(255, 51, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.photo-top {
    position: absolute;
    top: 14px;
    left: 16px;
    right: 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 2;
}

.photo-top span {
    background: rgba(0, 0, 0, 0.55);
    color: #ff3366;

    padding: 5px 12px;
    border-radius: 999px;

    font-size: 11px;
    font-family: monospace;
    letter-spacing: 1px;
}

.photo-dots {
    display: flex;
    gap: 10px;
}

.photo-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.profile-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;

    filter: saturate(0.95) contrast(1.05);
    transition: 0.4s ease;
}

.photo-panel:hover .profile-photo {
    transform: scale(1.04);
    filter: saturate(1.1) contrast(1.08);
}

.photo-footer {
    padding: 24px;
    background: linear-gradient(135deg, rgba(179, 0, 45, 0.85), rgba(20, 0, 7, 0.8));

    display: flex;
    justify-content: space-between;
    align-items: end;
}

.photo-footer h3 {
    margin: 0;
    font-size: 26px;
    font-family: Georgia, serif;
    font-style: italic;
    color: white;
}

.photo-footer p {
    margin: 0;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* RESPONSIVE ABOUT SECTION */
@media (max-width: 900px) {
    .about-showcase {
        grid-template-columns: 1fr;
    }

    .about-copy p {
        font-size: 18px;
    }

    .profile-photo {
        height: 360px;
    }
}

/* STATS SECTION 2x2 GRID */
.stats-grid {
    max-width: 750px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.stat-card {
    min-height: 150px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transition: 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 179, 198, 0.35);
    box-shadow: 0 25px 70px rgba(255, 51, 102, 0.18);
}

.stat-card h3 {
    margin: 0;
    font-size: 36px;
    color: #ffb3c6;
    font-weight: 700;
}

.stat-card p {
    margin: 10px 0 0;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
}

/* phone size */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-done {
    animation: statPop 0.35s ease;
}

@keyframes statPop {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

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

/* EXTREME HERO SECTION */
.extreme-hero {
    position: relative;
    min-height: 90vh;
    padding: 130px 40px 100px;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.22), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255, 179, 198, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(20, 0, 7, 0.95), rgba(90, 0, 25, 0.85));
}

/* animated grid */
.hero-bg-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);

    background-size: 45px 45px;
    mask-image: linear-gradient(to bottom, black, transparent);
    animation: gridMove 18s linear infinite;

    opacity: 0.7;
}

@keyframes gridMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(45px);
    }
}

/* glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.65;
    animation: floatOrb 8s ease-in-out infinite alternate;
}

.orb-one {
    width: 300px;
    height: 300px;
    background: #ff3366;
    top: 15%;
    left: -80px;
}

.orb-two {
    width: 260px;
    height: 260px;
    background: #800020;
    bottom: 10%;
    right: -70px;
}

@keyframes floatOrb {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-35px) scale(1.1);
    }
}

/* layout */
.extreme-content {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    width: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.extreme-text {
    text-align: left;
}

.extreme-text .tagline {
    color: #ffb3c6;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* glitch name */
.glitch {
    position: relative;

    font-size: clamp(60px, 9vw, 120px);
    line-height: 0.95;
    margin: 15px 0;

    color: #ffffff;
    font-weight: 700;
    letter-spacing: -3px;

    text-shadow:
        0 0 20px rgba(255, 51, 102, 0.45),
        0 0 60px rgba(255, 51, 102, 0.25);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.7;
}

.glitch::before {
    color: #ff3366;
    transform: translateX(3px);
    animation: glitchOne 1.4s infinite linear alternate-reverse;
}

.glitch::after {
    color: #ffd6e0;
    transform: translateX(-3px);
    animation: glitchTwo 1.1s infinite linear alternate-reverse;
}

@keyframes glitchOne {
    0% {
        clip-path: inset(0 0 80% 0);
    }

    50% {
        clip-path: inset(35% 0 30% 0);
    }

    100% {
        clip-path: inset(75% 0 0 0);
    }
}

@keyframes glitchTwo {
    0% {
        clip-path: inset(75% 0 0 0);
    }

    50% {
        clip-path: inset(10% 0 60% 0);
    }

    100% {
        clip-path: inset(0 0 85% 0);
    }
}

.extreme-text h2 {
    font-size: 30px;
    color: #ffb3c6;
    margin-bottom: 20px;
}

.extreme-text p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

/* code pills */
.code-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.code-pills span {
    padding: 9px 15px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 179, 198, 0.2);

    color: #ffd6e0;
    font-size: 13px;
    font-weight: 500;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: 0.3s ease;
}

.code-pills span:hover {
    transform: translateY(-4px) rotate(-2deg);
    background: rgba(255, 51, 102, 0.18);
    box-shadow: 0 12px 30px rgba(255, 51, 102, 0.22);
}

/* terminal */
.mega-terminal {
    position: relative;

    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(255, 51, 102, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    overflow: hidden;
    transition: 0.35s ease;
}

.mega-terminal:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.55),
        0 0 100px rgba(255, 51, 102, 0.25);
}

.mega-terminal .terminal-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 0 18px;

    background: rgba(255, 255, 255, 0.06);
}

.mega-terminal .terminal-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 179, 198, 0.55);
}

.mega-terminal pre {
    margin: 0;
    padding: 25px;

    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.7;

    color: #f5f5f5;
    white-space: pre-wrap;
}

.command {
    color: #ff3366;
    font-weight: 700;
}

/* responsive */
@media (max-width: 900px) {
    .extreme-content {
        grid-template-columns: 1fr;
    }

    .extreme-text {
        text-align: center;
    }

    .extreme-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .code-pills,
    .hero-buttons {
        justify-content: center;
    }

    .mega-terminal {
        max-width: 600px;
        margin: auto;
    }
}

/* EXTREME PROJECT SECTION */
.projects-showcase {
    max-width: 1200px;
    padding-top: 90px;
    padding-bottom: 100px;
}

.projects-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.projects-header h2 {
    font-size: 46px;
    margin: 10px 0;
    color: #ffffff;
    text-shadow:
        0 0 25px rgba(255, 51, 102, 0.35),
        0 0 60px rgba(255, 51, 102, 0.18);
}

.projects-header p {
    color: rgba(255, 255, 255, 0.65);
}

/* PROJECT GRID */
.extreme-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* PROJECT CARD */
.extreme-project-card {
    position: relative;
    overflow: hidden;

    min-height: 420px;
    padding: 28px;

    display: flex;
    flex-direction: column;

    border-radius: 28px;

    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(20, 0, 7, 0.45);

    border: 1px solid rgba(255, 255, 255, 0.13);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);

    isolation: isolate;
    transition: 0.4s ease;
}

/* glowing moving background */
.extreme-project-card::before {
    content: "";
    position: absolute;
    inset: -2px;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255, 51, 102, 0.25),
            transparent
        );

    transform: translateX(-120%);
    transition: 0.6s ease;
    z-index: -1;
}

.extreme-project-card:hover::before {
    transform: translateX(120%);
}

.extreme-project-card::after {
    content: attr(data-project);
    position: absolute;
    right: -8px;
    bottom: -38px;

    font-size: 150px;
    font-weight: 700;
    line-height: 1;

    color: rgba(255, 255, 255, 0.035);
    z-index: -1;
}

/* hover movement */
.extreme-project-card:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(255, 179, 198, 0.4);

    box-shadow:
        0 35px 100px rgba(255, 51, 102, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* inner glow */
.project-glow {
    position: absolute;
    width: 180px;
    height: 180px;

    top: -70px;
    right: -70px;

    background: #ff3366;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.25;

    transition: 0.4s ease;
    z-index: -1;
}

.extreme-project-card:hover .project-glow {
    opacity: 0.5;
    transform: scale(1.2);
}

/* top row */
.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.project-status {
    padding: 7px 12px;
    border-radius: 999px;

    background: rgba(255, 51, 102, 0.15);
    border: 1px solid rgba(255, 179, 198, 0.25);

    color: #ffb3c6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-number {
    color: rgba(255, 255, 255, 0.35);
    font-family: monospace;
    font-size: 14px;
}

/* title */
.extreme-project-card h3 {
    font-size: 25px;
    margin: 0 0 18px;

    color: #ffffff;
    line-height: 1.2;
}

.extreme-project-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 24px;
}

/* tech badges */
.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: auto;
}

.tech-used span {
    padding: 7px 12px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffd6e0;
    font-size: 12px;
    font-weight: 500;

    transition: 0.3s ease;
}

.tech-used span:hover {
    background: rgba(255, 51, 102, 0.18);
    border-color: rgba(255, 179, 198, 0.4);
    transform: translateY(-3px);
}

/* footer */
.project-footer {
    margin-top: 28px;
    padding-top: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.project-footer span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.project-footer a {
    color: #ffb3c6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.project-footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 51, 102, 0.8);
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .extreme-project-grid {
        grid-template-columns: 1fr;
    }

    .extreme-project-card {
        min-height: 360px;
    }

    .projects-header h2 {
        font-size: 36px;
    }
}

/* EXTREME EDUCATION SECTION */
.education-lab,
.contact-zone {
    max-width: 1200px;
    padding-top: 90px;
    padding-bottom: 100px;
}

.education-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.education-card,
.contact-card,
.contact-terminal {
    position: relative;
    overflow: hidden;

    min-height: 330px;
    padding: 30px;

    border-radius: 28px;

    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(20, 0, 7, 0.45);

    border: 1px solid rgba(255, 255, 255, 0.13);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);

    transition: 0.4s ease;
}

.education-card:hover,
.contact-card:hover,
.contact-terminal:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 179, 198, 0.4);
    box-shadow:
        0 35px 100px rgba(255, 51, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.education-card::after,
.contact-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    right: -80px;
    top: -80px;

    background: #ff3366;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.22;

    transition: 0.4s ease;
}

.education-card:hover::after,
.contact-card:hover::after {
    opacity: 0.45;
    transform: scale(1.2);
}

.edu-tag {
    display: inline-block;

    padding: 7px 12px;
    border-radius: 999px;

    background: rgba(255, 51, 102, 0.15);
    border: 1px solid rgba(255, 179, 198, 0.25);

    color: #ffb3c6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 22px;
}

.education-card h3,
.contact-card h3 {
    font-size: 30px;
    color: white;
    margin: 0 0 18px;
}

.education-card p,
.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.edu-progress {
    width: 100%;
    height: 10px;

    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;

    overflow: hidden;
    margin: 30px 0 10px;
}

.edu-progress-bar {
    width: 72%;
    height: 100%;

    background: linear-gradient(90deg, #ff3366, #ffb3c6);
    border-radius: 999px;

    box-shadow: 0 0 25px rgba(255, 51, 102, 0.6);
}

.education-card small {
    color: rgba(255, 255, 255, 0.45);
}

/* LEARNING GRID */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.learning-grid div {
    padding: 16px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: 0.3s ease;
}

.learning-grid div:hover {
    transform: translateY(-5px);
    background: rgba(255, 51, 102, 0.15);
    border-color: rgba(255, 179, 198, 0.35);
}

.learning-grid h4 {
    margin: 0 0 8px;
    color: #ffb3c6;
    font-family: monospace;
}

.learning-grid p {
    margin: 0;
    font-size: 14px;
    color: white;
}

/* CONTACT BUTTONS */
.contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin-top: 30px;
}

.contact-btn {
    border: none;
    outline: none;
    cursor: pointer;

    text-align: center;
    text-decoration: none;

    padding: 14px 16px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 179, 198, 0.25);

    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.03);

    background: rgba(255, 51, 102, 0.18);
    border-color: rgba(255, 179, 198, 0.45);

    color: #ffb3c6;

    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
}

/* CONTACT TERMINAL */
.contact-terminal {
    padding: 0;
}

.contact-terminal .terminal-top {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 0 18px;

    background: rgba(255, 255, 255, 0.06);
}

.contact-terminal .terminal-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 179, 198, 0.55);
}

.contact-terminal pre {
    margin: 0;
    padding: 28px;

    font-family: Consolas, monospace;
    font-size: 14px;
    line-height: 1.8;

    color: #f5f5f5;
    white-space: pre-wrap;
}

/* COPY TOAST */
#copyToast {
    position: fixed;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%) translateY(30px);

    padding: 12px 20px;
    border-radius: 999px;

    background: rgba(20, 0, 7, 0.85);
    border: 1px solid rgba(255, 179, 198, 0.35);

    color: #ffb3c6;
    font-weight: 600;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    pointer-events: none;

    transition: 0.3s ease;
    z-index: 2000;
}

#copyToast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .education-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

/* BURGUNDY SURPRISE BADGE */
.burgundy-badge {
    position: fixed;
    top: 95px;
    right: 35px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 999px;

    background: rgba(128, 0, 32, 0.55);
    border: 1px solid rgba(255, 179, 198, 0.35);

    color: #ffd6e0;
    font-size: 13px;
    font-weight: 500;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 12px 35px rgba(255, 51, 102, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    z-index: 998;

    animation: badgeFloat 3s ease-in-out infinite;
    transition: 0.3s ease;
}

.burgundy-badge strong {
    color: white;
}

.burgundy-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(179, 0, 45, 0.75);
    box-shadow:
        0 18px 45px rgba(255, 51, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #ff3366;
    box-shadow: 0 0 15px #ff3366;

    animation: dotPulse 1.4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

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

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

    50% {
        transform: scale(1.5);
        opacity: 0.65;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .burgundy-badge {
        top: 85px;
        right: 15px;
        left: 15px;
        justify-content: center;
        font-size: 12px;
    }
}

/* WORD-BY-WORD ABOUT ME REVEAL */
.reveal-text {
    color: rgba(255, 255, 255, 0.25);
}

.reveal-text span {
    color: rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
}

.reveal-text.active span {
    animation: wordLightUp 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.045s);
}

@keyframes wordLightUp {
    0% {
        color: rgba(255, 255, 255, 0.22);
        text-shadow: none;
    }

    60% {
        color: #ffb3c6;
        text-shadow: 0 0 12px rgba(255, 51, 102, 0.45);
    }

    100% {
        color: #ffffff;
        text-shadow: none;
    }
}

/* DRAGGABLE PHOTO SLIDER */
.photo-slider {
    cursor: grab;
    user-select: none;
    overflow: hidden;
}

.photo-slider:active {
    cursor: grabbing;
}

.photo-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
}

.photo-track .profile-photo {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.photo-dot {
    cursor: pointer;
    transition: 0.3s ease;
}

.photo-dot.active {
    background: #ff3366;
    box-shadow: 0 0 14px rgba(255, 51, 102, 0.9);
    transform: scale(1.25);
}

.photo-panel:hover .photo-track .profile-photo {
    filter: saturate(1.1) contrast(1.08);
}