* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav>a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

body {
    background-color: rgb(0, 0, 33);
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;

    /* background-color: rgb(18, 18, 62); */
    background-color: transparent;
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background-color: rgb(18, 18, 62);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 23px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

nav ul li a:hover {
    color: rgb(153, 153, 226);
}

/* ================= MOBILE NAV FIX ================= */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
        padding: 6px 10px;
        height: auto;
    }

    nav ul {
        display: flex;
        gap: 8px;
        justify-content: left;
        flex-wrap: nowrap;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 0.76rem;
        font-weight: 500;
        padding: 3px 2px;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }
    nav a .left {
        font-size: 1.2rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .left {
        font-size: 0.3rem;
        font-weight: 600;
        white-space: nowrap;
    }
}

main hr {
    border: 0;
    background-color: #adadad;
    height: 5px;
    margin: 30px 84px;
}

@media (max-width: 768px) {
    main hr {
        margin: 18px 24px;
    }
}

/* Logo */
.left {
    font-size: 24px;
    font-weight: 600;
}

/* First Section */
.firstsection {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.firstsection>div {
    width: 40%;
}

.leftsection {
    font-size: 2rem;
    margin: 70px auto;
}

/* ================= RESUME MODAL ================= */
/* BACKDROP */
.resume-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.resume-modal.active {
    opacity: 1;
    pointer-events: all;
}

/* CONTENT CARD */
.resume-content {
    width: 85%;
    height: 85%;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    position: relative;

    transform: scale(0.9);
    opacity: 0;
    transition: all 0.35s ease;
}

.resume-modal.active .resume-content {
    transform: scale(1);
    opacity: 1;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 20px;
    border: none;
    background: rgba(0,0,0,0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(0,0,0,0.1);
}

/* PDF SIDE */
.resume-viewer {
    flex: 2;
    background: #1a1a1a;
}

/* Remove ugly toolbar look */
.resume-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* INFO PANEL */
.resume-info {
    flex: 1;
    padding: 40px 28px;
    background: #f8fafc;
    overflow-y: auto;

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

/* TEXT STYLING (PROFESSIONAL FIX) */
.resume-info h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.resume-info p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .resume-content {
        flex-direction: column;
        height: 95%;
        width: 95%;
    }

    .resume-viewer {
        height: 60%;
    }

    .resume-info {
        height: 40%;
        padding: 20px;
    }
}

/* Hero text */
.hero-text {
    max-width: 38ch;
    margin: 0 auto;
    text-align: auto;
}

.hero-text span {
    display: inline;
}

#line,
#element {
    display: inline;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 1.05rem;
        line-height: 1.35;
        padding: 0 12px;
    }
}

/* CTA layout */
.cta-group {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Primary button */
.btn.primary {
    align-self: flex-start;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;

    color: white;
    background: rgba(162, 99, 222, 0.25);
    border: 1px solid rgba(162, 99, 222, 0.6);
    border-radius: 10px;

    text-decoration: none;
    cursor: pointer;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn.primary:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(162, 99, 222, 0.45);
    box-shadow: 0 14px 34px rgba(162, 99, 222, 0.45);
}

.btn.primary:active {
    transform: translateY(-2px) scale(0.98);
}

/* Icon buttons */
.icon-actions {
    display: flex;
    gap: 16px;
}

.icon-btn {
    width: 46px;
    height: 46px;

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

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    position: relative;
    overflow: hidden;

    cursor: pointer;
    text-decoration: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-btn img {
    width: 22px;
    height: 22px;
    /* filter: brightness(0) invert(1); */
}

/* Hover lift */
.icon-btn:hover {
    transform: translateY(-4px);
}

.icon-btn.github:hover {
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.25);
}

.icon-btn.linkedin:hover {
    box-shadow: 0 10px 26px rgba(10, 102, 194, 0.6);
}

.icon-btn.email:hover {
    box-shadow: 0 10px 26px rgba(198, 102, 185, 0.6);
}

/* Tooltip */
.icon-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);

    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 6px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.icon-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Ripple */
.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(8);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .btn.primary {
        align-self: center;
    }

    .icon-actions {
        justify-content: center;
    }
}

.rightsection {
    margin: 100px 0;
}

/* Hero slider wrapper */
.hero-slider {
    position: relative;
    width: 420px;
    max-width: 100%;
}

/* Fixed translucent frame */
.hero-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;

    background: rgba(18, 18, 62, 0.55);
    backdrop-filter: blur(10px);

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .rightsection {
        margin: 6px 0 0;
        display: flex;
        justify-content: center;
    }

    .hero-slider {
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-slides {
        aspect-ratio: 1 / 1;
    }

    .hero-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.hero-image-frame {
    position: absolute;
    width: 82%;
    height: 82%;

    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;

    display: none;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.hero-image-frame.active {
    display: flex;
    opacity: 1;
}

/* Images inside hero slider */
.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .firstsection {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
        gap: 28px;
    }
}

/* Arrow buttons */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: white;

    width: 42px;
    height: 42px;
    font-size: 22px;
    border-radius: 50%;

    cursor: pointer;
    z-index: 2;
}

.hero-btn.left {
    left: -18px;
}

.hero-btn.right {
    right: -18px;
}

.hero-btn:hover {
    background: rgba(162, 99, 222, 0.85);
}


/* Accent */
.purple {
    color: rgb(162, 99, 222);
}

#element {
    font-size: 2rem;
    color: rgb(162, 99, 222);
    font-weight: 500;
}

.context-strip {
    max-width: 900px;
    margin: 1.5rem auto 0;
    padding: 0 20px;

    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-align: center;

    color: #d6d6e6;
}

@media (max-width: 768px) {
    .context-strip {
        padding: 28px 18px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .leftsection {
        font-size: 1.05rem;
        margin: 22px auto 6px;
        line-height: 1.25;
        width: 90%;
        max-width: 360px;
        text-align: center;
        padding: 0 12px;
    }

    .leftsection > div {
        margin-top: 2px;
    }

    .purple {
        font-size: 1.15rem;
    }

    #element {
        font-size: 0.95rem;
        margin-top: 4px;
    }

    .leftsection {
        width: 100%;
        text-align: center;
    }

    .leftsection span,
    .leftsection div {
        line-height: 1.35;
    }
}

/* ===== HERO TEXT FIX (MOBILE ONLY) ===== */
@media (max-width: 768px) {
    .hero-text {
        max-width: 92%;
        margin: 0 auto;
        padding: 0 8px;
        text-align: center;
        line-height: 1.4;
    }

    .hero-text span {
        display: inline;
        white-space: normal;
    }

    #element {
        font-size: 1rem;
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .hero-text {
        margin-bottom: 20px;
    }
}

/* ===== HERO TEXT REAL FIX (MOBILE) ===== */
@media (max-width: 768px) {
    .firstsection > div {
        width: 100% !important;
    }
}

/* Initial hidden state */
.hidden {
    opacity: 0;
    transform: translateY(10px);
}

/* Visible animation state */
.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Highlighted text */
.context-strip .highlight {
    color: #ffffff;
    font-weight: 600;
}

.context-strip strong {
    color: rgb(162, 99, 222);
    font-weight: 500;
}

/* Responsive tuning */
@media (max-width: 768px) {
    .context-strip {
        font-size: 0.95rem;
        padding: 22px 18px;
        margin: 30px 16px;
    }
}

.highlights {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.highlight-card {
    background-color: rgba(18, 18, 62, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    padding: 26px 24px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: rgb(162, 99, 222);
}

.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d6d6e6;
}

/* ================= 3D HIGHLIGHT CARDS ================= */

.highlights-grid {
    perspective: 1200px;
}

/* Enable real 3D */
.highlight-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out;
}

/* Layered depth inside card */
.highlight-card .highlight-icon {
    display: inline-block;
    transform: translateZ(36px);
}

/* Icon emphasis on hover */
.highlight-card:hover .highlight-icon {
    transform: translateZ(44px);
}

.highlight-card h3 {
    transform: translateZ(20px);
    letter-spacing: 0.2px;
}

.highlight-card p {
    transform: translateZ(12px);
}

.highlight-card {
    opacity: 0;
    transform:
        translateZ(-40px)
        rotateX(6deg)
        rotateY(-6deg);
}

.highlight-card.show {
    opacity: 1;
    transform:
        translateZ(0)
        rotateX(0)
        rotateY(0);
    transition:
        transform 0.6s ease,
        opacity 0.6s ease;
}

/* ================= BORDER GLOW (REAL) ================= */

.highlight-card {
    position: relative;
    background-clip: padding-box;
}

.highlight-card:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px; /* thickness of glow */
    background: linear-gradient(
        120deg,
        rgba(162, 99, 222, 0.85),
        rgba(162, 99, 222, 0.25),
        rgba(162, 99, 222, 0.85)
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
        mask-composite: none;

    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.highlight-card:hover::after {
    opacity: 1;
}

/* Disable 3D motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .highlight-card {
        transition: none;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .highlights {
        margin-top: 10px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .highlight-card {
        padding: 22px;
        text-align: left;
    }
}

/* ================= CTA MOBILE FIX ================= */
@media (max-width: 768px) {
    .cta-group {
        margin-top: 15px;
        gap: 12px;
    }

    .btn.primary {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .icon-actions {
        gap: 16px;
        margin-top: 4px;
    }

    .icon-btn {
        width: 44px;
        height: 44px;
        background: rgba(162, 99, 222, 0.35);
        border: 1px solid rgba(162, 99, 222, 0.6);
    }

    .icon-btn img {
        width: 22px;
        height: 22px;
        /* filter: brightness(0) invert(1); */
        opacity: 1;
    }
}

/* ================= FOOTER ================= */

.site-footer {
    background: rgba(18, 18, 62, 0.85);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
    position: relative;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;

    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Brand */
.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #b5b5d6;
}

/* Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #d6d6e6;
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: rgb(162, 99, 222);
    transform: translateX(4px);
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;

    /* filter: brightness(0) invert(0.85); */

    transition:
        filter 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:hover .footer-icon {
    filter:
        brightness(0)
        saturate(100%)
        invert(58%)
        sepia(31%)
        saturate(1047%)
        hue-rotate(234deg)
        brightness(99%) 
        contrast(93%);

    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 14px 20px;
    font-size: 0.8rem;
    color: #9a9ab8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Back to top */
.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;

    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: rgba(162, 99, 222, 0.25);
    border: 1px solid rgba(162, 99, 222, 0.5);
    color: white;

    cursor: pointer;
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }
}



/* ================= ABOUT ================= */
.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Section spacing */
.about-page section {
    margin-bottom: 100px;
}

/* Headings */
.about-page h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.about-page h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    color: rgb(162, 99, 222);
}

/* Intro */
.about-hero p,
.about-beyond p {
    max-width: 720px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #d6d6e6;
}

/* WHAT I DO */
.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.what-card {
    background: rgba(18, 18, 62, 0.65);
    padding: 24px;
    border-radius: 12px;
}

/* ================= ABOUT TIMELINE ================= */

/* ================= TIMELINE ================= */

.about-journey {
    max-width: 1200px;
    margin: 140px auto;
    position: relative;
}

.about-journey h2 {
    text-align: center;
    margin-bottom: 90px;
}

/* Timeline container */
.timeline {
    position: relative;
    padding-left: 140px;
}

/* BASE LINE */
.timeline-line {
    position: absolute;
    left: 48px;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
}

.timeline-line-fill {
    width: 100%;
    height: 0%;

    background: linear-gradient(
        to bottom,
        #c29cff,
        #a263de
    );

    box-shadow:
        0 0 12px rgba(162,99,222,0.8),
        0 0 24px rgba(162,99,222,0.4);

    transition: height 0.15s linear;
}

/* Timeline item */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    margin-bottom: 160px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease;
    z-index: 2;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Left column */
.timeline-time {
    position: relative;
    text-align: right;
    padding-right: 20px;
    z-index: 3;
}

.timeline-dot {
    position: absolute;
    right: -11px;
    top: 6px;

    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #777;
    box-shadow: 0 0 0 6px rgba(162,99,222,0.18);
    transition: all 0.3s ease;
}

.timeline-item.show .timeline-dot {
    background: #a263de;
    box-shadow:
        0 0 18px rgba(162,99,222,0.85),
        0 0 36px rgba(162,99,222,0.45);
}

.timeline-period {
    font-size: 1.15rem;      /* bigger */
    font-weight: 600;
    color: #dcdcff;
    line-height: 1.4;
    white-space: nowrap;
}


/* Content card */
.timeline-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 38px 42px;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}

.timeline-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 1.02rem;
    color: #d6d6e6;
    line-height: 1.7;
}

/* Images */
.timeline-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.timeline-images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
}

/* === Single image enhancement === */
.timeline-images:has(img:only-child) {
    grid-template-columns: 1fr;
}

.timeline-images:has(img:only-child) img {
    height: 260px;          /* bigger */
    border-radius: 18px;
}

/* Expand */
.timeline-expand {
    margin-top: 14px;
    background: none;
    border: none;
    color: #a263de;
    font-size: 0.85rem;
    cursor: pointer;
}

.timeline-extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
}

.timeline-card.expanded .timeline-extra {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .timeline {
        padding-left: 0;
    }

    .timeline-line {
        left: 8px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 40px;
    }

    .timeline-time {
        text-align: left;
        padding-right: 0;
    }

    .timeline-dot {
        left: -34px;
        right: auto;
    }
}

/* ================= EDUCATION ================= */

.about-education {
    max-width: 1100px;
    margin: 140px auto;
}

.about-education h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* GRID */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

/* CARD */
.edu-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border-radius: 22px;

    padding: 36px 38px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.edu-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 90px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* TEXT */
.edu-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.edu-degree {
    display: block;
    font-size: 0.95rem;
    color: #a263de;
    margin-bottom: 6px;
}

.edu-duration {
    display: block;
    font-size: 0.85rem;
    color: #b6b6d8;
    margin-bottom: 14px;
}

.edu-card p {
    font-size: 1.02rem;
    color: #d6d6e6;
    line-height: 1.7;
}

/* HEADER */
.edu-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 16px;
}

/* LOGO */
.edu-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;

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

    background: rgba(84, 115, 147, 0.3);
}

.edu-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;

    opacity: 0.9;
    filter: grayscale(0.15);
    transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Hover polish (optional but nice) */
.edu-card:hover .edu-logo img {
    opacity: 1;
    filter: grayscale(0);
}

/* TEXT GROUP */
.edu-meta h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

/* Optional hover polish */
.edu-card:hover .edu-logo img {
    filter: grayscale(0);
    opacity: 1;
}


/* EXPERIENCE */
/* .experience-card {
    background: rgba(18, 18, 62, 0.65);
    padding: 28px;
    border-radius: 12px;
    max-width: 700px;
} */

/* AWARDS */
.about-awards {
    max-width: 1200px;
    margin: 140px auto;
}

.about-awards h2 {
    text-align: center;
    margin-bottom: 30px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.award-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 28px 30px;

    box-shadow:
        0 24px 60px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.06);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}

.award-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.award-meta {
    display: block;
    font-size: 0.85rem;
    color: #a263de;
    margin-bottom: 12px;
}

.award-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #d6d6e6;
}

/* ================= BEYOND TECH AND ACADEMICS SECTION ================= */
.about-beyond {
    max-width: 1100px;
    margin: 140px auto 160px;
}

.about-beyond h2 {
    text-align: center;
    margin-bottom: 30px;
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.beyond-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 36px 32px;

    box-shadow:
        0 26px 70px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.06);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.beyond-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(0,0,0,0.6);
}

.beyond-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: #b58cff;
}

.beyond-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d6d6e6;
}

/* ================= PROJECTS PAGE ================= */
.projects-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.projects-hero {
    position: relative;
    text-align: center;
    perspective: 1200px;
    margin-bottom: 70px;
}

.projects-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.projects-subtitle {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cfcfe6;
}

/* subtle divider via spacing */
.projects-scope {
    margin-top: 22px;
    font-size: 0.9rem;
    color: rgba(162, 99, 222, 0.9);
    letter-spacing: 0.4px;
}

/* guidance hint */
.projects-hint {
    margin-top: 14px;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.6;
}

.projects-hero p {
    color: #cfcfe6;
    max-width: 600px;
    margin: 12px auto 0;

    will-change: transform;
    transition: transform 0.2s ease-out;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.project-card {
    position: relative;
    background: rgba(18, 18, 62, 0.65);
    border-radius: 14px;
    padding: 28px;
    cursor: pointer;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;

    /*for 3d hover and tilt*/
    transform-style: preserve-3d;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    will-change: transform;

    backface-visibility: hidden;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(162, 99, 222, 0.35);
}

/*for 3d hover and tilt*/
.project-card>* {
    transform: translateZ(20px);
}

.project-card h3 {
    color: rgb(162, 99, 222);
    margin-bottom: 8px;
}

/* Project Thumbnail */
.project-image {
    margin: 14px 0 12px;
    border-radius: 10px;
    overflow: hidden;

    background: #0f0f1a;
}

.project-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;

    opacity: 0.92;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Subtle zoom on hover */
.project-card:hover .project-image img {
    transform: scale(1.04);
    opacity: 1;
}

/* ================= NO RESULTS ON SEARCH ================= */
.no-results {
    text-align: center;
    margin: 4rem auto 2rem;
    color: rgba(255, 255, 255, 0.75);
    animation: fadeIn 0.25s ease;
}

.no-results p {
    font-size: 1.1rem;
    font-weight: 500;
}

.no-results span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    opacity: 0.75;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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


/* ================= PROJECT TAGS ================= */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 999px;

    letter-spacing: 0.2px;
    white-space: nowrap;

    border: 1px solid;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.project-card:hover .tag {
    transform: translateY(-1px);
}

.modal-content .tag {
    font-size: 0.78rem;
    padding: 6px 12px;
}

/* 
.tag.robotics,
.tag.kinematics,
.tag.mechatronics {
    background: rgba(162, 99, 222, 0.18);
    border-color: rgba(162, 99, 222, 0.45);
    color: #d9b8ff;
}

.tag.control,
.tag.navigation,
.tag.localization,
.tag.algorithms {
    background: rgba(99, 170, 222, 0.18);
    border-color: rgba(99, 170, 222, 0.45);
    color: #b8ddff;
}

.tag.autonomy,
.tag.perception,
.tag.pathplanning,
.tag.planning {
    background: rgba(99, 222, 190, 0.18);
    border-color: rgba(99, 222, 190, 0.45);
    color: #b8fff1;
}

.tag.embedded,
.tag.firmware,
.tag.realtime {
    background: rgba(255, 186, 90, 0.18);
    border-color: rgba(255, 186, 90, 0.45);
    color: #ffe0b2;
}

.tag.iot,
.tag.sensors,
.tag.data {
    background: rgba(120, 200, 255, 0.18);
    border-color: rgba(120, 200, 255, 0.45);
    color: #d0ecff;
}

.tag.hardware,
.tag.dynamics,
.tag.mechanical {
    background: rgba(200, 200, 200, 0.12);
    border-color: rgba(200, 200, 200, 0.35);
    color: #eeeeee;
}

.tag.logic {
    background: rgba(64, 156, 255, 0.12);
    color: #7fbaff;
    border: 1px solid rgba(64, 156, 255, 0.35);
}

.tag.statemachine {
    background: rgba(255, 170, 60, 0.14);
    color: #ffd29a;
    border: 1px solid rgba(255, 170, 60, 0.4);
}

.tag.physics,
.tag.game {
    background: rgba(90, 220, 140, 0.14);
    color: #9cf0c3;
    border: 1px solid rgba(90, 220, 140, 0.45);
} */

/* .tag.interrupts,
.tag.callbacks,
.tag.statereactions,
.tag.eventhandling {
    background: rgba(186, 104, 255, 0.14);
    color: #ddb7ff;
    border: 1px solid rgba(186, 104, 255, 0.45);
} */
/* 
.tag.cad {
    background: rgba(120, 150, 180, 0.14);
    color: #cfe0f2;
    border: 1px solid rgba(120, 150, 180, 0.45);
}

.tag.practice {
    background: rgba(200, 170, 90, 0.14);
    color: #f0e1b0;
    border: 1px solid rgba(200, 170, 90, 0.45);
}

.tag.software {
    background: rgba(150, 120, 255, 0.18);
    border-color: rgba(150, 120, 255, 0.45);
    color: #ddd0ff;
}

.tag.hmi {
    background: rgba(255, 120, 180, 0.18);
    border-color: rgba(255, 120, 180, 0.45);
    color: #ffd0e8;
} */


#modalGithub.disabled {

    opacity: 0.6;

    cursor: not-allowed;

    pointer-events: none;
}

/* ================= PROJECT FILTER BAR ================= */
.projects-filter {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Search input */
#projectSearch {
    width: 100%;
    padding: 14px 18px;

    font-size: 0.95rem;
    font-family: inherit;
    color: white;

    background: rgba(18, 18, 62, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#projectSearch::placeholder {
    color: #9a9ab8;
}

#projectSearch:focus {
    border-color: rgba(162, 99, 222, 0.6);
    box-shadow: 0 0 0 3px rgba(162, 99, 222, 0.15);
}

/* Tag row */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Individual filter tag */
.filter-tag {
    padding: 8px 16px;

    font-size: 0.8rem;
    font-weight: 500;

    color: #d6d6e6;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;

    cursor: pointer;
    user-select: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

/* ================= Clear Filters ================= */
.filter-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Make search input flexible */
#projectSearch {
    flex: 1;
}

.clear-filters {
    margin-left: auto;
    padding: 6px 14px;
    font-size: 0.85rem;
    opacity: 0.8;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: #d6d6e6;

    cursor: pointer;
    transition: all 0.25s ease;
}

.clear-filters:hover {
    background: rgba(162, 99, 222, 0.25);
    border-color: rgb(162, 99, 222);
}

/* Hover */
.filter-tag:hover {
    background: rgba(162, 99, 222, 0.2);
    border-color: rgba(162, 99, 222, 0.5);
    transform: translateY(-2px);
}

/* Active tag */
.filter-tag.active {
    background: rgba(162, 99, 222, 0.35);
    border-color: rgba(162, 99, 222, 0.8);
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .filter-tags {
        justify-content: center;
    }

    #projectSearch {
        font-size: 0.9rem;
    }
}

/* ================= MODAL ================= */
#modalTitle {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#modalDescription {
    font-size: 1rem;
    line-height: 1.6;
    color: #d6d6e6;
    margin-bottom: 24px;
}

.project-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.project-modal.show {
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

/* Modal box */
.modal-content {
    background: rgb(18, 18, 62);
    width: 92%;
    max-width: 900px;

    max-height: 90vh;
    /* 🔥 key */
    overflow-y: auto;
    /* 🔥 enables scrolling */

    padding: 36px;
    border-radius: 18px;
    position: relative;

    scrollbar-width: thin;
    /* Firefox */

    transform-style: preserve-3d;
    transform: perspective(1200px) translateY(20px) scale(0.96) rotateX(6deg);
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* Pop-in animation */
.project-modal.show .modal-content {
    transform: perspective(1200px) translateY(0) scale(1) rotateX(0);
    opacity: 1;
}

/* Webkit scrollbar (Chrome / Edge) */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(162, 99, 222, 0.6);
    border-radius: 4px;
}

/* Close button */
.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.modal-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 28px 0;
}

.modal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

#modalTeamMembers {
    display: flex;
    flex-wrap: nowrap;
    /* 🔥 change */
    gap: 10px;

    overflow-x: auto;
    /* 🔥 add */
    padding-bottom: 4px;
}

/* Team list */
.team-inline {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    margin-top: 8px;
    padding-bottom: 4px;
}

/* hide ugly scrollbar (optional) */
.team-inline::-webkit-scrollbar {
    height: 4px;
}

.team-inline::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.team-pill {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e5f0;
    white-space: nowrap;
    color: #e5e5f0;
}

/* ================= TECH STACK ================= */
.modal-tech {
    margin-top: 24px;
    margin-bottom: 26px;
}

.modal-tech h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;

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

    font-size: 0.85rem;
    color: #e6e6f0;
}

.tech-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ================= IMAGE GALLERY ================= */
.modal-gallery {
    position: relative;
    margin: 24px auto 20px;
    max-width: 720px;
    width: 100%;

    overflow: visible;
}

/* Viewport */
.gallery-track-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 420px;

    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    overflow: hidden;
}

/* Sliding track */
.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
}

/* Images */
.gallery-track img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

/* ================= NO IMAGE NOTE ================= */
.no-image-block {
    margin: 20px 0 6px;
    padding: 14px 16px;

    border-left: 3px solid rgba(162, 99, 222, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;

    font-size: 0.95rem;
    color: #d6d6e6;
}

.no-image-block p {
    font-size: 1rem;
    margin-bottom: 6px;
}

.no-image-block span {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* ================= NAV ARROWS ================= */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;

    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 20px;

    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn.left {
    left: 12px;
}

.gallery-btn.right {
    right: 12px;
}

.gallery-btn:hover {
    background: rgba(162, 99, 222, 0.85);
}

/*GALLERY COUNTER*/
.gallery-counter {
    position: absolute;
    bottom: 10px;
    right: 14px;

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

    font-size: 0.85rem;
    font-weight: 500;

    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);

    pointer-events: none;
    /* important */
}


/* ================= META ================= */
.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;

    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .gallery-track-wrapper {
        max-height: 240px;
    }
}


/* ================= MY TECH STACK SECTION ================= */
.techstack-section {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.techstack-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.techstack-desc {
    color: #b6b6d8;
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0 auto 36px;
}

/* ICON GRID */
.techstack-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

/* ICON STYLE */
.techstack-icons img {
    width: 56px;
    height: 56px;

    opacity: 0;
    transform: scale(0.95) translateY(12px);

    filter: drop-shadow(0 0 0 rgba(162, 99, 222, 0.0));
    cursor: default;

    will-change: transform;
    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        opacity 0.25s ease,
}

.techstack-icons img:hover {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 0 18px rgba(162, 99, 222, 0.55));
    opacity: 1;
}

/* ACTIVE ANIMATION */
.techstack-icons img.show {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 12px rgba(162, 99, 222, 0.35));
}

/* HOVER MICRO-INTERACTION */
@media (hover: hover) {
    .techstack-icons img:hover {
        transform: translateY(-4px) scale(1.08);
        filter: drop-shadow(0 0 18px rgba(162, 99, 222, 0.55));
        opacity: 1;
    }
}

/* ================= CONTACT PAGE ================= */
/* HERO */
.contact-hero {
    text-align: center;
    margin-bottom: 100px;
}

.contact-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.contact-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #cfcfe6;
    line-height: 1.7;
}

.contact-section {
    max-width: 1100px;
    margin: 140px auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-left h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.contact-left p {
    color: #cfcfe8;
    max-width: 460px;
    line-height: 1.7;
}
.contact-socials {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.contact-socials a {
    width: 56px;
    height: 56px;

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

    border-radius: 50%;

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

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.contact-socials a:hover {
    transform: translateY(-3px);

    background: rgba(162,99,222,0.18);

    border-color: rgb(162,99,222);
}

.contact-socials img {
    width: 26px;
    height: 26px;
}
/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9a9ac0;
}

.contact-form button {
    margin-top: 10px;
    align-self: flex-start;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #a263de, #7c5cff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(162,99,222,0.4);
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* ================= STATUS PAGES  (WIP, 404, maintaineance, coming-soon)================= */
.status-page {

    min-height: calc(100vh - 160px);

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

    padding: 40px 20px;
}

.status-card {

    width: 100%;
    max-width: 700px;

    text-align: center;

    padding: 60px 40px;

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(14px);

    border-radius: 22px;

    box-shadow:
        0 24px 60px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}

.status-card h1 {

    font-size: 3rem;

    margin-bottom: 18px;

    color: rgb(162,99,222);
}

.status-subtitle {

    font-size: 1rem;

    line-height: 1.8;

    color: #d6d6e6;

    margin-bottom: 32px;
}

.status-btn {

    display: inline-block;

    padding: 12px 28px;

    border-radius: 999px;

    text-decoration: none;

    color: white;

    background: rgba(162,99,222,0.25);

    border: 1px solid rgba(162,99,222,0.5);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.status-btn:hover {

    transform: translateY(-3px);

    background: rgba(162,99,222,0.45);
}

@media (max-width: 768px) {

    .status-card {

        padding: 40px 24px;
    }

    .status-card h1 {

        font-size: 2rem;
    }

    .status-subtitle {

        font-size: 0.95rem;
    }
}


#formStatus {
    margin-top: 12px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}