/* =========================================================
   PRATYUSH PORTFOLIO
   MASTER STYLES — CLEANED + IMPROVED
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: #ffffff;

    background: #050509;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}


/* =========================================================
   2. DESIGN SYSTEM
========================================================= */

:root {
    --bg: #050509;
    --bg-soft: #090a11;

    --surface: #0e1018;
    --surface-light: #131621;

    --text: #ffffff;
    --text-soft: #aaaab5;
    --text-muted: #747582;

    --purple: #8b3dff;
    --purple-light: #b96cff;
    --violet: #6f38ff;

    --border: rgba(255, 255, 255, 0.08);
    --border-purple: rgba(151, 80, 255, 0.4);

    --container: 1400px;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 30px;

    --header-height: 84px;
}


/* =========================================================
   3. GLOBAL
========================================================= */

body {
    background:
        radial-gradient(circle at 74% 15%,
            rgba(104, 48, 255, 0.16),
            transparent 28%),
        radial-gradient(circle at 20% 50%,
            rgba(123, 52, 255, 0.05),
            transparent 35%),
        #050509;
}

.container {
    width: min(calc(100% - 64px),
            var(--container));

    margin-inline: auto;
}


/* =========================================================
   4. LOADER
   TEMPORARILY HIDDEN
========================================================= */

#page-loader {
    display: none;
}


/* =========================================================
   5. BACKGROUND EFFECTS
========================================================= */

.website-background {
    position: fixed;
    inset: 0;

    z-index: -10;

    overflow: hidden;

    pointer-events: none;
}

.background-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.25;
}

.glow-1 {
    width: 600px;
    height: 600px;

    top: -220px;
    right: -160px;

    background:
        rgba(120, 55, 255, 0.32);
}

.glow-2 {
    width: 500px;
    height: 500px;

    left: -260px;
    top: 45%;

    background:
        rgba(128, 70, 255, 0.12);
}


/* =========================================================
   6. HEADER
========================================================= */
/* =========================================================
   PREMIUM iOS GLASS NAVBAR
========================================================= */

#header {
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 1000;

    width: min(calc(100% - 28px), 1600px);

    transform: translateX(-50%);

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

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025));

    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);

    overflow: hidden;
}

/* Soft glass reflection */
#header::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(110deg,
            rgba(255, 255, 255, 0.07),
            transparent 25%,
            transparent 70%,
            rgba(143, 76, 255, 0.05));
}

/* Keep navbar content above glass reflection */
#header .container {
    position: relative;
    z-index: 2;
}


#header::after {
    content: "";

    position: absolute;

    top: -70px;
    left: 12%;

    width: 300px;
    height: 120px;

    border-radius: 50%;

    background: rgba(155, 90, 255, 0.10);

    filter: blur(55px);

    pointer-events: none;
}

/* =========================================================
   7. NAVBAR
========================================================= */
.navbar {
    height: 68px;

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

    gap: 30px;
}


/* =========================================================
   8. LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight: 700;
}

.logo-symbol {
    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    border:
        1px solid rgba(151, 80, 255, 0.4);

    border-radius: 12px;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.22),
            rgba(139, 61, 255, 0.03));

    font-size: 1rem;
}

.logo-name {
    font-size: 1rem;
}


/* =========================================================
   9. DESKTOP NAVIGATION
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-link {
    position: relative;

    padding: 8px 0;

    color: #9c9ca8;

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

    transition:
        color 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    transform: scaleX(0);

    transform-origin: right;

    background:
        linear-gradient(90deg,
            var(--purple),
            var(--purple-light));

    transition:
        transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);

    transform-origin: left;
}


/* =========================================================
   10. NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 46px;

    padding:
        0 19px;

    border:
        1px solid rgba(179, 103, 255, 0.45);

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            #7f39fa,
            #9f50ff);

    font-size: 0.86rem;
    font-weight: 600;

    box-shadow:
        0 16px 40px rgba(118, 49, 255, 0.2);

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

.nav-cta:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 22px 50px rgba(122, 52, 255, 0.35);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   11. MOBILE MENU BUTTON
========================================================= */

.menu-button {
    position: relative;

    display: none;

    width: 44px;
    height: 44px;

    border:
        1px solid var(--border);

    border-radius: 12px;

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

.menu-button span {
    position: absolute;

    left: 50%;

    width: 18px;
    height: 1.5px;

    background: #ffffff;

    transform:
        translateX(-50%);
}

.menu-button span:first-child {
    top: 17px;
}

.menu-button span:last-child {
    top: 25px;
}


/* =========================================================
   12. MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}


/* =========================================================
   13. HERO SECTION
========================================================= */

.hero-section {
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top:
        calc(var(--header-height) + 50px);

    padding-bottom: 60px;
}


/* =========================================================
   14. HERO GRID
========================================================= */

.hero-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(480px, 0.95fr);

    align-items: center;

    gap:
        clamp(50px,
            7vw,
            110px);

    min-height:
        calc(100vh - var(--header-height) - 40px);
}


/* =========================================================
   15. HERO LEFT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;
}


/* =========================================================
   16. AVAILABLE TAG
========================================================= */

.availability-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    padding:
        7px 12px;

    border:
        1px solid rgba(67, 214, 135, 0.2);

    border-radius: 999px;

    color: #65db9b;

    background:
        rgba(35, 142, 89, 0.06);

    font-size: 0.72rem;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.availability-dot {
    position: relative;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #57df9c;

    box-shadow:
        0 0 12px rgba(87, 223, 156, 0.8);
}

.availability-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(87, 223, 156, 0.5);
    border-radius: 50%;
    animation: availabilityPulse 1.5s ease-out infinite;
}

.availability-dot {
    animation: availabilityBlink 1.5s ease-in-out infinite;
}

@keyframes availabilityBlink {

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

    50% {
        opacity: 0.62;
        transform: scale(0.88);
    }
}

@keyframes availabilityPulse {
    from {
        opacity: 0.8;
        transform: scale(0.35);
    }

    to {
        opacity: 0;
        transform: scale(1.8);
    }
}


/* =========================================================
   17. HERO EYEBROW
========================================================= */

.hero-eyebrow {
    margin-bottom: 14px;

    color: var(--purple-light);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}


/* =========================================================
   18. HERO TITLE
========================================================= */

.hero-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(4.5rem,
            8vw,
            8.2rem);

    font-weight: 700;

    line-height: 0.9;

    letter-spacing: -0.07em;
}

.hero-title span {
    color: transparent;

    background:
        linear-gradient(110deg,
            #ffffff,
            #c499ff 30%,
            #9b51ff 60%,
            #763cff);

    -webkit-background-clip: text;
    background-clip: text;
}


/* =========================================================
   19. PROFESSION
========================================================= */
.hero-profession {
    margin-top: 26px;

    min-height: 55px;

    display: flex;
    align-items: center;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(1.45rem,
            2.6vw,
            2.5rem);

    font-weight: 600;

    line-height: 1.25;

    letter-spacing: -0.035em;
}


/* TYPING TEXT */

#typing-text {
    margin: 0;

    color: transparent;

    background: linear-gradient(90deg,
            #ffffff 0%,
            #e4c8ff 45%,
            #a855f7 100%);

    -webkit-background-clip: text;
    background-clip: text;
}


/* BLINKING CURSOR */

.typing-cursor {
    margin-left: 5px !important;

    color: #b96cff !important;

    font-weight: 400;

    animation: typingBlink 0.75s infinite;
}


@keyframes typingBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

/* =========================================================
   20. HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 640px;

    margin-top: 26px;

    color: var(--text-soft);

    font-size: 1.02rem;

    line-height: 1.8;
}


/* =========================================================
   21. HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

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

    gap: 9px;

    min-height: 54px;

    padding:
        0 23px;

    border-radius: 14px;

    font-size: 0.9rem;
    font-weight: 600;

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

.primary-button {
    border:
        1px solid rgba(170, 95, 255, 0.5);

    background:
        linear-gradient(135deg,
            #7d38f8,
            #9d4fff);

    box-shadow:
        0 14px 42px rgba(118, 52, 255, 0.23);
}

.primary-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 22px 55px rgba(120, 50, 255, 0.35);
}

.secondary-button {
    border:
        1px solid rgba(255, 255, 255, 0.1);

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

.secondary-button:hover {
    transform:
        translateY(-3px);

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

.primary-button svg,
.secondary-button svg {
    width: 17px;
    height: 17px;
}


/* =========================================================
   22. HERO SOCIALS
========================================================= */
.hero-socials {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}

.hero-socials a {
    width: 46px;
    height: 46px;

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

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    color: #b9b9c7;

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

    text-decoration: none;

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

.hero-socials a i {
    font-size: 19px;
}

.hero-socials a:hover {
    color: #ffffff;

    transform: translateY(-5px) scale(1.05);

    border-color: #a855f7;

    background: rgba(168, 85, 247, 0.12);

    box-shadow:
        0 0 10px rgba(168, 85, 247, 0.25),
        0 0 30px rgba(168, 85, 247, 0.15);
}

/* =========================================================
   23. HERO RIGHT
========================================================= */

.hero-visual {
    position: relative;

    min-height: 640px;

    display: grid;
    place-items: center;

    isolation: isolate;
}


/* =========================================================
   24. HERO PURPLE GLOW
========================================================= */

.hero-purple-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: -5;

    width: 500px;
    height: 500px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(129, 60, 255, 0.33) 0%,
            rgba(93, 42, 200, 0.15) 40%,
            transparent 70%);

    filter: blur(20px);
}


/* =========================================================
   25. HERO CIRCLES
========================================================= */

.hero-circle {
    position: absolute;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}

.hero-circle-inner {
    z-index: -3;

    width: 420px;
    height: 420px;

    border:
        1px solid rgba(164, 96, 255, 0.45);

    box-shadow:
        inset 0 0 80px rgba(112, 48, 255, 0.08),
        0 0 60px rgba(112, 48, 255, 0.12);
}

.hero-circle-outer {
    z-index: -4;

    width: 510px;
    height: 510px;

    border:
        1px solid rgba(255, 255, 255, 0.035);
}


/* =========================================================
   26. HERO PORTRAIT
========================================================= */

.hero-portrait-wrapper {
    position: relative;

    z-index: 5;

    width:
        clamp(340px,
            31vw,
            455px);

    aspect-ratio: 0.82;

    overflow: hidden;

    border-radius:
        50% 50% 24% 24% / 34% 34% 17% 17%;

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

    background:
        linear-gradient(180deg,
            rgba(128, 64, 255, 0.13),
            rgba(12, 10, 20, 0.75));

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.5),
        0 0 70px rgba(109, 48, 255, 0.18);
}

.hero-portrait {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   27. HERO STATS
========================================================= */

.hero-stat {
    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 160px;

    padding:
        15px 17px;

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

    border-radius: 16px;

    background:
        linear-gradient(145deg,
            rgba(18, 19, 30, 0.82),
            rgba(9, 10, 17, 0.78));

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.32);
}

.stat-icon {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 11px;

    color: var(--purple-light);

    background:
        rgba(139, 61, 255, 0.09);
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.hero-stat strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.55rem;

    line-height: 1;
}

.hero-stat p {
    margin-top: 5px;

    color: #8d8e99;

    font-size: 0.66rem;
}


/* =========================================================
   28. STAT POSITIONS
========================================================= */

.stat-projects {
    top: 26%;
    left: -4%;
}

.stat-experience {
    top: 14%;
    right: -1%;
}

.stat-clients {
    right: -1%;
    bottom: 18%;
}


/* =========================================================
   29. HERO FLOOR
========================================================= */

.hero-floor {
    position: absolute;

    z-index: -6;

    right: -18%;
    bottom: 2%;

    width: 135%;
    height: 240px;

    perspective: 800px;

    pointer-events: none;
}

.hero-floor-grid {
    position: absolute;
    inset: 0;

    transform:
        rotateX(68deg);

    transform-origin:
        center bottom;

    opacity: 0.3;

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

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(to top,
            black,
            transparent 84%);
}

.hero-floor-glow {
    position: absolute;

    left: 50%;
    bottom: 15px;

    width: 420px;
    height: 80px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(123, 50, 255, 0.22);

    filter: blur(48px);
}


/* =========================================================
   31. FOOTER TEMP STYLE
========================================================= */

footer {
    padding:
        70px 32px;

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

    text-align: center;
}

footer h2 {
    font-family:
        "Space Grotesk",
        sans-serif;

    margin-bottom: 10px;
}

footer p {
    color: #777985;
}


/* =========================================================
   32. BACK TO TOP
========================================================= */

#back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 800;

    width: 48px;
    height: 48px;

    border:
        1px solid rgba(160, 90, 255, 0.35);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(14, 12, 22, 0.8);

    backdrop-filter: blur(12px);
}


/* =========================================================
   33. CURSOR TEMPORARILY HIDDEN
========================================================= */

.cursor-dot,
.cursor-circle {
    display: none;
}


/* =========================================================
   34. BASIC RESPONSIVE FIX
========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero-container {
        grid-template-columns:
            1fr 0.9fr;

        gap: 30px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-circle-inner {
        width: 350px;
        height: 350px;
    }

    .hero-circle-outer {
        width: 420px;
        height: 420px;
    }
}


@media (max-width: 850px) {

    .hero-section {
        padding-top:
            calc(var(--header-height) + 65px);
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        width: min(100%, 620px);

        margin-inline: auto;

        min-height: 620px;
    }
}


@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 30px);
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size:
            clamp(4rem,
                19vw,
                5.5rem);
    }

    .hero-profession {
        font-size:
            clamp(1.25rem,
                6vw,
                1.7rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-buttons {
        display: grid;

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

    .primary-button,
    .secondary-button {
        width: 100%;

        padding:
            0 12px;

        font-size: 0.82rem;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-portrait-wrapper {
        width:
            min(78vw,
                330px);
    }

    .hero-circle-inner {
        width:
            min(82vw,
                350px);

        height:
            min(82vw,
                350px);
    }

    .hero-circle-outer {
        width:
            min(96vw,
                410px);

        height:
            min(96vw,
                410px);
    }

    .hero-stat {
        min-width: 120px;

        padding:
            12px 13px;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .hero-stat p {
        font-size: 0.58rem;
    }

    .stat-projects {
        left: 0;
        top: 18%;
    }

    .stat-experience {
        right: 0;
        top: 11%;
    }

    .stat-clients {
        right: 0;
        bottom: 12%;
    }

    .hero-floor {
        display: none;
    }
}


@media (max-width: 390px) {

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

    .hero-visual {
        min-height: 520px;
    }

    .hero-stat {
        min-width: 108px;

        gap: 7px;
    }

    .stat-icon {
        width: 31px;
        height: 31px;
    }

    .stat-icon svg {
        width: 15px;
        height: 15px;
    }
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    position: relative;

    padding:
        120px 0;

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

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.008),
            rgba(139, 61, 255, 0.015));
}


.about-container {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap:
        clamp(60px,
            8vw,
            120px);
}


/* LEFT IMAGE */

.about-visual {
    position: relative;
}


.about-image-card {
    position: relative;

    width: 100%;

    max-width: 520px;

    margin-inline: auto;

    border:
        1px solid rgba(163, 91, 255, 0.34);

    border-radius: 24px;

    overflow: hidden;

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

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 45px rgba(117, 49, 255, 0.08);
}


.about-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    aspect-ratio: 1 / 1.05;
}


/* EXPERIENCE CARD */

.about-experience-card {
    position: absolute;

    left: -24px;
    bottom: 26px;

    width: 130px;

    padding: 18px;

    border:
        1px solid rgba(166, 91, 255, 0.38);

    border-radius: 16px;

    background:
        rgba(12, 10, 20, 0.86);

    backdrop-filter: blur(16px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35);
}


.about-experience-card strong {
    display: block;

    color: var(--purple-light);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 2rem;
}


.about-experience-card span {
    display: block;

    margin-top: 5px;

    color: var(--text-soft);

    font-size: 0.7rem;

    line-height: 1.4;
}


/* RIGHT CONTENT */

.about-label {
    margin-bottom: 15px;

    color: var(--purple-light);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.16em;
}

.about-title {
    max-width: 650px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2rem, 3.2vw, 3.4rem);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -0.035em;

    color: #ffffff;

    margin: 0;
}

.about-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c488ff,
            #8b3dff);

    -webkit-background-clip: text;
    background-clip: text;
}


.about-description {
    max-width: 640px;

    margin-top: 24px;

    color: var(--text-soft);

    font-size: 1rem;

    line-height: 1.8;
}


/* BULLET POINTS */

.about-points {
    margin-top: 26px;

    display: grid;

    gap: 12px;
}


.about-point {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 0.92rem;

    font-weight: 500;
}


.about-point span {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--purple-light);

    box-shadow:
        0 0 12px rgba(185, 108, 255, 0.8);
}


/* BUTTON */

.about-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    min-height: 52px;

    padding:
        0 22px;

    border:
        1px solid rgba(168, 92, 255, 0.4);

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #7e38f8,
            #a049ff);

    font-size: 0.88rem;

    font-weight: 600;

    box-shadow:
        0 15px 40px rgba(120, 50, 255, 0.18);

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


.about-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 22px 55px rgba(128, 54, 255, 0.3);
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services {
    position: relative;
    padding: 120px 0;

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

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.006),
            rgba(139, 61, 255, 0.015));
}

.services-container {
    width: min(calc(100% - 64px), 1400px);
    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.services-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #b96cff;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.services-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem,
            3.2vw,
            3.6rem);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.services-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c184ff,
            #8b3dff);

    -webkit-background-clip: text;
    background-clip: text;
}

.services-description {
    max-width: 600px;

    margin-top: 18px;

    color: #9d9eaa;

    font-size: 0.95rem;

    line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-height: 320px;

    padding: 28px;

    overflow: hidden;

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

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(19, 20, 31, 0.84),
            rgba(9, 10, 17, 0.78));

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

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);

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


/* subtle light inside card */

.service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(157, 76, 255, 0.14),
            transparent 48%);

    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(168, 85, 247, 0.48);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(139, 61, 255, 0.12);
}

@media (hover: none),
(pointer: coarse) {

    .service-card {
        transform: none !important;
    }
}



.service-tags {
    position: absolute;
    left: 28px;
    bottom: 24px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    padding: 7px 11px;

    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 999px;

    color: #b8a6cb;

    background: rgba(139, 61, 255, 0.055);

    font-size: 0.64rem;
    font-weight: 600;

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

.service-card:hover .service-tags span {
    color: #ffffff;

    transform: translateY(-2px);

    border-color: rgba(168, 85, 247, 0.42);

    background: rgba(139, 61, 255, 0.13);
}

/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: rgba(255, 255, 255, 0.14);

    font-family: "Space Grotesk", sans-serif;

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.12em;
}


/* =========================================================
   ICON
========================================================= */

.service-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border:
        1px solid rgba(172, 94, 255, 0.22);

    border-radius: 14px;

    color: #b96cff;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.14),
            rgba(139, 61, 255, 0.04));

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.15rem;
    font-weight: 700;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

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

.service-card:hover .service-icon {
    transform:
        translateY(-4px) scale(1.05) rotate(-3deg);

    background:
        rgba(139, 61, 255, 0.18);

    box-shadow:
        0 0 28px rgba(139, 61, 255, 0.22);
}


/* =========================================================
   CARD TEXT
========================================================= */

.service-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.15rem;
    font-weight: 600;

    letter-spacing: -0.02em;
}

.service-card p {
    position: relative;
    z-index: 2;

    color: #999aa5;

    font-size: 0.84rem;

    line-height: 1.7;
}


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

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .services {
        padding: 90px 0;
    }

    .services-container {
        width:
            calc(100% - 30px);
    }

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

    .service-card {
        min-height: 290px;
    }
}

.service-card {
    transition:
        transform 0.25s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    transform-style: preserve-3d;
    will-change: transform;
}

/* =========================================================
   SKILLS / TECHNOLOGIES SECTION
========================================================= */

.skills-section {
    position: relative;
    padding: 130px 0 110px;

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

    background:
        radial-gradient(circle at 50% 45%,
            rgba(112, 45, 255, 0.07),
            transparent 34%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.004),
            rgba(139, 61, 255, 0.01));
}

.skills-container {
    width: min(calc(100% - 64px), 1500px);
    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(240px, 0.75fr) minmax(620px, 1.65fr) minmax(260px, 0.8fr);

    align-items: center;

    gap: 36px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.skills-left {
    position: relative;
    z-index: 4;
}

.skills-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #b96cff;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.skills-heading {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem, 3.3vw, 3.8rem);

    font-weight: 650;

    line-height: 1.04;

    letter-spacing: -0.045em;

    color: #ffffff;
}

.skills-heading span {
    display: block;

    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #c78dff 30%,
            #8b3dff 100%);

    -webkit-background-clip: text;
    background-clip: text;
}

.skills-heading-line {
    width: 48px;
    height: 2px;

    margin-top: 25px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #8b3dff,
            #c670ff);

    box-shadow:
        0 0 15px rgba(151, 74, 255, 0.45);
}

.skills-description {
    max-width: 290px;

    margin-top: 23px;

    color: #9c9dab;

    font-size: 0.93rem;

    line-height: 1.85;
}


/* =========================================================
   LEFT STATS
========================================================= */

.skills-stats {
    display: grid;
    gap: 18px;

    margin-top: 42px;
}

.skills-stat {
    display: flex;

    align-items: center;

    gap: 16px;
}

.skills-stat-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(158, 79, 255, 0.22);

    border-radius: 15px;

    color: #a957ff;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.12),
            rgba(255, 255, 255, 0.018));

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.skills-stat strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.45rem;

    line-height: 1;
}

.skills-stat span {
    display: block;

    margin-top: 5px;

    color: #9899a6;

    font-size: 0.76rem;
}

/* =========================================================
   SKILLS / TECHNOLOGIES SECTION
========================================================= */

.skills-section {
    position: relative;

    padding: 130px 0 110px;

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

    background:
        radial-gradient(circle at 50% 45%,
            rgba(112, 45, 255, 0.07),
            transparent 34%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.004),
            rgba(139, 61, 255, 0.01));
}


.skills-container {
    width: min(calc(100% - 64px), 1500px);

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(240px, 0.75fr) minmax(620px, 1.65fr) minmax(260px, 0.8fr);

    align-items: center;

    gap: 36px;
}



/* =========================================================
   LEFT CONTENT
========================================================= */

.skills-left {
    position: relative;
    z-index: 4;
}


.skills-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #b96cff;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.skills-heading {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem,
            3.3vw,
            3.8rem);

    font-weight: 650;

    line-height: 1.04;

    letter-spacing: -0.045em;

    color: #ffffff;
}


.skills-heading span {
    display: block;

    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #c78dff 30%,
            #8b3dff 100%);

    -webkit-background-clip: text;
    background-clip: text;
}


.skills-heading-line {
    width: 48px;
    height: 2px;

    margin-top: 25px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #8b3dff,
            #c670ff);

    box-shadow:
        0 0 15px rgba(151, 74, 255, 0.45);
}


.skills-description {
    max-width: 290px;

    margin-top: 23px;

    color: #9c9dab;

    font-size: 0.93rem;

    line-height: 1.85;
}



/* =========================================================
   LEFT STATS
========================================================= */

.skills-stats {
    display: grid;

    gap: 18px;

    margin-top: 42px;
}


.skills-stat {
    display: flex;

    align-items: center;

    gap: 16px;
}


.skills-stat-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(158, 79, 255, 0.22);

    border-radius: 15px;

    color: #a957ff;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.12),
            rgba(255, 255, 255, 0.018));

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}


.skills-stat strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.45rem;

    line-height: 1;
}


.skills-stat span {
    display: block;

    margin-top: 5px;

    color: #9899a6;

    font-size: 0.76rem;
}



/* =========================================================
   ORBIT AREA
========================================================= */

.skills-orbit {
    position: relative;

    width: 100%;

    max-width: 720px;

    aspect-ratio: 1 / 1;

    margin-inline: auto;

    display: grid;
    place-items: center;

    isolation: isolate;
}


.skills-orbit::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(117, 47, 255, 0.14),
            transparent 68%);

    filter: blur(35px);

    pointer-events: none;
}



/* =========================================================
   ORBIT RINGS
========================================================= */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(143, 65, 255, 0.30);
    pointer-events: none;
}

.orbit-ring-1 {
    width: 260px;
    height: 260px;
}

.orbit-ring-2 {
    width: 380px;
    height: 380px;
}

.orbit-ring-3 {
    width: 500px;
    height: 500px;
}

.orbit-ring-4 {
    width: 620px;
    height: 620px;
}


/* =========================================
   TRACKER DOTS
========================================= */

.skill-tracker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 7;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    pointer-events: none;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.tracker-1 {
    width: 260px;
    height: 260px;
    transition-delay: 0s;
}

.tracker-2 {
    width: 380px;
    height: 380px;
    transition-delay: 0.08s;
}

.tracker-3 {
    width: 500px;
    height: 500px;
    transition-delay: 0.16s;
}

.tracker-4 {
    width: 620px;
    height: 620px;
    transition-delay: 0.24s;
}


/* Purple glowing tracker dots */

.skill-tracker span {
    position: absolute;
    top: 50%;
    right: -5px;

    width: 9px;
    height: 9px;

    transform: translateY(-50%);
    border-radius: 50%;

    background: #c66cff;

    box-shadow:
        0 0 8px #c66cff,
        0 0 18px rgba(179, 92, 255, 0.85),
        0 0 30px rgba(139, 61, 255, 0.55);

    animation: skillDotPulse 1.2s ease-in-out infinite;
}

.tracker-4 span {
    display: none;
}


/* =========================================
   DOT PULSE
========================================= */

@keyframes skillDotPulse {
    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.72;
        transform: translateY(-50%) scale(1.45);
    }
}

/* =========================================================
   CENTER CORE
========================================================= */

.skills-core {
    position: absolute;

    z-index: 8;

    width: 205px;
    height: 205px;

    display: flex;
    flex-direction: column;

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

    border:
        1px solid rgba(165, 83, 255, 0.45);

    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 30%,
            rgba(155, 74, 255, 0.18),
            rgba(15, 11, 26, 0.92) 55%,
            rgba(6, 6, 11, 0.98));

    box-shadow:
        0 0 35px rgba(135, 53, 255, 0.15),
        inset 0 0 40px rgba(126, 48, 255, 0.09);

    overflow: hidden;
}


.skills-core::before {
    content: "";

    position: absolute;

    inset: 12px;

    border-radius: 50%;

    border:
        1px dotted rgba(181, 110, 255, 0.16);
}


.skills-core span {
    position: relative;

    z-index: 2;

    margin-bottom: 7px;

    color: #a855f7;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.skills-core strong {
    position: relative;

    z-index: 2;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.7rem;

    line-height: 1.05;

    letter-spacing: -0.03em;
}


.skills-core .core-purple {
    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #c68cff,
            #8a3dff);

    -webkit-background-clip: text;
    background-clip: text;
}



/* =========================================================
   TECH NODES
========================================================= */

.tech-node {
    position: absolute;

    z-index: 10;

    min-width: 88px;

    padding: 0;

    border: 0;

    color: #ffffff;

    background: transparent;

    cursor: pointer;

    text-align: center;

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


.tech-node:hover {
    transform:
        translateY(-6px) scale(1.05);
}


.tech-node.active {
    filter:
        drop-shadow(0 0 22px rgba(154, 69, 255, 0.65));
}


.tech-icon {
    width: 72px;
    height: 72px;

    margin-inline: auto;

    display: grid;
    place-items: center;

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

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(145deg,
            rgba(22, 23, 34, 0.94),
            rgba(8, 8, 14, 0.92));

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;
    font-weight: 700;

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


.tech-node:hover .tech-icon,
.tech-node.active .tech-icon {
    transform: scale(1.08);

    border-color:
        rgba(168, 85, 247, 0.62);

    background:
        radial-gradient(circle at center,
            rgba(139, 61, 255, 0.22),
            rgba(9, 9, 16, 0.93));

    box-shadow:
        0 0 12px rgba(168, 85, 247, 0.65),
        0 0 28px rgba(139, 61, 255, 0.32),
        0 0 50px rgba(139, 61, 255, 0.14);
}


.tech-node>span {
    display: block;

    margin-top: 8px;

    color: #d0d0d8;

    font-size: 0.72rem;

    white-space: nowrap;
}



/* =========================================================
   ICON COLORS
========================================================= */

.html-icon {
    color: #ff6a32;
}

.css-icon {
    color: #4ea4ff;
}

.js-icon {
    color: #ffd83b;
}

.react-icon {
    color: #56d9ff;
}

.next-icon {
    color: #ffffff;
}

.node-icon {
    color: #75d348;
}

.mongo-icon {
    color: #6ee85c;
}

.python-icon {
    color: #5aa7ff;
}

.java-icon {
    color: #ff9e52;
}

.c-icon {
    color: #6c9fff;
}



/* =========================================================
   NODE POSITIONS
========================================================= */

.tech-html {
    top: 1%;
    left: 50%;

    transform: translateX(-50%);
}


.tech-css {
    top: 17%;
    left: 10%;
}


.tech-js {
    top: 15%;
    right: 10%;
}


.tech-react {
    top: 42%;
    left: 0;
}


.tech-next {
    top: 43%;
    right: 0;
}


.tech-nodejs {
    left: 23%;
    bottom: 7%;
}


.tech-mongodb {
    left: 50%;
    bottom: 0;

    transform: translateX(-50%);
}


.tech-python {
    right: 20%;
    bottom: 8%;
}


.tech-java {
    left: 9%;
    bottom: 18%;
}


.tech-c {
    right: 7%;
    bottom: 27%;
}


.tech-html:hover,
.tech-mongodb:hover {
    transform:
        translateX(-50%) translateY(-6px) scale(1.05);
}



/* =========================================================
   DETAILS CARD
========================================================= */

.tech-details {
    position: relative;

    min-height: 500px;

    padding: 32px 30px;

    overflow: hidden;

    border:
        1px solid rgba(157, 75, 255, 0.38);

    border-radius: 22px;

    background:
        linear-gradient(150deg,
            rgba(19, 15, 31, 0.92),
            rgba(7, 7, 13, 0.94));

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


.tech-details-glow {
    position: absolute;

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

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        rgba(133, 48, 255, 0.16);

    filter: blur(60px);

    pointer-events: none;
}


.detail-main-icon {
    position: relative;

    z-index: 2;

    width: 96px;
    height: 96px;

    margin-bottom: 28px;

    display: grid;
    place-items: center;

    border:
        2px solid rgba(165, 89, 255, 0.6);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(9, 8, 16, 0.82);

    font-family: "Space Grotesk", sans-serif;

    font-size: 2.3rem;

    box-shadow:
        0 0 25px rgba(145, 60, 255, 0.3),
        0 0 55px rgba(145, 60, 255, 0.14);
}


.tech-details h3 {
    position: relative;

    z-index: 2;

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 2rem;

    letter-spacing: -0.035em;
}


.detail-category {
    display: block;

    position: relative;

    z-index: 2;

    margin-top: 7px;

    color: #a855f7;

    font-size: 0.9rem;

    font-weight: 600;
}


.detail-divider {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 1px;

    margin: 24px 0;

    background:
        linear-gradient(90deg,
            rgba(168, 85, 247, 0.55),
            rgba(255, 255, 255, 0.05));
}


.tech-details p {
    position: relative;

    z-index: 2;

    color: #a4a5af;

    font-size: 0.91rem;

    line-height: 1.75;
}



/* =========================================================
   DETAILS CHANGE ANIMATION
========================================================= */

.tech-details.is-changing {
    animation:
        detailsChange 0.4s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


@keyframes detailsChange {

    0% {
        opacity: 0.4;

        transform:
            translateY(8px) scale(0.985);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}



/* =========================================================
   PROFICIENCY
========================================================= */

.proficiency {
    position: relative;

    z-index: 2;

    margin-top: 28px;
}


.proficiency-header {
    display: flex;

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

    margin-bottom: 10px;

    color: #b2b2bd;

    font-size: 0.76rem;
}


.proficiency-header strong {
    color: #ffffff;

    font-size: 0.78rem;
}


.proficiency-track {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 999px;

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


.proficiency-bar {
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #762dff,
            #b35cff);

    box-shadow:
        0 0 18px rgba(158, 76, 255, 0.35);

    transition:
        width 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}



/* =========================================================
   FEATURES
========================================================= */

.detail-features {
    position: relative;

    z-index: 2;

    display: grid;

    gap: 13px;

    margin-top: 28px;
}


.detail-features span {
    color: #acadb7;

    font-size: 0.78rem;
}



/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.skills-bottom {
    width: min(calc(100% - 64px), 920px);

    margin: 50px auto 0;

    padding: 20px 24px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 20px;

    border:
        1px solid rgba(159, 79, 255, 0.25);

    border-radius: 18px;

    background:
        linear-gradient(145deg,
            rgba(19, 17, 29, 0.72),
            rgba(9, 8, 15, 0.74));

    backdrop-filter: blur(15px);
}


.skills-bottom-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: #b96cff;

    background:
        rgba(139, 61, 255, 0.10);

    font-family:
        "Space Grotesk",
        sans-serif;
}


.skills-bottom p {
    color: #a4a5b0;

    font-size: 0.82rem;

    line-height: 1.6;
}


.skills-bottom strong {
    color: #ad61ff;
}


.skills-cta {
    min-height: 44px;

    padding:
        0 17px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    border:
        1px solid rgba(164, 84, 255, 0.4);

    border-radius: 12px;

    color: #bc76ff;

    font-size: 0.76rem;

    font-weight: 600;

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


.skills-cta:hover {
    color: #ffffff;

    background:
        rgba(139, 61, 255, 0.13);

    transform:
        translateY(-2px);
}


.skills-cta span {
    font-size: 1.1rem;
}



/* =========================================================
   RESPONSIVE — 1280px
========================================================= */

@media (max-width: 1280px) {

    .skills-container {
        grid-template-columns:
            240px minmax(520px, 1fr);
    }


    .tech-details {
        grid-column: 1 / -1;

        width: min(100%, 720px);

        min-height: auto;

        margin-inline: auto;
    }

}



/* =========================================================
   RESPONSIVE — 950px
========================================================= */

@media (max-width: 950px) {

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


    .skills-left {
        max-width: 650px;
    }


    .skills-description {
        max-width: 560px;
    }


    .skills-stats {
        grid-template-columns:
            repeat(3,
                minmax(0, 1fr));
    }


    .skills-orbit {
        max-width: 680px;
    }

}



/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .skills-section {
        padding: 90px 0;
    }


    .skills-container {
        width:
            calc(100% - 30px);

        gap: 55px;
    }


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


    .skills-orbit {
        max-width: 430px;
    }


    .orbit-ring-1 {
        width: 165px;
        height: 165px;
    }


    .orbit-ring-2 {
        width: 245px;
        height: 245px;
    }


    .orbit-ring-3 {
        width: 325px;
        height: 325px;
    }


    .orbit-ring-4 {
        width: 405px;
        height: 405px;
    }


    .skills-core {
        width: 140px;
        height: 140px;
    }


    .skills-core strong {
        font-size: 1.15rem;
    }


    .tech-icon {
        width: 50px;
        height: 50px;

        font-size: 0.82rem;
    }


    .tech-node {
        min-width: 62px;
    }


    .tech-node>span {
        font-size: 0.56rem;
    }


    .orbit-tracker {
        width: 88%;
    }


    .tech-details {
        display: block;

        padding: 25px;

        min-height: auto;
    }


    .detail-main-icon {
        width: 78px;
        height: 78px;

        font-size: 1.8rem;
    }


    .skills-bottom {
        width:
            calc(100% - 30px);

        grid-template-columns: 1fr;

        text-align: left;
    }


    .skills-cta {
        justify-self: start;
    }

}



/* =========================================================
   RESPONSIVE — 470px
========================================================= */

@media (max-width: 470px) {

    .skills-orbit {
        max-width: 350px;
    }


    .orbit-ring-1 {
        width: 135px;
        height: 135px;
    }


    .orbit-ring-2 {
        width: 200px;
        height: 200px;
    }


    .orbit-ring-3 {
        width: 270px;
        height: 270px;
    }


    .orbit-ring-4 {
        width: 335px;
        height: 335px;
    }


    .skills-core {
        width: 115px;
        height: 115px;
    }


    .skills-core span {
        font-size: 0.52rem;
    }


    .skills-core strong {
        font-size: 0.92rem;
    }


    .tech-icon {
        width: 42px;
        height: 42px;
    }


    .tech-node>span {
        display: none;
    }


    .tracker-dot {
        width: 8px;
        height: 8px;
    }

}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .orbit-ring,
    .tracker-dot {
        animation: none;
    }

    .orbit-tracker {
        transition: none;
    }

}

/* =========================================================
   PROJECTS / TESTIMONIALS / BLOG / CTA / CONTACT
   Base styling for the upgraded HTML structure
========================================================= */

#projects,
#testimonials,
#blog,
#cta,
#contact {
    position: relative;
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#projects {
    background:
        radial-gradient(circle at 80% 20%, rgba(139, 61, 255, 0.06), transparent 26%),
        #07070d;
}

.projects-header {
    max-width: 760px;
}

.projects-title,
#testimonials h2,
#blog h2,
#cta h2,
#contact h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 4.4rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.projects-title span,
#contact h2 span {
    color: transparent;
    background: linear-gradient(90deg, #ffffff, #c488ff, #8b3dff);
    -webkit-background-clip: text;
    background-clip: text;
}

.projects-description,
#cta p,
#contact p {
    max-width: 680px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}

#cta .container {
    padding: clamp(32px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(156, 78, 255, 0.25);
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 50%, rgba(139, 61, 255, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(19, 14, 32, 0.92), rgba(7, 7, 13, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.25);
}

#cta .primary-button,
#contact .primary-button {
    margin-top: 28px;
}

/* =========================================================
   REMOVE LARGE GAP BEFORE FOOTER
========================================================= */

#contact,
.contact-section {
    min-height: auto !important;
    height: auto !important;

    margin-bottom: 0 !important;

    padding-bottom: 25px !important;
}


.site-footer {
    margin-top: 0 !important;

    padding-top: 12px !important;
}


/* If your CTA section is before contact */
#cta,
.mini-cta-section {
    margin-bottom: 0 !important;
}

.contact-section {
    background:
        radial-gradient(circle at 20% 40%, rgba(139, 61, 255, 0.08), transparent 30%),
        #06060b;
}

footer {
    padding: 70px 0 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.006), rgba(0, 0, 0, 0.14));
    text-align: left;
}

footer .container {
    display: grid;
    gap: 10px;
}

footer h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

footer p {
    max-width: 680px;
    color: #777985;
    font-size: 0.78rem;
    line-height: 1.6;
}

@media (max-width: 600px) {

    #projects,
    #testimonials,
    #blog,
    #cta,
    #contact {
        padding: 85px 0;
    }
}

/* =========================================================
   14. FEATURED PROJECTS
========================================================= */

.projects-section {
    position: relative;

    padding: 130px 0 120px;

    overflow: hidden;
    height: 100vh;
    /* Ensure it doesn't break on extremely tiny laptop screens */
    min-height: 700px; 
    /* Reduce the original 110px padding to save vertical space */
    padding: calc(var(--header-height) + 20px) 0 30px;

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

    background:
        radial-gradient(circle at 72% 16%,
            rgba(139, 61, 255, 0.085),
            transparent 30%),
            
        linear-gradient(180deg,
            #07070d 0%,
            #080711 100%);
}


/* =========================================================
   PROJECT HEADER
========================================================= */
.projects-section .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Distribute the header, showcase, and navigation evenly */
    justify-content: space-between; 
}
.projects-header {
    display: flex;

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

    gap: 40px;

    margin-bottom: 20px;
}


.projects-header-text {
    max-width: 760px;
}


.projects-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2rem,
            3.5vw,
            3.5rem);

    font-weight: 650;

    line-height: 1;

    letter-spacing: -0.055em;
}


.projects-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #d0a0ff 30%,
            #9f50ff 65%,
            #7e39ff 100%);

    -webkit-background-clip: text;
    background-clip: text;
}


.projects-description {
    max-width: 700px;

    margin-top: 18px;

    color: #9fa0ab;

    font-size: 0.95rem;

    line-height: 1.75;
}


.projects-view-all {
    min-height: 48px;

    padding: 0 18px;

    display: inline-flex;

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

    gap: 10px;

    flex-shrink: 0;

    border:
        1px solid rgba(164, 84, 255, 0.30);

    border-radius: 12px;

    color: #c27aff;

    background:
        rgba(139, 61, 255, 0.035);

    font-size: 0.78rem;
    font-weight: 600;

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.projects-view-all:hover {
    transform: translateY(-3px);

    color: #ffffff;

    border-color:
        rgba(185, 108, 255, 0.58);

    background:
        rgba(139, 61, 255, 0.10);

    box-shadow:
        0 16px 35px rgba(93, 39, 190, 0.13);
}


.projects-view-all svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   MAIN PROJECT SHOWCASE
========================================================= */

.project-showcase {
    flex: 1; /* Takes up all remaining vertical space */
    display: flex;
    align-items: center;
    gap: 40px;
    /* min-height: 0 is crucial to prevent flex children from overflowing */
    min-height: 0; 
}


/* =========================================================
   LEFT PROJECT PREVIEW AREA
========================================================= */

.project-preview-area, 
.project-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.project-browser {
    position: relative;

    z-index: 3;

    overflow: hidden;

    border:
        1px solid rgba(164, 84, 255, 0.48);

    border-radius: 24px;

    background:
        linear-gradient(145deg,
            rgba(17, 16, 27, 0.96),
            rgba(8, 8, 14, 0.96));

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.48),

        0 0 50px rgba(117, 49, 255, 0.10),

        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    transform-style: preserve-3d;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),

        border-color 0.35s ease,

        box-shadow 0.45s ease;
}


.project-browser:hover {
    border-color:
        rgba(186, 104, 255, 0.70);

    box-shadow:
        0 42px 120px rgba(0, 0, 0, 0.55),

        0 0 75px rgba(127, 55, 255, 0.16);
}


/* =========================================================
   BROWSER TOP BAR
========================================================= */

.project-browser-top {
    min-height: 58px;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

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

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.028),
            rgba(255, 255, 255, 0.008));
}


.browser-dots {
    display: flex;

    align-items: center;

    gap: 8px;
}


.browser-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;
}


.browser-dot.red {
    background: #ff625b;

    box-shadow:
        0 0 10px rgba(255, 98, 91, 0.28);
}


.browser-dot.yellow {
    background: #f7c84b;

    box-shadow:
        0 0 10px rgba(247, 200, 75, 0.28);
}


.browser-dot.green {
    background: #65cc63;

    box-shadow:
        0 0 10px rgba(101, 204, 99, 0.28);
}


.browser-domain {
    min-width: 0;

    display: flex;

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

    gap: 8px;

    color: #aaaab4;

    font-size: 0.74rem;
}


.browser-domain svg {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    color: #777985;
}


.browser-domain span {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.browser-open {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

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

    border-radius: 9px;

    color: #a5a6b0;

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

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


.browser-open:hover {
    color: #ffffff;

    transform:
        translateY(-2px);

    border-color:
        rgba(175, 91, 255, 0.4);

    background:
        rgba(139, 61, 255, 0.09);
}


.browser-open svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   PROJECT SCREEN
========================================================= */
.project-browser-screen {
    flex: 1;
    overflow: hidden;
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space without squishing */
    object-position: top; 
}
.project-browser {
    max-height: 100%;
    display: flex;
    flex-direction: column;
}





.project-screen-glow {
    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(420px circle at var(--project-x, 50%) var(--project-y, 50%),

            rgba(165, 85, 255, 0.14),

            transparent 45%);

    transition:
        opacity 0.3s ease;
}


.project-browser-screen:hover .project-screen-glow {
    opacity: 1;
}


/* =========================================================
   FLOATING PROJECT BUTTON
========================================================= */

.project-floating-open {
    position: absolute;

    right: 24px;
    bottom: 24px;

    width: 74px;
    height: 74px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(220, 183, 255, 0.55);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle at 35% 30%,
            #a757ff,
            #742be4 68%,
            #5422aa);

    box-shadow:
        0 0 0 8px rgba(139, 61, 255, 0.08),

        0 0 40px rgba(143, 56, 255, 0.42),

        0 20px 35px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),

        box-shadow 0.35s ease;
}


.project-floating-open:hover {
    transform:
        translateY(-5px) rotate(7deg) scale(1.06);

    box-shadow:
        0 0 0 10px rgba(139, 61, 255, 0.10),

        0 0 55px rgba(143, 56, 255, 0.55),

        0 24px 45px rgba(0, 0, 0, 0.38);
}


.project-floating-open svg {
    width: 29px;
    height: 29px;
}


/* =========================================================
   PROJECT REFLECTION
========================================================= */

.project-reflection {
    position: absolute;

    left: 5%;
    right: 5%;

    bottom: -48px;

    height: 70px;

    z-index: 1;

    border-radius: 50%;

    background:
        rgba(128, 48, 255, 0.16);

    filter:
        blur(38px);

    pointer-events: none;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
    position: relative;

    min-height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.project-big-number {
    position: absolute;

    top: -45px;
    left: -22px;

    z-index: -1;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(8rem,
            13vw,
            13rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.08em;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(158, 76, 255, 0.22);

    opacity: 0.82;

    pointer-events: none;
}


.project-status {
    width: fit-content;

    margin-bottom: 22px;

    padding:
        8px 12px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid rgba(164, 84, 255, 0.20);

    border-radius: 9px;

    color: #b65dff;

    background:
        rgba(139, 61, 255, 0.06);

    font-size: 0.66rem;

    font-weight: 700;

    letter-spacing: 0.06em;
}

.project-navigation {
    margin-top: 20px;
    padding-top: 15px;
}

/* =========================================================
   SAFEGUARDS FOR SHORT SCREENS
========================================================= */
@media (max-height: 750px) {
    /* Hide non-essential text if the laptop screen is extremely short */
    .projects-description {
        display: none; 
    }
    
    .project-category {
        margin-bottom: 10px;
    }
    
    .project-info-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.project-status-dot {
    position: relative;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #b85fff;

    box-shadow:
        0 0 12px rgba(184, 95, 255, 0.85);
}


.project-status-dot::before {
    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid rgba(184, 95, 255, 0.45);

    border-radius: 50%;

    animation:
        projectStatusPulse 1.8s ease-out infinite;
}


@keyframes projectStatusPulse {

    from {
        opacity: 0.8;

        transform:
            scale(0.4);
    }

    to {
        opacity: 0;

        transform:
            scale(1.8);
    }
}


.project-info h3 {
    max-width: 520px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2rem,
            3.2vw,
            3.25rem);

    font-weight: 650;

    line-height: 1.05;

    letter-spacing: -0.045em;
}


.project-category {
    margin-top: 17px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #aaaab6;

    font-size: 0.84rem;
}


.project-category svg {
    width: 18px;
    height: 18px;

    color: #a855f7;
}


.project-info-description {
    max-width: 510px;

    margin-top: 24px;

    color: #a1a2ac;

    font-size: 0.93rem;

    line-height: 1.8;
}


/* =========================================================
   PROJECT TECH STACK
========================================================= */

.project-tech-stack {
    margin-top: 26px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.project-tech-stack span {
    padding:
        7px 12px;

    border:
        1px solid rgba(165, 84, 255, 0.18);

    border-radius: 9px;

    color: #c0a6d7;

    background:
        rgba(139, 61, 255, 0.045);

    font-size: 0.68rem;

    font-weight: 600;

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


.project-tech-stack span:hover {
    color: #ffffff;

    transform:
        translateY(-2px);

    border-color:
        rgba(168, 85, 247, 0.40);

    background:
        rgba(139, 61, 255, 0.11);
}


/* =========================================================
   PROJECT ACTIONS
========================================================= */

.project-actions {
    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}


.project-case-button {
    min-height: 52px;

    padding:
        0 22px;

    display: inline-flex;

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

    gap: 12px;

    border:
        1px solid rgba(169, 86, 255, 0.48);

    border-radius: 13px;

    color: #c777ff;

    background:
        linear-gradient(135deg,
            rgba(139, 61, 255, 0.095),
            rgba(139, 61, 255, 0.02));

    font-size: 0.78rem;

    font-weight: 600;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.22,
            1,
            0.36,
            1),

        box-shadow 0.3s ease;
}


.project-case-button:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    background:
        rgba(139, 61, 255, 0.14);

    box-shadow:
        0 18px 42px rgba(104, 39, 221, 0.18);
}


.project-case-button svg {
    width: 17px;
    height: 17px;

    transition:
        transform 0.3s ease;
}


.project-case-button:hover svg {
    transform:
        translateX(4px);
}


.project-github-button {
    min-height: 52px;

    padding:
        0 19px;

    display: inline-flex;

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

    gap: 9px;

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

    border-radius: 13px;

    color: #b3b4bd;

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

    font-size: 0.77rem;
    font-weight: 600;

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


.project-github-button:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    border-color:
        rgba(255, 255, 255, 0.20);

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


.project-github-button i {
    font-size: 17px;
}


/* =========================================================
   PROJECT NAVIGATION
========================================================= */

.project-navigation {
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        auto repeat(3,
            minmax(0, 1fr)) auto;

    align-items: stretch;

    gap: 12px;
}


.project-arrow {
    width: 54px;

    min-height: 126px;

    display: grid;

    place-items: center;

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

    border-radius: 18px;

    color: #aaaab5;

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

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


.project-arrow:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    border-color:
        rgba(163, 83, 255, 0.38);

    background:
        rgba(139, 61, 255, 0.075);

    box-shadow:
        0 14px 32px rgba(80, 28, 180, 0.12);
}


.project-arrow svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   PROJECT SELECTOR CARDS
========================================================= */

.project-selector {
    position: relative;

    min-width: 0;

    padding:
        16px;

    display: grid;

    grid-template-columns:
        110px minmax(0, 1fr);

    align-items: center;

    gap: 16px;

    overflow: hidden;

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

    border-radius: 16px;

    text-align: left;

    background:
        linear-gradient(145deg,
            rgba(17, 18, 28, 0.80),
            rgba(9, 10, 16, 0.78));

    transition:
        transform 0.35s cubic-bezier(0.22,
            1,
            0.36,
            1),

        border-color 0.35s ease,

        background 0.35s ease,

        box-shadow 0.35s ease;
}


.project-selector::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(300px circle at 15% 50%,

            rgba(139, 61, 255, 0.18),

            transparent 55%);

    transition:
        opacity 0.35s ease;
}


.project-selector:hover,
.project-selector.active {
    transform:
        translateY(-4px);

    border-color:
        rgba(165, 81, 255, 0.50);

    background:
        linear-gradient(145deg,
            rgba(39, 20, 65, 0.82),
            rgba(11, 10, 19, 0.86));

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.30),

        0 0 30px rgba(104, 39, 221, 0.10);
}


.project-selector:hover::before,
.project-selector.active::before {
    opacity: 1;
}


.project-selector-image {
    position: relative;

    z-index: 2;

    height: 78px;

    overflow: hidden;

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

    border-radius: 11px;

    background: #090910;
}


.project-selector-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;

    transition:
        transform 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


.project-selector:hover .project-selector-image img,
.project-selector.active .project-selector-image img {
    transform:
        scale(1.07);
}


.project-selector-content {
    position: relative;

    z-index: 2;

    min-width: 0;
}


.project-selector-number {
    display: block;

    margin-bottom: 8px;

    color: #943dff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.25rem;

    font-weight: 650;
}


.project-selector strong {
    display: block;

    overflow: hidden;

    color: #ffffff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.88rem;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.project-selector-category {
    display: block;

    margin-top: 5px;

    overflow: hidden;

    color: #8f909b;

    font-size: 0.67rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   PROJECT PROGRESS
========================================================= */

.project-progress {
    width: min(100%,
            720px);

    margin:
        38px auto 0;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 16px;
}


.project-progress-number {
    color: #9f45ff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.82rem;

    font-weight: 700;
}


.project-progress-total {
    color: #70717b;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.82rem;

    font-weight: 600;
}


.project-progress-track {
    position: relative;

    height: 2px;

    overflow: hidden;

    border-radius: 999px;

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


.project-progress-bar {
    width: 33.333%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7d34f5,
            #b75cff);

    box-shadow:
        0 0 14px rgba(160, 73, 255, 0.6);

    transition:
        width 0.6s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


/* =========================================================
   PROJECT CHANGE ANIMATIONS
========================================================= */

.project-showcase.project-changing .project-browser {
    animation:
        projectPreviewChange 0.55s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


.project-showcase.project-changing .project-info {
    animation:
        projectInfoChange 0.55s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


@keyframes projectPreviewChange {

    0% {
        opacity: 0.45;

        transform:
            translateY(10px) scale(0.985);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}


@keyframes projectInfoChange {

    0% {
        opacity: 0;

        transform:
            translateX(18px);
    }

    100% {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =========================================================
   RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

    .project-showcase {
        grid-template-columns:
            minmax(0, 1.2fr) minmax(300px, 0.8fr);

        gap: 45px;
    }


    .project-browser-screen,
    .project-main-image {
        min-height: 430px;
    }


    .project-selector {
        grid-template-columns:
            88px minmax(0, 1fr);
    }


    .project-selector-image {
        height: 67px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 950px) {

    .projects-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .project-showcase {
        grid-template-columns:
            1fr;

        gap: 60px;
    }


    .project-preview-area {
        width: 100%;
    }


    .project-info {
        min-height: auto;

        max-width: 720px;
    }


    .project-big-number {
        top: -70px;

        left: auto;
        right: 0;

        font-size:
            clamp(7rem,
                20vw,
                11rem);
    }


    .project-navigation {
        grid-template-columns:
            repeat(3,
                minmax(0,
                    1fr));

        gap: 12px;
    }


    .project-arrow {
        width: 48px;

        min-height: 48px;
    }


    .project-prev {
        grid-column: 1;
        grid-row: 2;

        justify-self: start;
    }


    .project-next {
        grid-column: 3;
        grid-row: 2;

        justify-self: end;
    }

}


/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .projects-section {
        padding:
            95px 0;
    }


    .project-browser {
        border-radius: 18px;
    }


    .project-browser-top {
        min-height: 50px;

        padding:
            0 14px;
    }


    .browser-dot {
        width: 9px;
        height: 9px;
    }


    .browser-domain {
        font-size: 0.65rem;
    }


    .project-browser-screen,
    .project-main-image {
        min-height: 350px;
    }


    .project-floating-open {
        right: 17px;
        bottom: 17px;

        width: 58px;
        height: 58px;
    }


    .project-floating-open svg {
        width: 23px;
        height: 23px;
    }


    .project-info h3 {
        font-size:
            clamp(2rem,
                9vw,
                2.7rem);
    }


    .project-info-description {
        font-size: 0.87rem;
    }


    .project-navigation {
        display: flex;

        overflow-x: auto;

        gap: 10px;

        padding:
            5px 2px 16px;

        scrollbar-width: none;

        scroll-snap-type:
            x mandatory;
    }


    .project-navigation::-webkit-scrollbar {
        display: none;
    }


    .project-selector {
        min-width: 280px;

        scroll-snap-align: start;
    }


    .project-arrow {
        min-width: 50px;

        min-height: 110px;
    }


    .project-prev,
    .project-next {
        grid-column: auto;
        grid-row: auto;

        justify-self: auto;
    }

}


/* =========================================================
   RESPONSIVE — 500px
========================================================= */

@media (max-width: 500px) {

    .projects-header {
        margin-bottom: 38px;
    }


    .projects-view-all {
        width: 100%;
    }


    .project-browser-screen,
    .project-main-image {
        min-height: 275px;
    }


    .project-actions {
        display: grid;

        grid-template-columns:
            1fr;
    }


    .project-case-button,
    .project-github-button {
        width: 100%;
    }


    .project-selector {
        min-width: 250px;

        grid-template-columns:
            76px minmax(0,
                1fr);
    }


    .project-selector-image {
        height: 62px;
    }


    .project-progress {
        width: 100%;
    }

}

/* =========================================================
   06. MY PROCESS — ONE SCREEN VIEW
========================================================= */

.process-section {
    position: relative;

    min-height: 100vh;

    padding:
        28px 0 24px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(circle at 50% 42%,
            rgba(122, 46, 255, 0.09),
            transparent 34%),
        linear-gradient(180deg,
            #06060b,
            #080711);
}


.process-container {
    width:
        min(calc(100% - 60px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.process-header {
    max-width: 860px;

    margin:
        0 auto 22px;

    text-align: center;
}


.process-header .section-label {
    margin-bottom: 8px;
}


.process-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.4rem,
            4vw,
            4.2rem);

    font-weight: 650;

    line-height: 0.98;

    letter-spacing: -0.05em;
}


.process-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c68cff,
            #8b3dff);

    -webkit-background-clip: text;
    background-clip: text;
}


.process-description {
    max-width: 680px;

    margin:
        12px auto 0;

    color: #9d9eaa;

    font-size: 0.86rem;

    line-height: 1.55;
}


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

.process-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,
            minmax(0, 1fr));

    gap: 20px;

    align-items: start;

    margin-bottom: 20px;

    padding:
        0 24px;
}


/* Background line */

.process-line {
    position: absolute;

    top: 76px;
    left: 12%;

    width: 76%;
    height: 3px;

    overflow: hidden;

    border-radius: 999px;

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

    z-index: 1;
}


.process-line-progress {
    width: 25%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7c35f6,
            #b95cff);

    box-shadow:
        0 0 16px rgba(168,
            85,
            247,
            0.7);

    transition:
        width 0.6s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


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

.process-step {
    position: relative;

    z-index: 3;

    min-height: 148px;

    padding:
        12px 14px;

    text-align: center;

    border:
        1px solid transparent;

    border-radius: 18px;

    background:
        transparent;

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


.process-step:hover {
    transform:
        translateY(-4px);
}


.process-step.active {
    border-color:
        rgba(169,
            84,
            255,
            0.48);

    background:
        linear-gradient(145deg,
            rgba(38, 20, 62, 0.78),
            rgba(12, 10, 20, 0.8));

    box-shadow:
        0 0 34px rgba(123,
            47,
            255,
            0.14);
}


.process-number {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255,
            255,
            255,
            0.26);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.25rem;

    font-weight: 700;
}


.process-step.active .process-number {
    color: #a855f7;
}


.process-icon {
    width: 58px;
    height: 58px;

    margin:
        0 auto 8px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(185,
            108,
            255,
            0.38);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(15,
            13,
            25,
            0.92);

    box-shadow:
        inset 0 0 25px rgba(139,
            61,
            255,
            0.05);

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


.process-step.active .process-icon {
    transform:
        scale(1.06);

    background:
        radial-gradient(circle,
            rgba(139,
                61,
                255,
                0.30),
            rgba(12,
                10,
                20,
                0.94));

    box-shadow:
        0 0 25px rgba(139,
            61,
            255,
            0.38);
}


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


.process-step h3 {
    margin-top: 3px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.9rem;

    font-weight: 600;

    text-transform: uppercase;
}


.process-step p {
    max-width: 190px;

    margin:
        7px auto 0;

    color: #9a9ba6;

    font-size: 0.68rem;

    line-height: 1.45;
}


/* =========================================================
   DASHBOARD
========================================================= */

.process-dashboard {
    display: grid;

    grid-template-columns:
        230px minmax(0, 1fr) 280px;

    min-height: 305px;

    overflow: hidden;

    border:
        1px solid rgba(154,
            73,
            255,
            0.30);

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(16,
                14,
                27,
                0.92),
            rgba(8,
                8,
                14,
                0.96));

    box-shadow:
        0 25px 70px rgba(0,
            0,
            0,
            0.35);
}


/* =========================================================
   LEFT SIDEBAR
========================================================= */

.process-sidebar {
    padding:
        20px 18px;

    border-right:
        1px solid rgba(255,
            255,
            255,
            0.06);
}


.process-dashboard-label {
    display: block;

    margin-bottom: 15px;

    color: #b35cff;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.07em;
}


.process-nav-item {
    width: 100%;

    min-height: 47px;

    margin-bottom: 8px;

    padding:
        0 12px;

    display: grid;

    grid-template-columns:
        34px 28px 1fr;

    align-items: center;

    gap: 8px;

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

    border-radius: 10px;

    color: #aaaab5;

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

    text-align: left;

    font-size: 0.72rem;

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


.process-nav-item:hover,
.process-nav-item.active {
    color: #ffffff;

    transform:
        translateX(3px);

    border-color:
        rgba(168,
            85,
            247,
            0.42);

    background:
        rgba(139,
            61,
            255,
            0.10);
}


.process-nav-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: #b35cff;

    background:
        rgba(139,
            61,
            255,
            0.10);
}


.process-nav-icon svg {
    width: 16px;
    height: 16px;
}


.process-nav-number {
    color: #a855f7;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight: 700;
}


/* =========================================================
   PROCESS CONSOLE
========================================================= */

.process-console {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border-right:
        1px solid rgba(255,
            255,
            255,
            0.06);
}


.process-console-header {
    height: 42px;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    gap: 12px;

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

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


.console-dots {
    display: flex;

    gap: 7px;
}


.console-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}


.console-dot.red {
    background: #ff625b;
}


.console-dot.yellow {
    background: #f5c84b;
}


.console-dot.green {
    background: #68d36b;
}


.console-title {
    color: #b7b7c0;

    font-size: 0.62rem;

    letter-spacing: 0.04em;
}


.console-status {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 6px;

    color: #62dc91;

    font-size: 0.58rem;
}


.console-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #58df91;

    box-shadow:
        0 0 10px rgba(88,
            223,
            145,
            0.8);
}


/* =========================================================
   CONSOLE BODY
========================================================= */

.process-console-body {
    position: relative;

    min-height: 263px;

    padding:
        28px 28px;

    overflow: hidden;
}


.console-purple-glow {
    position: absolute;

    right: -40px;
    bottom: -60px;

    width: 250px;
    height: 200px;

    border-radius: 50%;

    background:
        rgba(117,
            45,
            255,
            0.16);

    filter: blur(65px);

    pointer-events: none;
}


.console-grid {
    position: absolute;

    right: 40px;
    bottom: 25px;

    width: 240px;
    height: 120px;

    opacity: 0.12;

    transform:
        perspective(600px) rotateX(65deg);

    background-image:
        radial-gradient(circle,
            #a855f7 1px,
            transparent 1px);

    background-size:
        14px 14px;

    pointer-events: none;
}


/* =========================================================
   TERMINAL TYPING
========================================================= */

.process-terminal {
    position: relative;

    z-index: 2;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.78rem;

    line-height: 2;
}


.terminal-line {
    min-height: 25px;

    color: #e5e5e8;

    white-space: nowrap;
}


.terminal-prefix {
    margin-right: 10px;

    color: #8cff66;
}


.terminal-success {
    color: #54ff38;
}


.terminal-cursor {
    display: inline-block;

    margin-top: 4px;

    color: #a855f7;

    font-weight: 700;

    animation:
        terminalBlink 0.7s infinite;
}


@keyframes terminalBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }

}


/* =========================================================
   RIGHT CURRENT STEP
========================================================= */

.process-current {
    padding:
        20px 20px;

    background:
        linear-gradient(150deg,
            rgba(22,
                17,
                34,
                0.82),
            rgba(9,
                9,
                16,
                0.88));
}


.current-step-header {
    display: flex;

    align-items: center;

    gap: 14px;
}


.current-step-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(182,
            98,
            255,
            0.52);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle,
            rgba(139,
                61,
                255,
                0.32),
            rgba(11,
                9,
                19,
                0.96));

    box-shadow:
        0 0 25px rgba(139,
            61,
            255,
            0.28);
}


.current-step-icon svg {
    width: 24px;
    height: 24px;
}


.current-step-number {
    display: block;

    color: #a855f7;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.6rem;

    line-height: 1;
}


.current-step-header h3 {
    margin-top: 5px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.92rem;
}


.current-step-description {
    margin-top: 18px;

    color: #aaaab5;

    font-size: 0.76rem;

    line-height: 1.65;
}


.current-activity {
    margin-top: 16px;

    padding:
        11px 12px;

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

    border-radius: 10px;

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


.current-activity span {
    display: block;

    color: #787984;

    font-size: 0.56rem;

    letter-spacing: 0.06em;
}


.current-activity strong {
    display: block;

    margin-top: 5px;

    color: #d8d8df;

    font-size: 0.7rem;
}


/* =========================================================
   CURRENT PROGRESS
========================================================= */

.process-percentage {
    margin-top: 18px;
}


.process-percentage-header {
    margin-bottom: 8px;

    display: flex;

    justify-content: space-between;

    color: #8f909b;

    font-size: 0.62rem;
}


.process-percentage-header strong {
    color: #b35cff;
}


.process-percentage-track {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

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


.process-percentage-bar {
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7f35f8,
            #b95cff);

    box-shadow:
        0 0 15px rgba(168,
            85,
            247,
            0.45);

    transition:
        width 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


/* =========================================================
   BOTTOM
========================================================= */

.process-bottom {
    margin-top: 16px;

    display: flex;

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

    gap: 30px;
}


.process-complete-status {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #797a84;

    font-size: 0.58rem;
}


.process-complete-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 12px rgba(168,
            85,
            247,
            0.7);
}


.process-mini-line {
    width: 130px;
    height: 2px;

    overflow: hidden;

    border-radius: 999px;

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


.process-mini-progress {
    width: 25%;
    height: 100%;

    background:
        linear-gradient(90deg,
            #7d35f6,
            #b35cff);

    transition:
        width 0.5s ease;
}


.process-cta {
    min-height: 46px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(165,
            84,
            255,
            0.50);

    border-radius: 12px;

    color: #ffffff;

    background:
        rgba(139,
            61,
            255,
            0.08);

    font-size: 0.74rem;

    font-weight: 600;

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


.process-cta:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(185,
            108,
            255,
            0.75);

    background:
        rgba(139,
            61,
            255,
            0.16);

    box-shadow:
        0 16px 40px rgba(93,
            36,
            198,
            0.20);
}


.process-cta-icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background:
        rgba(139,
            61,
            255,
            0.22);
}


.process-cta svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   SMALLER LAPTOP HEIGHT
   IMPORTANT FOR ONE-SCREEN FIT
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .process-section {
        padding:
            14px 0 12px;
    }


    .process-header {
        margin-bottom: 12px;
    }


    .process-title {
        font-size:
            clamp(2.1rem,
                3vw,
                3.3rem);
    }


    .process-description {
        margin-top: 6px;

        font-size: 0.76rem;
    }


    .process-timeline {
        margin-bottom: 12px;
    }


    .process-step {
        min-height: 120px;

        padding:
            7px 10px;
    }


    .process-line {
        top: 63px;
    }


    .process-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 5px;
    }


    .process-icon svg {
        width: 20px;
        height: 20px;
    }


    .process-step p {
        font-size: 0.61rem;
    }


    .process-dashboard {
        min-height: 250px;

        grid-template-columns:
            205px minmax(0, 1fr) 245px;
    }


    .process-sidebar,
    .process-current {
        padding:
            14px 14px;
    }


    .process-nav-item {
        min-height: 39px;

        margin-bottom: 6px;
    }


    .process-console-body {
        min-height: 208px;

        padding:
            20px 24px;
    }


    .process-terminal {
        font-size: 0.7rem;

        line-height: 1.8;
    }


    .current-step-description {
        margin-top: 12px;

        font-size: 0.68rem;

        line-height: 1.5;
    }


    .current-activity {
        margin-top: 10px;
    }


    .process-percentage {
        margin-top: 12px;
    }


    .process-bottom {
        margin-top: 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .process-section {
        min-height: auto;

        padding:
            90px 0;
    }


    .process-timeline {
        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));

        gap: 16px;
    }


    .process-line {
        display: none;
    }


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


    .process-sidebar {
        display: grid;

        grid-template-columns:
            repeat(4,
                minmax(0, 1fr));

        gap: 8px;

        border-right: 0;

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


    .process-dashboard-label {
        grid-column:
            1 / -1;
    }


    .process-nav-item {
        grid-template-columns:
            1fr;

        justify-items: center;

        min-height: 80px;

        text-align: center;
    }


    .process-nav-number {
        display: none;
    }


    .process-console {
        border-right: 0;

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .process-container {
        width:
            calc(100% - 30px);
    }


    .process-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


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


    .process-step {
        min-height: auto;

        padding:
            16px;
    }


    .process-step p {
        max-width: 280px;
    }


    .process-sidebar {
        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));
    }


    .process-console-body {
        padding:
            22px 16px;
    }


    .process-terminal {
        font-size: 0.66rem;

        overflow-x: auto;
    }


    .terminal-line {
        white-space: normal;
    }


    .process-bottom {
        flex-direction: column;
    }


    .process-cta {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   07. DEVELOPER JOURNEY
========================================================= */

.journey-section {
    position: relative;

    min-height: 100vh;

    padding:
        24px 0 22px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(circle at 65% 48%,
            rgba(120, 45, 255, 0.08),
            transparent 34%),
        linear-gradient(180deg,
            #05050a,
            #080711);
}


/* =========================================================
   CONTAINER
========================================================= */

.journey-container {
    width:
        min(calc(100% - 58px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.journey-header {
    max-width: 800px;

    margin:
        0 auto 22px;

    text-align: center;
}


.journey-header .section-label {
    margin-bottom: 8px;
}


.journey-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.3rem,
            3.6vw,
            4rem);

    font-weight: 650;

    line-height: 0.98;

    letter-spacing: -0.05em;
}


.journey-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c477ff,
            #7d39ff);

    -webkit-background-clip: text;
    background-clip: text;
}


.journey-description {
    max-width: 650px;

    margin:
        10px auto 0;

    color: #9b9ca8;

    font-size: 0.82rem;

    line-height: 1.55;
}


/* =========================================================
   MAIN GRID
========================================================= */

.journey-grid {
    display: grid;

    grid-template-columns:
        minmax(390px, 0.78fr) minmax(0, 1.32fr);

    gap: 44px;

    align-items: stretch;
}


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

.journey-timeline {
    position: relative;

    display: grid;

    gap: 11px;
}


/* Vertical line */

.journey-line {
    position: absolute;

    top: 26px;
    bottom: 26px;
    left: 16px;

    width: 2px;

    background:
        rgba(147, 64, 255, 0.22);
}


.journey-line-progress {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(180deg,
            #b55cff,
            #7935ff);

    box-shadow:
        0 0 15px rgba(157,
            70,
            255,
            0.55);
}


/* =========================================================
   JOURNEY ITEM
========================================================= */

.journey-item {
    position: relative;

    padding-left: 58px;
}


.journey-node {
    position: absolute;

    top: 22px;
    left: 5px;

    z-index: 3;

    width: 24px;
    height: 24px;

    border:
        3px solid #080711;

    border-radius: 50%;

    background:
        #732dca;

    box-shadow:
        0 0 0 2px #8c3dff;
}


.journey-node::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 22px;

    width: 29px;
    height: 1px;

    background:
        #8e3cff;
}


.journey-node.active {
    background:
        #ffffff;

    box-shadow:
        0 0 0 2px #ad5cff,

        0 0 20px #9d49ff,

        0 0 38px rgba(142,
            59,
            255,
            0.50);
}


/* =========================================================
   JOURNEY CARD
========================================================= */

.journey-card {
    position: relative;

    min-height: 108px;

    padding:
        15px 18px;

    overflow: hidden;

    border:
        1px solid rgba(153,
            71,
            255,
            0.33);

    border-radius: 14px;

    background:
        linear-gradient(145deg,
            rgba(24,
                17,
                39,
                0.84),
            rgba(10,
                9,
                17,
                0.88));

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


.journey-card:hover {
    transform:
        translateX(4px);

    border-color:
        rgba(179,
            88,
            255,
            0.60);

    box-shadow:
        0 12px 35px rgba(97,
            35,
            190,
            0.12);
}


.journey-card-top {
    display: flex;

    align-items: center;

    gap: 18px;
}


.journey-year {
    min-width: 58px;

    padding:
        6px 10px;

    display: inline-flex;

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

    border:
        1px solid rgba(177,
            88,
            255,
            0.43);

    border-radius: 999px;

    color: #ffffff;

    background:
        rgba(139,
            61,
            255,
            0.18);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.68rem;

    font-weight: 650;
}


.current-year {
    color: #ffffff;

    background:
        rgba(139,
            61,
            255,
            0.29);
}


.journey-card h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.91rem;

    font-weight: 600;
}


.journey-card>p {
    margin:
        8px 0 9px 76px;

    max-width: 360px;

    color: #9d9eaa;

    font-size: 0.66rem;

    line-height: 1.5;
}


/* =========================================================
   TECHNOLOGIES
========================================================= */

.journey-tech {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:
        10px 18px;
}


.journey-tech span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #cacbd2;

    font-size: 0.61rem;
}


.journey-tech i {
    color: #a855f7;

    font-size: 14px;
}


.journey-tech .fa-html5 {
    color: #ff5b22;
}


.journey-tech .fa-css3-alt {
    color: #3e9cff;
}


.journey-tech .fa-js {
    color: #f4ca1f;
}


.journey-tech .fa-react {
    color: #46d5ff;
}


.journey-tech .fa-node-js {
    color: #69d240;
}


.journey-tech .fa-java {
    color: #f25a48;
}


.journey-tech .fa-python {
    color: #55a8ff;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.journey-right {
    display: grid;

    grid-template-rows:
        minmax(0, 1fr) auto;

    gap: 13px;
}


/* =========================================================
   CURRENT CHAPTER CARD
========================================================= */

.journey-current-card {
    position: relative;

    min-height: 365px;

    overflow: hidden;

    border:
        1px solid rgba(158,
            72,
            255,
            0.42);

    border-radius: 17px;

    background:
        linear-gradient(145deg,
            rgba(15,
                13,
                25,
                0.96),
            rgba(8,
                7,
                14,
                0.97));

    box-shadow:
        0 25px 70px rgba(0,
            0,
            0,
            0.35);
}


/* =========================================================
   CURRENT TOP
========================================================= */

.journey-current-top {
    height: 47px;

    padding:
        0 20px;

    display: flex;

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

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


.journey-current-top>span {
    color: #a84cff;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.65rem;
}


.journey-live {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #7de75f;

    font-size: 0.6rem;

    font-weight: 650;
}


.journey-live span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #65df56;

    box-shadow:
        0 0 10px rgba(101,
            223,
            86,
            0.8);

    animation:
        journeyLive 1.4s infinite;
}


@keyframes journeyLive {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

}


/* =========================================================
   CURRENT MAIN
========================================================= */

.journey-current-main {
    padding:
        18px 24px;

    display: grid;

    grid-template-columns:
        105px minmax(0, 1fr);

    align-items: center;

    gap: 22px;
}


.journey-orb {
    position: relative;

    width: 88px;
    height: 88px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(176,
            91,
            255,
            0.50);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle,
            rgba(139,
                61,
                255,
                0.23),
            transparent);

    box-shadow:
        0 0 28px rgba(139,
            61,
            255,
            0.20);
}


.journey-orb::before {
    content: "";

    position: absolute;

    inset: -13px;

    border:
        1px dotted rgba(155,
            72,
            255,
            0.35);

    border-radius: 50%;

    animation:
        journeyOrbit 12s linear infinite;
}


@keyframes journeyOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


.journey-orb svg {
    width: 38px;
    height: 38px;
}


.journey-current-main h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(1.35rem,
            2vw,
            2rem);

    letter-spacing: -0.03em;
}


.journey-purple-text {
    display: block;

    margin-top: 6px;

    color: #a94eff;

    font-size: 0.72rem;
}


.journey-current-main p {
    max-width: 520px;

    margin-top: 10px;

    color: #999aa6;

    font-size: 0.7rem;

    line-height: 1.55;
}


/* =========================================================
   DIVIDER
========================================================= */

.journey-divider {
    height: 1px;

    background:
        linear-gradient(90deg,
            rgba(255,
                255,
                255,
                0.02),
            rgba(160,
                72,
                255,
                0.18),
            rgba(255,
                255,
                255,
                0.02));
}


/* =========================================================
   CURRENT FOCUS
========================================================= */

.journey-focus {
    position: relative;

    min-height: 170px;

    padding:
        17px 24px;

    overflow: hidden;
}


.journey-focus-label {
    color: #a94cff;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.62rem;
}


.journey-terminal {
    position: relative;

    z-index: 3;

    margin-top: 13px;

    display: grid;

    gap: 7px;
}


.journey-terminal p {
    color: #b5b5bf;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.63rem;
}


.journey-terminal p span {
    margin-right: 8px;

    color: #73df3b;
}


.journey-terminal .journey-success {
    color: #61e33e;
}


/* =========================================================
   DECORATIVE WAVE
========================================================= */

.journey-wave {
    position: absolute;

    right: -35px;
    bottom: -80px;

    width: 360px;
    height: 210px;

    opacity: 0.35;

    transform:
        rotate(-8deg);

    background-image:
        radial-gradient(circle,
            #8b3dff 1px,
            transparent 1px);

    background-size:
        12px 12px;

    -webkit-mask-image:
        radial-gradient(ellipse,
            #000,
            transparent 70%);

    mask-image:
        radial-gradient(ellipse,
            #000,
            transparent 70%);
}


/* =========================================================
   STATUS BAR
========================================================= */

.journey-status-bar {
    min-height: 38px;

    padding:
        0 20px;

    display: flex;

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

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

    color: #65e94b;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.55rem;
}


.journey-status-bar strong {
    color: #ffffff;
}


/* =========================================================
   STATS
========================================================= */

.journey-stats {
    display: grid;

    grid-template-columns:
        repeat(4,
            minmax(0, 1fr));

    gap: 10px;
}


.journey-stat {
    min-height: 115px;

    padding:
        14px 10px;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    border:
        1px solid rgba(155,
            73,
            255,
            0.20);

    border-radius: 12px;

    background:
        linear-gradient(145deg,
            rgba(17,
                15,
                27,
                0.90),
            rgba(8,
                8,
                14,
                0.92));

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


.journey-stat:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(177,
            85,
            255,
            0.50);

    box-shadow:
        0 16px 36px rgba(91,
            28,
            180,
            0.12);
}


.journey-stat svg {
    width: 24px;
    height: 24px;

    color: #a84cff;
}


.journey-stat strong {
    margin-top: 7px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #b45cff,
            #7735ff);

    -webkit-background-clip: text;
    background-clip: text;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.8rem;

    line-height: 1;
}


.journey-stat span {
    margin-top: 7px;

    color: #c5c5cc;

    font-size: 0.61rem;

    line-height: 1.35;
}


/* =========================================================
   LAPTOP — 1366×768 / SMALL HEIGHT
   FIT EVERYTHING IN ONE SCREEN
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .journey-section {
        padding:
            12px 0 12px;
    }


    .journey-header {
        margin-bottom: 12px;
    }


    .journey-header .section-label {
        margin-bottom: 5px;
    }


    .journey-title {
        font-size:
            clamp(2rem,
                2.8vw,
                3.1rem);
    }


    .journey-description {
        margin-top: 6px;

        font-size: 0.7rem;
    }


    .journey-grid {
        gap: 30px;
    }


    .journey-timeline {
        gap: 7px;
    }


    .journey-card {
        min-height: 90px;

        padding:
            11px 14px;
    }


    .journey-card>p {
        margin-top: 5px;
        margin-bottom: 6px;

        font-size: 0.58rem;

        line-height: 1.4;
    }


    .journey-tech span {
        font-size: 0.54rem;
    }


    .journey-current-card {
        min-height: 325px;
    }


    .journey-current-main {
        padding:
            13px 20px;
    }


    .journey-focus {
        min-height: 140px;

        padding:
            12px 20px;
    }


    .journey-terminal {
        margin-top: 8px;

        gap: 5px;
    }


    .journey-terminal p {
        font-size: 0.57rem;
    }


    .journey-stats {
        gap: 8px;
    }


    .journey-stat {
        min-height: 92px;

        padding: 10px;
    }


    .journey-stat strong {
        font-size: 1.45rem;
    }


    .journey-stat span {
        font-size: 0.55rem;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .journey-section {
        min-height: auto;

        padding:
            90px 0;
    }


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

        gap: 45px;
    }


    .journey-timeline {
        max-width: 700px;

        width: 100%;

        margin-inline: auto;
    }


    .journey-right {
        max-width: 800px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .journey-container {
        width:
            calc(100% - 30px);
    }


    .journey-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


    .journey-item {
        padding-left: 43px;
    }


    .journey-line {
        left: 11px;
    }


    .journey-node {
        left: 0;
    }


    .journey-node::after {
        width: 18px;
    }


    .journey-card-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }


    .journey-card>p {
        margin-left: 0;
    }


    .journey-current-main {
        grid-template-columns: 1fr;
    }


    .journey-orb {
        width: 75px;
        height: 75px;
    }


    .journey-stats {
        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));
    }


    .journey-status-bar {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 3px;
    }

}

/* =========================================================
   08. CLIENT NETWORK
========================================================= */

.client-network-section {
    position: relative;

    min-height: 100vh;

    padding:
        22px 0 18px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(circle at 50% 50%,
            rgba(112, 42, 255, 0.10),
            transparent 34%),
        linear-gradient(180deg,
            #05050a,
            #07060d);
}


.client-network-container {
    width:
        min(calc(100% - 55px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.client-network-header {
    max-width: 760px;

    margin:
        0 auto 16px;

    text-align: center;
}


.client-network-header .section-label {
    margin-bottom: 6px;
}


.client-network-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.2rem,
            3.5vw,
            3.8rem);

    font-weight: 650;

    line-height: 0.97;

    letter-spacing: -0.05em;
}


.client-network-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c575ff,
            #8236ff);

    -webkit-background-clip: text;
    background-clip: text;
}


.client-network-description {
    max-width: 610px;

    margin:
        9px auto 0;

    color: #999aa6;

    font-size: 0.76rem;

    line-height: 1.5;
}


/* =========================================================
   NETWORK CANVAS
========================================================= */

.client-network {
    position: relative;

    height: 550px;

    max-width: 1440px;

    margin-inline: auto;

    isolation: isolate;
}


/* =========================================================
   CENTER HUB
========================================================= */

.client-hub {
    position: absolute;

    top: 48%;
    left: 50%;

    z-index: 10;

    width: 220px;
    height: 220px;

    transform:
        translate(-50%, -50%);

    display: grid;
    place-items: center;
}


.hub-core {
    position: relative;

    z-index: 4;

    width: 155px;
    height: 155px;

    display: flex;

    flex-direction: column;

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

    border:
        1px solid rgba(184, 98, 255, 0.85);

    border-radius: 50%;

    background:
        radial-gradient(circle at center,
            rgba(129, 52, 255, 0.23),
            rgba(9, 8, 15, 0.98) 70%);

    box-shadow:
        0 0 25px rgba(143, 58, 255, 0.30),

        0 0 70px rgba(115, 39, 240, 0.16),

        inset 0 0 30px rgba(139, 61, 255, 0.10);
}


.hub-core strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.2rem;

    letter-spacing: -0.02em;
}


.hub-core span {
    margin-top: 5px;

    color: #b255ff;

    font-size: 0.66rem;

    font-weight: 650;
}


.hub-core svg {
    width: 25px;
    height: 25px;

    margin-top: 15px;

    color: #a34cff;
}


/* =========================================================
   HUB ORBITS
========================================================= */

.hub-orbit {
    position: absolute;

    border:
        1px dotted rgba(150, 65, 255, 0.30);

    border-radius: 50%;
}


.orbit-a {
    width: 190px;
    height: 190px;

    animation:
        clientOrbit 16s linear infinite;
}


.orbit-b {
    width: 220px;
    height: 220px;

    animation:
        clientOrbit 24s linear reverse infinite;
}


@keyframes clientOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   CONNECTION LINES
========================================================= */

.network-lines {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;
}


.network-line {
    position: absolute;

    top: 48%;
    left: 50%;

    height: 1px;

    transform-origin:
        left center;

    background:
        linear-gradient(90deg,
            rgba(174, 79, 255, 0.9),
            rgba(117, 44, 240, 0.16));

    box-shadow:
        0 0 8px rgba(156, 68, 255, 0.28);
}


.line-1 {
    width: 340px;

    transform:
        rotate(210deg);
}


.line-2 {
    width: 340px;

    transform:
        rotate(-30deg);
}


.line-3 {
    width: 335px;

    transform:
        rotate(150deg);
}


.line-4 {
    width: 335px;

    transform:
        rotate(30deg);
}


.line-5 {
    width: 190px;

    transform:
        rotate(90deg);
}


/* =========================================================
   CLIENT CARDS
========================================================= */

.client-card {
    position: absolute;

    z-index: 6;

    width: 260px;

    padding:
        18px;

    border:
        1px solid rgba(165, 78, 255, 0.35);

    border-radius: 15px;

    background:
        linear-gradient(145deg,
            rgba(19, 15, 31, 0.94),
            rgba(8, 8, 14, 0.96));

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(16px);

    transition:
        transform 0.35s cubic-bezier(0.22,
            1,
            0.36,
            1),

        border-color 0.3s ease,

        box-shadow 0.3s ease;
}


.client-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(189, 102, 255, 0.68);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.40),

        0 0 40px rgba(118, 39, 240, 0.12);
}


.client-card-1 {
    top: 26px;
    left: 0;
}


.client-card-2 {
    top: 38px;
    right: 0;
}


.client-card-3 {
    left: -5px;
    bottom: 30px;
}


.client-card-4 {
    right: 0;
    bottom: 28px;
}


/* =========================================================
   FEATURED REVIEW
========================================================= */

.client-card-featured {
    left: 50%;
    bottom: -5px;

    width: 430px;

    transform:
        translateX(-50%);

    border-color:
        rgba(188, 98, 255, 0.78);

    box-shadow:
        0 0 35px rgba(130, 47, 255, 0.19),

        0 20px 50px rgba(0, 0, 0, 0.36);
}


.client-card-featured:hover {
    transform:
        translateX(-50%) translateY(-5px);
}


.featured-client-top {
    display: flex;

    align-items: center;

    gap: 15px;
}


.featured-client-top .client-rating {
    margin-left: 5px;
}


.featured-client-top .client-quote-mark {
    margin-left: auto;

    position: static;
}


/* =========================================================
   REVIEW ELEMENTS
========================================================= */

.client-rating {
    color: #ffbd23;

    font-size: 0.85rem;

    letter-spacing: 2px;
}


.client-quote-mark {
    position: absolute;

    top: 12px;
    right: 15px;

    color: #9f41ff;

    font-family:
        Georgia,
        serif;

    font-size: 2rem;

    line-height: 1;
}


.client-review {
    margin-top: 13px;

    color: #d3d3da;

    font-size: 0.68rem;

    line-height: 1.58;
}


.client-divider {
    width: 100%;
    height: 1px;

    margin:
        14px 0 12px;

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


.client-info strong {
    display: block;

    color: #b45cff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.73rem;
}


.client-info span {
    display: block;

    margin-top: 4px;

    color: #a0a1ab;

    font-size: 0.61rem;
}


.client-project-type {
    display: inline-flex;

    margin-top: 10px;

    padding:
        5px 9px;

    border-radius: 999px;

    color: #ba69ff;

    background:
        rgba(139, 61, 255, 0.11);

    font-size: 0.55rem;
}


/* =========================================================
   CLIENT NODES
========================================================= */

.client-node {
    position: absolute;

    z-index: 8;

    width: 84px;
    height: 84px;

    border-radius: 50%;

    background:
        transparent;
}


.client-node-1 {
    top: 75px;
    left: 300px;
}


.client-node-2 {
    top: 85px;
    right: 300px;
}


.client-node-3 {
    left: 305px;
    bottom: 125px;
}


.client-node-4 {
    right: 305px;
    bottom: 125px;
}


.client-avatar {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    margin: auto;

    border:
        1px solid rgba(189, 104, 255, 0.65);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle,
            rgba(139, 61, 255, 0.28),
            rgba(10, 8, 17, 0.96));

    box-shadow:
        0 0 0 8px rgba(139, 61, 255, 0.055),

        0 0 25px rgba(139, 61, 255, 0.24);
}


.client-avatar span {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.82rem;

    font-weight: 700;
}


.featured-avatar {
    width: 56px;
    height: 56px;

    margin: 0;
}


.node-pulse {
    position: absolute;

    top: 50%;
    right: -3px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #be6bff;

    box-shadow:
        0 0 10px #b45cff,

        0 0 20px rgba(168, 85, 247, 0.75);

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


@keyframes clientNodePulse {

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

    50% {
        transform:
            translateY(-50%) scale(1.45);
    }

}


/* =========================================================
   BOTTOM STAT BAR
========================================================= */

.client-stats {
    min-height: 72px;

    margin-top: 6px;

    padding:
        10px 18px;

    display: grid;

    grid-template-columns:
        repeat(5,
            minmax(0, 1fr));

    border:
        1px solid rgba(148, 69, 255, 0.18);

    border-radius: 15px;

    background:
        rgba(11, 10, 18, 0.84);
}


.client-stat {
    display: flex;

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

    gap: 12px;

    border-right:
        1px solid rgba(255, 255, 255, 0.06);
}


.client-stat:last-child {
    border-right: 0;
}


.client-stat svg {
    width: 23px;
    height: 23px;

    color: #a74cff;
}


.client-stat strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.05rem;
}


.client-stat span {
    display: block;

    margin-top: 2px;

    color: #9697a3;

    font-size: 0.56rem;
}


/* =========================================================
   LAPTOP — FULL SECTION IN ONE SCREEN
   1366x768 / 1440x800 etc.
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .client-network-section {
        padding:
            10px 0 9px;
    }


    .client-network-header {
        margin-bottom: 6px;
    }


    .client-network-header .section-label {
        margin-bottom: 3px;
    }


    .client-network-title {
        font-size:
            clamp(1.9rem,
                2.7vw,
                3rem);
    }


    .client-network-description {
        margin-top: 5px;

        font-size: 0.66rem;
    }


    .client-network {
        height: 500px;
    }


    .client-hub {
        width: 190px;
        height: 190px;
    }


    .hub-core {
        width: 135px;
        height: 135px;
    }


    .orbit-a {
        width: 165px;
        height: 165px;
    }


    .orbit-b {
        width: 190px;
        height: 190px;
    }


    .client-card {
        width: 235px;

        padding: 14px;
    }


    .client-review {
        margin-top: 9px;

        font-size: 0.61rem;

        line-height: 1.46;
    }


    .client-divider {
        margin:
            10px 0 8px;
    }


    .client-node {
        width: 72px;
        height: 72px;
    }


    .client-avatar {
        width: 56px;
        height: 56px;
    }


    .client-card-featured {
        width: 390px;

        padding: 13px 16px;
    }


    .client-stats {
        min-height: 58px;

        margin-top: 2px;
    }


    .client-stat svg {
        width: 20px;
        height: 20px;
    }


    .client-stat strong {
        font-size: 0.92rem;
    }


    .client-stat span {
        font-size: 0.51rem;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .client-network-section {
        min-height: auto;

        padding:
            90px 0;
    }


    .client-network {
        height: auto;

        display: grid;

        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));

        gap: 16px;
    }


    .client-hub,
    .client-node,
    .network-lines {
        display: none;
    }


    .client-card,
    .client-card-featured {
        position: relative;

        inset: auto;

        width: auto;

        transform: none;
    }


    .client-card-featured:hover {
        transform:
            translateY(-5px);
    }


    .client-card-featured {
        grid-column:
            1 / -1;
    }


    .client-stats {
        grid-template-columns:
            repeat(3,
                minmax(0, 1fr));

        gap: 10px;
    }


    .client-stat {
        border-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .client-network-container {
        width:
            calc(100% - 30px);
    }


    .client-network-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


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


    .client-card-featured {
        grid-column: auto;
    }


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


    .client-stat {
        min-height: 65px;

        justify-content: flex-start;

        padding:
            0 12px;
    }

}

/* =========================================================
   10. CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    min-height: 100vh;

    padding:
        22px 0;

    display: flex;

    align-items: center;

    overflow: hidden;

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

    background:
        linear-gradient(180deg,
            #050509,
            #06050b);
}


.contact-container {
    width:
        min(calc(100% - 50px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   MAIN CONTACT SHELL
========================================================= */

.contact-shell {
    position: relative;

    min-height: 650px;

    padding:
        30px 32px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(470px, 0.85fr);

    gap: 42px;

    overflow: hidden;

    border:
        1px solid rgba(167, 82, 255, 0.40);

    border-radius: 28px;

    background:
        radial-gradient(circle at 40% 55%,
            rgba(124, 45, 255, 0.08),
            transparent 34%),
        linear-gradient(145deg,
            rgba(12, 10, 20, 0.96),
            rgba(6, 6, 11, 0.98));

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),

        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    isolation: isolate;
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.contact-cursor-glow {
    position: absolute;

    inset: 0;

    z-index: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(500px circle at var(--contact-x, 50%) var(--contact-y, 50%),

            rgba(150, 62, 255, 0.11),

            transparent 48%);

    transition:
        opacity 0.3s ease;
}


.contact-shell:hover .contact-cursor-glow {
    opacity: 1;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.contact-left {
    position: relative;

    z-index: 2;

    min-width: 0;

    padding:
        6px 5px;

    overflow: hidden;
}


/* =========================================================
   LABEL
========================================================= */

.contact-label {
    width: fit-content;

    padding:
        8px 13px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid rgba(163, 77, 255, 0.30);

    border-radius: 9px;

    color: #ded8e9;

    background:
        rgba(139, 61, 255, 0.035);

    font-size: 0.67rem;

    font-weight: 600;

    letter-spacing: 0.07em;
}


.contact-label-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #a84cff;

    box-shadow:
        0 0 11px rgba(168, 76, 255, 0.85);
}


/* =========================================================
   HEADING
========================================================= */
.contact-title {
    max-width: 570px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem, 3.25vw, 3.7rem);
    font-weight: 650;
    line-height: 0.99;
    letter-spacing: -0.05em;

    text-align: left;
}

.contact-title span {
    display: inline;

    margin: 0;
    padding: 0;

    color: transparent;

    background: linear-gradient(
        90deg,
        #d392ff,
        #8b39ff
    );

    -webkit-background-clip: text;
    background-clip: text;

    transform: none;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.contact-description {
    max-width: 410px;

    margin-top: 18px;

    color: #a2a3ae;

    font-size: 0.74rem;

    line-height: 1.62;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    position: relative;

    z-index: 5;

    width: 310px;

    margin-top: 22px;

    display: grid;

    gap: 5px;
}


.contact-detail {
    min-height: 52px;

    padding:
        7px 0;

    display: flex;

    align-items: center;

    gap: 13px;

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


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


.contact-detail-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(157, 73, 255, 0.16);

    border-radius: 9px;

    color: #b75cff;

    background:
        rgba(139, 61, 255, 0.07);
}


.contact-detail-icon svg {
    width: 17px;
    height: 17px;
}


.contact-detail-icon i {
    font-size: 17px;
}


.contact-detail span {
    display: block;

    color: #b75cff;

    font-size: 0.62rem;

    font-weight: 600;
}


.contact-detail strong {
    display: block;

    margin-top: 4px;

    max-width: 250px;

    overflow: hidden;

    color: #d7d7dd;

    font-size: 0.64rem;

    font-weight: 500;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   ORB AREA
========================================================= */

.contact-orb-area {
    position: absolute;

    right: 10px;
    bottom: 5px;

    width: 380px;
    height: 400px;

    display: grid;

    place-items: center;

    pointer-events: none;
}


/* =========================================================
   ORBITS
========================================================= */

.contact-orbit {
    position: absolute;

    border:
        1px solid rgba(154, 68, 255, 0.22);

    border-radius: 50%;
}


.orbit-one {
    width: 250px;
    height: 250px;

    animation:
        contactOrbit 18s linear infinite;
}


.orbit-two {
    width: 310px;
    height: 310px;

    animation:
        contactOrbit 25s linear reverse infinite;
}


.orbit-three {
    width: 360px;
    height: 360px;

    border-style: dotted;

    animation:
        contactOrbit 32s linear infinite;
}


@keyframes contactOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   ORBIT DOTS
========================================================= */

.contact-orbit-dot {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #b55bff;

    box-shadow:
        0 0 14px rgba(181, 91, 255, 0.9);
}


.dot-one {
    top: 72px;
    left: 105px;
}


.dot-two {
    top: 175px;
    right: 9px;
}


.dot-three {
    bottom: 95px;
    left: 24px;
}


/* =========================================================
   GLOBE
========================================================= */

.contact-globe {
    position: relative;

    z-index: 5;

    width: 175px;
    height: 175px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(192, 109, 255, 0.66);

    border-radius: 50%;

    color: #c16dff;

    background:
        radial-gradient(circle at 35% 30%,
            rgba(187, 95, 255, 0.30),
            rgba(96, 31, 188, 0.17) 40%,
            rgba(8, 7, 14, 0.94) 72%);

    box-shadow:
        0 0 25px rgba(157, 64, 255, 0.40),

        0 0 70px rgba(118, 39, 230, 0.18),

        inset 0 0 40px rgba(164, 77, 255, 0.22);

    animation:
        globeFloat 4s ease-in-out infinite;
}


@keyframes globeFloat {

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

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

}


.contact-globe svg {
    width: 75px;
    height: 75px;

    stroke-width: 0.9;
}


/* =========================================================
   GLOBE GRID
========================================================= */

.contact-globe-grid {
    position: absolute;

    inset: 16px;

    border-radius: 50%;

    opacity: 0.25;

    background-image:
        radial-gradient(circle,
            #d08aff 1px,
            transparent 1px);

    background-size:
        7px 7px;

    mask-image:
        radial-gradient(circle,
            #000,
            transparent 75%);
}


/* =========================================================
   PLATFORM
========================================================= */

.contact-platform {
    position: absolute;

    bottom: 10px;

    width: 300px;
    height: 80px;

    transform:
        perspective(500px) rotateX(68deg);

    border:
        1px solid rgba(170, 72, 255, 0.36);

    border-radius: 50%;

    background:
        radial-gradient(ellipse,
            rgba(141, 53, 255, 0.24),
            transparent 65%);

    box-shadow:
        0 0 30px rgba(130, 40, 250, 0.25);
}


.platform-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(177, 85, 255, 0.40);

    border-radius: 50%;
}


.ring-a {
    width: 210px;
    height: 47px;
}


.ring-b {
    width: 150px;
    height: 34px;
}


.platform-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 70px;
    height: 18px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        #a74cff;

    filter:
        blur(8px);

    box-shadow:
        0 0 30px #a74cff;
}


/* =========================================================
   ORB MESSAGE
========================================================= */

.contact-orb-message {
    position: absolute;

    top: 83px;
    right: 12px;

    z-index: 10;

    width: 140px;

    padding:
        14px;

    border:
        1px solid rgba(177, 87, 255, 0.44);

    border-radius: 12px;

    color: #d0d0d7;

    background:
        rgba(13, 10, 22, 0.88);

    backdrop-filter: blur(14px);

    font-size: 0.61rem;

    line-height: 1.5;
}


.contact-orb-message strong {
    display: block;

    color: #b85cff;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    z-index: 4;

    align-self: center;

    padding:
        24px;

    border:
        1px solid rgba(182, 94, 255, 0.50);

    border-radius: 21px;

    background:
        radial-gradient(circle at 70% 0%,
            rgba(139, 61, 255, 0.12),
            transparent 32%),
        linear-gradient(145deg,
            rgba(22, 17, 34, 0.94),
            rgba(8, 8, 15, 0.96));

    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),

        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transform-style: preserve-3d;
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header {
    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.contact-form-header h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.15rem;
}


.contact-form-header svg {
    width: 28px;
    height: 28px;

    color: #aa4cff;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    display: grid;

    gap: 13px;
}


.contact-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;
}


/* =========================================================
   FIELDS
========================================================= */

.contact-field {
    position: relative;

    min-height: 56px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        0 17px;

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

    border-radius: 11px;

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

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


.contact-field:hover,
.contact-field:focus-within {
    transform:
        translateY(-2px);

    border-color:
        rgba(175, 84, 255, 0.55);

    background:
        rgba(139, 61, 255, 0.04);

    box-shadow:
        0 8px 25px rgba(95, 33, 190, 0.11),

        inset 0 0 20px rgba(139, 61, 255, 0.025);
}


.contact-field>svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: #c9c5d2;

    stroke-width: 1.5;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border: 0;

    outline: none;

    color: #ffffff;

    background: transparent;

    font-family:
        "Inter",
        sans-serif;

    font-size: 0.75rem;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a4a2ac;
}


.contact-field select {
    appearance: none;

    cursor: pointer;
}


.contact-field select option {
    color: #ffffff;

    background:
        #0c0a14;
}


/* =========================================================
   SELECT
========================================================= */

.contact-select {
    padding-right: 45px;
}


.select-arrow {
    position: absolute;

    right: 16px;

    width: 17px !important;
    height: 17px !important;

    pointer-events: none;
}


/* =========================================================
   TEXTAREA
========================================================= */

.contact-textarea {
    min-height: 125px;

    align-items: flex-start;

    padding-top: 16px;
}


.contact-textarea textarea {
    min-height: 92px;

    resize: none;

    line-height: 1.55;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
    min-height: 58px;

    display: flex;

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

    gap: 14px;

    border:
        1px solid rgba(222, 174, 255, 0.60);

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(100deg,
            #9137ff,
            #cc30d9);

    font-size: 0.82rem;

    font-weight: 700;

    box-shadow:
        0 0 25px rgba(139, 61, 255, 0.32);

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


.contact-submit:hover {
    transform:
        translateY(-4px);

    filter:
        brightness(1.08);

    box-shadow:
        0 0 40px rgba(139, 61, 255, 0.48),

        0 18px 35px rgba(0, 0, 0, 0.26);
}


.contact-submit svg {
    width: 18px;
    height: 18px;

    transition:
        transform 0.3s ease;
}


.contact-submit:hover svg {
    transform:
        translateX(5px);
}


/* =========================================================
   STATUS
========================================================= */

.contact-status {
    margin-top: 15px;

    min-height: 56px;

    padding:
        8px 15px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    border:
        1px solid rgba(160, 75, 255, 0.18);

    border-radius: 11px;

    background:
        rgba(7, 7, 13, 0.72);
}


.contact-status-item {
    display: flex;

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

    gap: 9px;
}


.contact-status-item svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: #a64cff;
}


.contact-status-item span {
    display: block;

    color: #8d8e99;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.47rem;
}


.contact-status-item strong {
    display: block;

    margin-top: 2px;

    color: #61ec48;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.53rem;
}


.contact-status-item .purple-status {
    color: #b55cff;
}


.contact-status-divider {
    width: 1px;
    height: 27px;

    background:
        rgba(168, 85, 247, 0.20);
}


/* =========================================================
   LAPTOP 1366x768 / 1440x800
   FULL SECTION VISIBLE
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .contact-section {
        padding:
            10px 0;
    }


    .contact-shell {
        min-height: 700px;

        max-height:
            calc(100vh - 20px);

        padding:
            22px 25px;

        grid-template-columns:
            minmax(0, 1fr) minmax(445px, 0.82fr);

        gap: 30px;

        border-radius: 24px;
    }


    .contact-label {
        padding:
            6px 10px;

        font-size: 0.6rem;
    }


    .contact-title {
        margin-top: 13px;

        font-size:
            clamp(1.95rem,
                2.75vw,
                2.9rem);
    }


    .contact-description {
        margin-top: 11px;

        font-size: 0.66rem;

        line-height: 1.5;
    }


    .contact-details {
        margin-top: 13px;

        gap: 2px;
    }


    .contact-detail {
        min-height: 44px;
    }


    .contact-detail-icon {
        width: 34px;
        height: 34px;
    }


    .contact-orb-area {
        right: 0;

        bottom: -18px;

        width: 330px;
        height: 345px;
    }


    .contact-globe {
        width: 145px;
        height: 145px;
    }


    .contact-globe svg {
        width: 62px;
        height: 62px;
    }


    .orbit-one {
        width: 205px;
        height: 205px;
    }


    .orbit-two {
        width: 255px;
        height: 255px;
    }


    .orbit-three {
        width: 300px;
        height: 300px;
    }


    .contact-platform {
        width: 250px;
    }


    .contact-form-card {
        padding:
            18px;
    }


    .contact-form-header {
        margin-bottom: 13px;
    }


    .contact-form {
        gap: 9px;
    }


    .contact-form-row {
        gap: 9px;
    }


    .contact-field {
        min-height: 47px;

        padding:
            0 13px;
    }


    .contact-textarea {
        min-height: 105px;

        padding-top: 13px;
    }


    .contact-textarea textarea {
        min-height: 75px;
    }


    .contact-submit {
        min-height: 48px;
    }


    .contact-status {
        min-height: 49px;

        margin-top: 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .contact-section {
        min-height: auto;

        padding:
            85px 0;
    }


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

        min-height: auto;
    }


    .contact-left {
        min-height: 600px;
    }


    .contact-orb-area {
        right: 8%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-container {
        width:
            calc(100% - 24px);
    }


    .contact-shell {
        padding:
            22px 16px;

        border-radius: 19px;
    }


    .contact-left {
        min-height: auto;

        padding-bottom: 420px;
    }


    .contact-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


    .contact-details {
        width: 100%;
    }


    .contact-orb-area {
        right: 50%;

        bottom: 0;

        width: 320px;

        transform:
            translateX(50%);
    }


    .contact-form-card {
        padding:
            18px 14px;
    }


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


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

        gap: 12px;

        padding:
            14px;
    }


    .contact-status-divider {
        display: none;
    }


    .contact-status-item {
        justify-content:
            flex-start;
    }

}

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

.site-footer {
    position: relative;

    width: 100%;

    padding: 20px;

    background: #050509;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.footer-container {
    width: min(100%, 1800px);

    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(168, 85, 247, 0.45);

    border-radius: 22px;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(139, 61, 255, 0.07),
            transparent 25%),
        linear-gradient(145deg,
            #0d0b16,
            #07070c 55%,
            #0b0912);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/* =========================================================
   TOP AREA
========================================================= */

.footer-top {
    min-height: 105px;

    padding: 18px 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

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


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-logo {
    width: 66px;
    height: 66px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px solid rgba(179, 92, 255, 0.65);

    border-radius: 50%;

    color: #b85cff;

    background:
        radial-gradient(circle,
            rgba(139, 61, 255, 0.20),
            rgba(8, 7, 14, 0.96));

    font-family: "Space Grotesk", sans-serif;

    font-size: 2rem;

    font-weight: 800;

    box-shadow:
        0 0 0 8px rgba(139, 61, 255, 0.035),
        0 0 28px rgba(139, 61, 255, 0.20);

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


.footer-logo:hover {
    transform:
        rotate(-7deg) scale(1.06);

    box-shadow:
        0 0 0 9px rgba(139, 61, 255, 0.05),
        0 0 35px rgba(139, 61, 255, 0.35);
}


/* =========================================================
   BRAND TEXT
========================================================= */

.footer-brand-content h3 {
    margin: 0;

    display: flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.15rem;

    font-weight: 700;

    letter-spacing: 0.25em;
}


.brand-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 12px #a855f7;
}


/* =========================================================
   ROLES
========================================================= */

.footer-roles {
    margin-top: 9px;

    display: flex;

    align-items: center;

    gap: 11px;

    color: #9999a5;

    font-size: 0.76rem;
}


.footer-roles i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #9f48ff;

    box-shadow:
        0 0 8px rgba(159, 72, 255, 0.7);
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 16px;
}


.footer-socials a {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(168, 85, 247, 0.45);

    border-radius: 50%;

    color: #ffffff;

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

    font-size: 1.15rem;

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


.footer-socials a:hover {
    transform:
        translateY(-5px);

    border-color: #b35cff;

    background:
        rgba(139, 61, 255, 0.12);

    box-shadow:
        0 0 25px rgba(139, 61, 255, 0.25);
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
    min-height: 90px;

    padding: 15px 38px;

    display: grid;

    grid-template-columns:
        minmax(80px, 1fr) auto minmax(80px, 1fr);

    align-items: center;

    gap: 30px;
}


/* =========================================================
   DECORATIVE LINES
========================================================= */

.footer-decoration {
    display: flex;

    align-items: center;

    gap: 14px;
}


.footer-decoration.right {
    justify-content: flex-end;
}


.footer-line {
    display: block;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(90deg,
            #a64cff,
            rgba(166, 76, 255, 0.05));
}


.footer-decoration.right .footer-line {
    background:
        linear-gradient(90deg,
            rgba(166, 76, 255, 0.05),
            #a64cff);
}


.footer-star {
    color: #c76fff;

    font-size: 1.15rem;

    text-shadow:
        0 0 15px rgba(199, 111, 255, 0.9);
}


/* =========================================================
   CENTER COPYRIGHT
========================================================= */

.footer-center {
    min-width: 410px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.footer-copyright {
    margin: 0;

    color: #a4a4ae;

    font-size: 0.8rem;

    line-height: 1.4;
}


.footer-copyright span {
    color: #b45cff;
}


/* =========================================================
   DEVELOPED BY
========================================================= */

.footer-developed {
    margin-top: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #ffffff;
}


.developed-text {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1rem;

    font-weight: 700;
}


.footer-developed strong {
    color: #bb64ff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: 0.01em;

    text-shadow:
        0 0 16px rgba(187, 100, 255, 0.25);
}


.developed-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 10px rgba(168, 85, 247, 0.9);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-top {
        padding:
            20px 25px;
    }


    .footer-bottom {
        padding:
            18px 25px;

        grid-template-columns:
            1fr;
    }


    .footer-decoration {
        display: none;
    }


    .footer-center {
        min-width: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding:
            12px;
    }


    .footer-top {
        min-height: auto;

        padding:
            25px 18px;

        flex-direction: column;

        text-align: center;
    }


    .footer-brand {
        flex-direction: column;
    }


    .footer-brand-content h3 {
        justify-content: center;
    }


    .footer-roles {
        justify-content: center;

        flex-wrap: wrap;
    }


    .footer-socials a {
        width: 46px;
        height: 46px;
    }


    .footer-bottom {
        min-height: auto;

        padding:
            20px 15px;
    }


    .footer-developed {
        flex-wrap: wrap;
    }


    .developed-text {
        font-size: 0.9rem;
    }


    .footer-developed strong {
        font-size: 1.05rem;
    }

}


.detail-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.detail-main-icon img {
    width: 72%;
    height: 72%;

    display: block;

    object-fit: contain;

    opacity: 1;
    visibility: visible;

    pointer-events: none;
}
/* =========================================================
   FINAL DESKTOP VIEWPORT-FIT SYSTEM
   Skills / Projects / Client Proof / Contact
   ---------------------------------------------------------
   Purpose:
   - each section opens completely below the fixed navbar
   - no internal page scroll is needed to understand one section
   - project heading + preview + details + 01/02/03 nav stay visible
   - compact professional laptop layout
   - mobile/tablet behaviour is handled separately by responsive.css
========================================================= */

:root {
    --desktop-header-offset: 94px;
    --desktop-panel-height: calc(100vh - var(--desktop-header-offset));
}

/* Anchor clicks land directly below the fixed glass navbar */
#skills,
#projects,
#testimonials,
#contact {
    scroll-margin-top: var(--desktop-header-offset);
}

/* The HTML hook added to the four requested sections */
.viewport-fit-section {
    height: var(--desktop-panel-height);
    min-height: 0;
    max-height: var(--desktop-panel-height);
    overflow: hidden;
}


/* =========================================================
   SKILLS — ONE LAPTOP SCREEN
========================================================= */

#skills.skills-section {
    padding: 10px 0 12px;
}

#skills .skills-container {
    width: min(calc(100% - 52px), 1480px);
    height: 100%;
    min-height: 0;

    display: grid;
    grid-template-columns:
        minmax(215px, 0.72fr)
        minmax(500px, 1.5fr)
        minmax(250px, 0.78fr);

    align-items: center;
    gap: 24px;
}

/* Left heading/details slightly more compact */
#skills .skills-label {
    margin-bottom: 8px;
    font-size: 0.64rem;
}

#skills .skills-heading {
    font-size: clamp(1.9rem, 2.75vw, 3rem);
    line-height: 1.01;
}

#skills .skills-heading-line {
    margin-top: 15px;
}

#skills .skills-description {
    max-width: 270px;
    margin-top: 13px;
    font-size: 0.78rem;
    line-height: 1.6;
}

#skills .skills-stats {
    margin-top: 22px;
    gap: 11px;
}

#skills .skills-stat {
    gap: 11px;
}

#skills .skills-stat-icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    font-size: 0.9rem;
}

#skills .skills-stat strong {
    font-size: 1.2rem;
}

#skills .skills-stat span {
    margin-top: 3px;
    font-size: 0.66rem;
}

/* Orbit kept fully visible inside the available height */
#skills .skills-orbit {
    width: min(100%, 610px);
    max-width: min(610px, calc(var(--desktop-panel-height) - 26px));
    max-height: calc(var(--desktop-panel-height) - 26px);
    margin-inline: auto;
}

/* Keep every technology node visually balanced */
#skills .tech-node {
    font-size: 0.68rem;
}

#skills .tech-icon {
    width: 48px;
    height: 48px;
}

#skills .tech-icon img {
    max-width: 39px;
    max-height: 39px;
    object-fit: contain;
}

/* Java belongs on the outer ring with C, Python and Node */
#skills .tech-java {
    left: 7%;
    bottom: 20%;
}

/* Right detail panel */
#skills .tech-details {
    min-height: 0;
    height: auto;
    max-height: calc(var(--desktop-panel-height) - 30px);

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

#skills .detail-main-icon {
    width: 86px;
    height: 86px;
}

#skills .detail-main-icon img {
    width: 68%;
    height: 68%;
    object-fit: contain;
}

#skills .tech-details h3 {
    margin-top: 17px;
    font-size: 1.55rem;
}

#skills .detail-category {
    margin-top: 8px;
    font-size: 0.78rem;
}

#skills .detail-divider {
    margin: 20px 0;
}

#skills #detailDescription {
    font-size: 0.84rem;
    line-height: 1.65;
}

#skills .proficiency {
    margin-top: 25px;
}

#skills .detail-features {
    margin-top: 23px;
    gap: 10px;
    font-size: 0.78rem;
}


/* =========================================================
   PROJECTS — COMPLETE SHOWCASE IN ONE SCREEN
========================================================= */

#projects.projects-section {
    height: var(--desktop-panel-height);
    min-height: 0;
    max-height: var(--desktop-panel-height);

    padding: 10px 0 10px;
    overflow: hidden;
}

#projects > .container {
    width: min(calc(100% - 42px), 1500px);
    height: 100%;
    min-height: 0;

    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    align-content: stretch;
    gap: 8px;
}

/* Header stays visible but does not consume the screen */
#projects .projects-header {
    margin: 0;
    gap: 20px;
    align-items: flex-end;
}

#projects .projects-header .section-label {
    margin-bottom: 4px;
    font-size: 0.62rem;
}

#projects .projects-title {
    font-size: clamp(1.9rem, 2.7vw, 3rem);
    line-height: 0.96;
}

#projects .projects-description {
    max-width: 680px;
    margin-top: 7px;
    font-size: 0.69rem;
    line-height: 1.45;
}

/* Main preview + information */
#projects .project-showcase {
    min-height: 0;
    height: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.82fr);
    align-items: stretch;
    gap: 28px;
}

#projects .project-preview-area,
#projects .project-info {
    min-height: 0;
    height: 100%;
}

#projects .project-preview-area {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

#projects .project-browser {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;

    display: flex;
    flex-direction: column;

    border-radius: 18px;
}

#projects .project-browser-top {
    min-height: 42px;
    height: 42px;
    padding: 0 15px;
}

#projects .browser-dot {
    width: 9px;
    height: 9px;
}

#projects .browser-domain {
    font-size: 0.66rem;
}

#projects .browser-open {
    width: 30px;
    height: 30px;
}

/* Critical: show the complete project screenshot rather than crop it */
#projects .project-browser-screen {
    position: relative;
    flex: 1;
    min-height: 0;
    height: auto;
    overflow: hidden;

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

    background: #07070c;
}

#projects .project-main-image {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: top center;

    transform: none;
    scale: 1;
}

#projects .project-floating-open {
    right: 16px;
    bottom: 16px;

    width: 54px;
    height: 54px;
}

#projects .project-floating-open svg {
    width: 22px;
    height: 22px;
}

#projects .project-reflection {
    display: none;
}

/* Right information kept fully visible */
#projects .project-info {
    position: relative;
    min-height: 0;

    justify-content: center;
    padding: 8px 0;
}

#projects .project-big-number {
    top: -14px;
    left: -12px;
    font-size: clamp(6rem, 9vw, 9rem);
}

#projects .project-status {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 0.58rem;
}

#projects .project-info h3 {
    font-size: clamp(1.65rem, 2.2vw, 2.5rem);
    line-height: 1.03;
}

#projects .project-category {
    margin-top: 12px;
    margin-bottom: 10px;
}

#projects .project-info-description {
    max-width: 500px;
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.55;
}

#projects .project-tech-stack {
    margin-top: 14px;
    gap: 7px;
}

#projects .project-tech-stack span {
    padding: 6px 10px;
    font-size: 0.59rem;
}

#projects .project-actions {
    margin-top: 16px;
    gap: 9px;
}

#projects .project-case-button,
#projects .project-github-button {
    min-height: 41px;
    padding: 0 14px;
    font-size: 0.67rem;
}

/* 01 / 02 / 03 selector bar always visible */
#projects .project-navigation {
    min-height: 58px;
    height: 58px;

    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns:
        46px
        repeat(3, minmax(0, 1fr))
        46px;

    gap: 8px;
}

#projects .project-arrow {
    width: 46px;
    height: 58px;
}

#projects .project-selector {
    min-width: 0;
    height: 58px;
    padding: 7px 10px;
    border-radius: 12px;
}

#projects .project-selector-image {
    width: 70px;
    height: 42px;
}

#projects .project-selector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

#projects .project-selector-number {
    font-size: 0.82rem;
}

#projects .project-selector-content strong {
    font-size: 0.68rem;
}

#projects .project-selector-category {
    margin-top: 2px;
    font-size: 0.53rem;
}

/* Thin progress line at the bottom */
#projects .project-progress {
    min-height: 15px;
    margin: 0;
}

#projects .project-progress-number,
#projects .project-progress-total {
    font-size: 0.61rem;
}


/* =========================================================
   CLIENT PROOF — ONE LAPTOP SCREEN
========================================================= */

#testimonials.client-network-section {
    height: var(--desktop-panel-height);
    min-height: 0;
    max-height: var(--desktop-panel-height);

    padding: 8px 0 9px;
    align-items: stretch;
}

#testimonials .client-network-container {
    width: min(calc(100% - 44px), 1480px);
    height: 100%;
    min-height: 0;

    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 5px;
}

#testimonials .client-network-header {
    margin: 0 auto 2px;
}

#testimonials .client-network-header .section-label {
    margin-bottom: 3px;
    font-size: 0.61rem;
}

#testimonials .client-network-title {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

#testimonials .client-network-description {
    margin-top: 4px;
    font-size: 0.65rem;
    line-height: 1.4;
}

#testimonials .client-network {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
}

/* Slightly reduce nodes/cards so all five reviews are visible */
#testimonials .client-card {
    width: 225px;
    padding: 12px 13px;
}

#testimonials .client-card-featured {
    width: 370px;
    padding: 12px 15px;
}

#testimonials .client-review {
    margin-top: 8px;
    font-size: 0.59rem;
    line-height: 1.42;
}

#testimonials .client-divider {
    margin: 8px 0 7px;
}

#testimonials .client-node {
    width: 66px;
    height: 66px;
}

#testimonials .client-avatar {
    width: 52px;
    height: 52px;
}

#testimonials .client-hub {
    width: 180px;
    height: 180px;
}

#testimonials .hub-core {
    width: 128px;
    height: 128px;
}

#testimonials .orbit-a {
    width: 155px;
    height: 155px;
}

#testimonials .orbit-b {
    width: 180px;
    height: 180px;
}

/* Bottom proof/stat strip remains visible */
#testimonials .client-stats {
    min-height: 52px;
    height: 52px;

    margin-top: 0;
    padding: 6px 14px;
}

#testimonials .client-stat {
    gap: 8px;
}

#testimonials .client-stat svg {
    width: 18px;
    height: 18px;
}

#testimonials .client-stat strong {
    font-size: 0.9rem;
}

#testimonials .client-stat span {
    font-size: 0.5rem;
}


/* =========================================================
   CONTACT — COMPLETE CARD IN ONE LAPTOP SCREEN
========================================================= */

#contact.contact-section {
    height: var(--desktop-panel-height);
    min-height: 0 !important;
    max-height: var(--desktop-panel-height);

    padding: 8px 0 !important;
    margin: 0 !important;

    align-items: stretch;
    overflow: hidden;
}

#contact .contact-container {
    width: min(calc(100% - 42px), 1480px);
    height: 100%;
    min-height: 0;
}

#contact .contact-shell {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;

    padding: 18px 22px;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(410px, 0.82fr);

    gap: 24px;

    border-radius: 22px;
}

#contact .contact-left {
    min-height: 0;
    height: 100%;
    padding: 3px 4px;
}

#contact .contact-label {
    padding: 5px 9px;
    font-size: 0.57rem;
}

#contact .contact-title {
    margin-top: 10px;
    font-size: clamp(1.8rem, 2.45vw, 2.65rem);
}

#contact .contact-description {
    margin-top: 8px;
    max-width: 390px;
    font-size: 0.63rem;
    line-height: 1.45;
}

#contact .contact-details {
    width: 300px;
    margin-top: 10px;
    gap: 0;
}

#contact .contact-detail {
    min-height: 40px;
    padding: 4px 0;
    gap: 10px;
}

#contact .contact-detail-icon {
    width: 32px;
    height: 32px;
}

#contact .contact-detail strong {
    margin-top: 2px;
    font-size: 0.59rem;
}

#contact .contact-orb-area {
    right: 0;
    bottom: -28px;

    width: 300px;
    height: 305px;
}

#contact .contact-globe {
    width: 130px;
    height: 130px;
}

#contact .contact-globe svg {
    width: 55px;
    height: 55px;
}

#contact .orbit-one {
    width: 185px;
    height: 185px;
}

#contact .orbit-two {
    width: 225px;
    height: 225px;
}

#contact .orbit-three {
    width: 270px;
    height: 270px;
}

/* Form */
#contact .contact-form-card {
    align-self: center;
    max-height: 100%;
    padding: 15px 16px;
    border-radius: 18px;
}

#contact .contact-form-header {
    margin-bottom: 9px;
}

#contact .contact-form-header h3 {
    font-size: 1rem;
}

#contact .contact-form {
    gap: 7px;
}

#contact .contact-form-row {
    gap: 7px;
}

#contact .contact-field {
    min-height: 42px;
    padding: 0 11px;
    border-radius: 9px;
}

#contact .contact-field input,
#contact .contact-field select,
#contact .contact-field textarea {
    font-size: 0.68rem;
}

#contact .contact-textarea {
    min-height: 88px;
    padding-top: 10px;
}

#contact .contact-textarea textarea {
    min-height: 64px;
}

#contact .contact-submit {
    min-height: 43px;
    font-size: 0.72rem;
}

#contact .contact-status {
    min-height: 42px;
    margin-top: 7px;
    padding: 6px 10px;
}

#contact .contact-status-item {
    gap: 6px;
}

#contact .contact-status-item svg {
    width: 15px;
    height: 15px;
}

#contact .contact-status-item span {
    font-size: 0.42rem;
}

#contact .contact-status-item strong {
    font-size: 0.47rem;
}


/* =========================================================
   GENERAL SECTION FIT POLISH
========================================================= */

#skills *,
#projects *,
#testimonials *,
#contact * {
    min-width: 0;
}

/* Prevent decorative effects from creating accidental page width */
#skills,
#projects,
#testimonials,
#contact {
    contain: layout paint;
}


/* =========================================================
   FINAL FIX — PROJECT NAVIGATION + MY PROCESS
   KEEP THIS AT THE VERY BOTTOM OF style.css
========================================================= */


/* =========================================================
   1. PROJECT NAVIGATION
========================================================= */

@media (min-width: 1100px) {

    #projects .project-navigation {
        width: 100%;

        display: grid;
        grid-template-columns:
            58px
            repeat(3, minmax(0, 1fr))
            58px;

        align-items: stretch;

        gap: 10px;

        margin: 10px 0 0;
        padding: 0;

        height: 76px;
        min-height: 76px;
    }


    /* LEFT / RIGHT ARROWS */

    #projects .project-arrow {
        width: 58px;
        height: 76px;
        min-width: 58px;
        min-height: 76px;

        padding: 0;

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

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

        border-radius: 14px;

        color: #a5a5b0;

        background:
            linear-gradient(
                145deg,
                rgba(18, 18, 27, 0.92),
                rgba(8, 8, 14, 0.96)
            );

        cursor: pointer;

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


    #projects .project-arrow svg {
        width: 21px;
        height: 21px;

        stroke-width: 1.8;
    }


    #projects .project-arrow:hover {
        color: #ffffff;

        transform: translateY(-2px);

        border-color:
            rgba(168, 85, 247, 0.55);

        background:
            linear-gradient(
                145deg,
                rgba(41, 22, 67, 0.9),
                rgba(12, 10, 20, 0.96)
            );

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.28),
            0 0 20px rgba(139, 61, 255, 0.12);
    }


    /* =====================================================
       PROJECT CARDS
    ===================================================== */

    #projects .project-selector {
        position: relative;

        width: 100%;
        min-width: 0;

        height: 76px;
        min-height: 76px;

        padding: 8px 14px;

        display: grid;

        grid-template-columns:
            92px minmax(0, 1fr);

        align-items: center;

        gap: 14px;

        overflow: hidden;

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

        border-radius: 14px;

        background:
            linear-gradient(
                145deg,
                rgba(16, 16, 25, 0.93),
                rgba(8, 8, 14, 0.96)
            );

        text-align: left;

        cursor: pointer;

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


    #projects .project-selector::before {
        content: "";

        position: absolute;
        inset: 0;

        opacity: 0;

        pointer-events: none;

        background:
            radial-gradient(
                260px circle at 18% 50%,
                rgba(139, 61, 255, 0.18),
                transparent 65%
            );

        transition:
            opacity 0.3s ease;
    }


    #projects .project-selector:hover,
    #projects .project-selector.active {
        transform: translateY(-2px);

        border-color:
            rgba(157, 75, 255, 0.55);

        background:
            linear-gradient(
                145deg,
                rgba(35, 19, 57, 0.88),
                rgba(10, 9, 17, 0.96)
            );

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.25),
            0 0 22px rgba(139, 61, 255, 0.08);
    }


    #projects .project-selector:hover::before,
    #projects .project-selector.active::before {
        opacity: 1;
    }


    /* PROJECT THUMBNAIL */

    #projects .project-selector-image {
        position: relative;

        z-index: 2;

        width: 92px;
        height: 56px;

        overflow: hidden;

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

        border-radius: 10px;

        background: #08080d;
    }


    #projects .project-selector-image img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: top center;

        transition:
            transform 0.4s cubic-bezier(
                0.22,
                1,
                0.36,
                1
            );
    }


    #projects .project-selector:hover
    .project-selector-image img,

    #projects .project-selector.active
    .project-selector-image img {

        transform: scale(1.055);
    }


    /* PROJECT TEXT */

    #projects .project-selector-content {
        position: relative;

        z-index: 2;

        min-width: 0;
    }


    #projects .project-selector-number {
        display: block;

        margin: 0 0 4px;

        color: #9f45ff;

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size: 0.9rem;

        font-weight: 700;

        line-height: 1;
    }


    #projects .project-selector-content strong {
        display: block;

        overflow: hidden;

        color: #ffffff;

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size: 0.78rem;

        font-weight: 600;

        line-height: 1.2;

        white-space: nowrap;

        text-overflow: ellipsis;
    }


    #projects .project-selector-category {
        display: block;

        margin-top: 3px;

        overflow: hidden;

        color: #858590;

        font-size: 0.58rem;

        line-height: 1.2;

        white-space: nowrap;

        text-overflow: ellipsis;
    }


    /* =====================================================
       PROJECT PROGRESS LINE
    ===================================================== */

    #projects .project-progress {
        width:
            min(100%, 720px);

        height: 14px;

        min-height: 14px;

        margin:
            5px auto 0;

        padding: 0;

        display: flex;

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


    #projects .project-progress-track {
        width: 100%;

        height: 2px;

        overflow: hidden;

        border-radius: 999px;

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


    #projects .project-progress-bar {
        height: 100%;

        border-radius: inherit;

        background:
            linear-gradient(
                90deg,
                #7d34f5,
                #b75cff
            );

        box-shadow:
            0 0 12px
            rgba(160, 73, 255, 0.55);
    }


    #projects .project-progress-number,
    #projects .project-progress-total {
        display: none !important;
    }
}



/* =========================================================
   2. MY PROCESS — FIX NAVBAR OVERLAP
========================================================= */

@media (min-width: 1100px) {

    /*
       IMPORTANT:
       Do NOT vertically center this section.
       That is one reason the heading was getting pushed
       behind the navbar.
    */

    #process.process-section {
        position: relative;

        height: auto !important;
        min-height: calc(100vh - 92px) !important;
        max-height: none !important;

        padding:
            112px 0 32px !important;

        display: block !important;

        overflow: visible !important;
    }


    #process .process-container {
        width:
            min(
                calc(100% - 60px),
                1500px
            );

        height: auto !important;
        min-height: 0;

        margin-inline: auto;

        display: block !important;
    }


    /* =====================================================
       PROCESS HEADER
    ===================================================== */

    #process .process-header {
        width: 100%;

        max-width: 900px;

        margin:
            0 auto 22px !important;

        padding: 0;

        text-align: center;

        transform: none !important;
    }


    #process .process-header .section-label,
    #process .section-label-compact {

        display: block;

        margin:
            0 0 8px !important;

        color: #a94cff;

        font-size: 0.66rem;

        font-weight: 700;

        letter-spacing: 0.16em;

        line-height: 1.2;

        text-transform: uppercase;
    }


    #process .process-title {
        margin: 0 !important;

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size:
            clamp(
                2.7rem,
                3.6vw,
                4rem
            ) !important;

        font-weight: 650;

        line-height: 1 !important;

        letter-spacing: -0.045em;
    }


    #process .process-description {
        max-width: 720px;

        margin:
            12px auto 0 !important;

        color: #999aa5;

        font-size: 0.84rem !important;

        line-height: 1.55 !important;
    }


    /* =====================================================
       PROCESS 01 / 02 / 03 / 04
    ===================================================== */

    #process .process-timeline {
        position: relative;

        width: 100%;

        margin:
            0 auto 18px !important;

        display: grid;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        align-items: start;
    }


    #process .process-step {
        min-height: 145px;

        padding:
            12px 20px !important;
    }


    /* =====================================================
       DASHBOARD
    ===================================================== */

    #process .process-dashboard {
        width: 100%;

        height: 310px !important;

        min-height: 310px !important;

        max-height: 310px !important;

        margin: 0;

        overflow: hidden;

        border-radius: 18px;
    }


    #process .process-sidebar {
        height: 100%;

        overflow: hidden;
    }


    #process .process-console {
        height: 100%;

        overflow: hidden;
    }


    #process .process-console-body {
        height:
            calc(100% - 42px) !important;

        min-height: 0 !important;

        overflow: hidden;
    }


    #process .process-current {
        height: 100%;

        overflow: hidden;
    }


    /* =====================================================
       BOTTOM IDEA → LAUNCH
    ===================================================== */

    #process .process-bottom {
        margin-top:
            12px !important;

        min-height: 54px;

        display: flex;

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



/* =========================================================
   3. SHORT LAPTOP SCREENS
   1366x768 / 1536x864 etc.
========================================================= */

@media
(min-width: 1100px)
and (max-height: 850px) {

    #process.process-section {
        padding-top:
            102px !important;

        padding-bottom:
            18px !important;
    }


    #process .process-header {
        margin-bottom:
            12px !important;
    }


    #process .process-header .section-label,
    #process .section-label-compact {

        margin-bottom:
            5px !important;
    }


    #process .process-title {
        font-size:
            clamp(
                2.35rem,
                3.1vw,
                3.25rem
            ) !important;
    }


    #process .process-description {
        margin-top:
            7px !important;

        font-size:
            0.76rem !important;
    }


    #process .process-timeline {
        margin-bottom:
            10px !important;
    }


    #process .process-step {
        min-height:
            125px;

        padding:
            8px 16px !important;
    }


    #process .process-dashboard {
        height:
            275px !important;

        min-height:
            275px !important;

        max-height:
            275px !important;
    }


    #process .process-bottom {
        min-height:
            45px;

        margin-top:
            8px !important;
    }
}

/* MORE TOP SPACE FOR MY JOURNEY */
#journey.journey-section {
    padding-top: 75px !important;
}

/* =========================================================
   PRATYUSH PORTFOLIO
   MASTER STYLES — CLEANED + IMPROVED
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: #ffffff;

    background: #050509;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}


/* =========================================================
   2. DESIGN SYSTEM
========================================================= */

:root {
    --bg: #050509;
    --bg-soft: #090a11;

    --surface: #0e1018;
    --surface-light: #131621;

    --text: #ffffff;
    --text-soft: #aaaab5;
    --text-muted: #747582;

    --purple: #8b3dff;
    --purple-light: #b96cff;
    --violet: #6f38ff;

    --border: rgba(255, 255, 255, 0.08);
    --border-purple: rgba(151, 80, 255, 0.4);

    --container: 1400px;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 30px;

    --header-height: 84px;
}


/* =========================================================
   3. GLOBAL
========================================================= */

body {
    background:
        radial-gradient(circle at 74% 15%,
            rgba(104, 48, 255, 0.16),
            transparent 28%),
        radial-gradient(circle at 20% 50%,
            rgba(123, 52, 255, 0.05),
            transparent 35%),
        #050509;
}

.container {
    width: min(calc(100% - 64px),
            var(--container));

    margin-inline: auto;
}


/* =========================================================
   4. LOADER
   TEMPORARILY HIDDEN
========================================================= */

#page-loader {
    display: none;
}


/* =========================================================
   5. BACKGROUND EFFECTS
========================================================= */

.website-background {
    position: fixed;
    inset: 0;

    z-index: -10;

    overflow: hidden;

    pointer-events: none;
}

.background-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.25;
}

.glow-1 {
    width: 600px;
    height: 600px;

    top: -220px;
    right: -160px;

    background:
        rgba(120, 55, 255, 0.32);
}

.glow-2 {
    width: 500px;
    height: 500px;

    left: -260px;
    top: 45%;

    background:
        rgba(128, 70, 255, 0.12);
}


/* =========================================================
   6. HEADER
========================================================= */
/* =========================================================
   PREMIUM iOS GLASS NAVBAR
========================================================= */

#header {
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 1000;

    width: min(calc(100% - 28px), 1600px);

    transform: translateX(-50%);

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

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025));

    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);

    overflow: hidden;
}

/* Soft glass reflection */
#header::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(110deg,
            rgba(255, 255, 255, 0.07),
            transparent 25%,
            transparent 70%,
            rgba(143, 76, 255, 0.05));
}

/* Keep navbar content above glass reflection */
#header .container {
    position: relative;
    z-index: 2;
}


#header::after {
    content: "";

    position: absolute;

    top: -70px;
    left: 12%;

    width: 300px;
    height: 120px;

    border-radius: 50%;

    background: rgba(155, 90, 255, 0.10);

    filter: blur(55px);

    pointer-events: none;
}

/* =========================================================
   7. NAVBAR
========================================================= */
.navbar {
    height: 68px;

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

    gap: 30px;
}


/* =========================================================
   8. LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight: 700;
}

.logo-symbol {
    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    border:
        1px solid rgba(151, 80, 255, 0.4);

    border-radius: 12px;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.22),
            rgba(139, 61, 255, 0.03));

    font-size: 1rem;
}

.logo-name {
    font-size: 1rem;
}


/* =========================================================
   9. DESKTOP NAVIGATION
========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-link {
    position: relative;

    padding: 8px 0;

    color: #9c9ca8;

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

    transition:
        color 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    transform: scaleX(0);

    transform-origin: right;

    background:
        linear-gradient(90deg,
            var(--purple),
            var(--purple-light));

    transition:
        transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);

    transform-origin: left;
}


/* =========================================================
   10. NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 46px;

    padding:
        0 19px;

    border:
        1px solid rgba(179, 103, 255, 0.45);

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            #7f39fa,
            #9f50ff);

    font-size: 0.86rem;
    font-weight: 600;

    box-shadow:
        0 16px 40px rgba(118, 49, 255, 0.2);

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

.nav-cta:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 22px 50px rgba(122, 52, 255, 0.35);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   11. MOBILE MENU BUTTON
========================================================= */

.menu-button {
    position: relative;

    display: none;

    width: 44px;
    height: 44px;

    border:
        1px solid var(--border);

    border-radius: 12px;

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

.menu-button span {
    position: absolute;

    left: 50%;

    width: 18px;
    height: 1.5px;

    background: #ffffff;

    transform:
        translateX(-50%);
}

.menu-button span:first-child {
    top: 17px;
}

.menu-button span:last-child {
    top: 25px;
}


/* =========================================================
   12. MOBILE MENU
========================================================= */

.mobile-menu {
    display: none;
}


/* =========================================================
   13. HERO SECTION
========================================================= */

.hero-section {
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top:
        calc(var(--header-height) + 35px);

    padding-bottom: 60px;
}


/* =========================================================
   14. HERO GRID
========================================================= */

.hero-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(480px, 0.95fr);

    align-items: center;

    gap:
        clamp(50px,
            7vw,
            110px);

    min-height:
        calc(100vh - var(--header-height) - 40px);
}


/* =========================================================
   15. HERO LEFT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;
}


/* =========================================================
   16. AVAILABLE TAG
========================================================= */

.availability-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    padding:
        7px 12px;

    border:
        1px solid rgba(67, 214, 135, 0.2);

    border-radius: 999px;

    color: #65db9b;

    background:
        rgba(35, 142, 89, 0.06);

    font-size: 0.72rem;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.availability-dot {
    position: relative;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #57df9c;

    box-shadow:
        0 0 12px rgba(87, 223, 156, 0.8);
}

.availability-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(87, 223, 156, 0.5);
    border-radius: 50%;
    animation: availabilityPulse 1.5s ease-out infinite;
}

.availability-dot {
    animation: availabilityBlink 1.5s ease-in-out infinite;
}

@keyframes availabilityBlink {

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

    50% {
        opacity: 0.62;
        transform: scale(0.88);
    }
}

@keyframes availabilityPulse {
    from {
        opacity: 0.8;
        transform: scale(0.35);
    }

    to {
        opacity: 0;
        transform: scale(1.8);
    }
}


/* =========================================================
   17. HERO EYEBROW
========================================================= */

.hero-eyebrow {
    margin-bottom: 14px;

    color: var(--purple-light);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}


/* =========================================================
   18. HERO TITLE
========================================================= */

.hero-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(4.5rem,
            8vw,
            8.2rem);

    font-weight: 700;

    line-height: 0.9;

    letter-spacing: -0.07em;
}

.hero-title span {
    color: transparent;

    background:
        linear-gradient(110deg,
            #ffffff,
            #c499ff 30%,
            #9b51ff 60%,
            #763cff);

    -webkit-background-clip: text;
    background-clip: text;
}


/* =========================================================
   19. PROFESSION
========================================================= */
.hero-profession {
    margin-top: 26px;

    min-height: 55px;

    display: flex;
    align-items: center;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(1.45rem,
            2.6vw,
            2.5rem);

    font-weight: 600;

    line-height: 1.25;

    letter-spacing: -0.035em;
}


/* TYPING TEXT */

#typing-text {
    margin: 0;

    color: transparent;

    background: linear-gradient(90deg,
            #ffffff 0%,
            #e4c8ff 45%,
            #a855f7 100%);

    -webkit-background-clip: text;
    background-clip: text;
}


/* BLINKING CURSOR */

.typing-cursor {
    margin-left: 5px !important;

    color: #b96cff !important;

    font-weight: 400;

    animation: typingBlink 0.75s infinite;
}


@keyframes typingBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

/* =========================================================
   20. HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 640px;

    margin-top: 26px;

    color: var(--text-soft);

    font-size: 1.02rem;

    line-height: 1.8;
}


/* =========================================================
   21. HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

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

    gap: 9px;

    min-height: 54px;

    padding:
        0 23px;

    border-radius: 14px;

    font-size: 0.9rem;
    font-weight: 600;

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

.primary-button {
    border:
        1px solid rgba(170, 95, 255, 0.5);

    background:
        linear-gradient(135deg,
            #7d38f8,
            #9d4fff);

    box-shadow:
        0 14px 42px rgba(118, 52, 255, 0.23);
}

.primary-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 22px 55px rgba(120, 50, 255, 0.35);
}

.secondary-button {
    border:
        1px solid rgba(255, 255, 255, 0.1);

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

.secondary-button:hover {
    transform:
        translateY(-3px);

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

.primary-button svg,
.secondary-button svg {
    width: 17px;
    height: 17px;
}


/* =========================================================
   22. HERO SOCIALS
========================================================= */
.hero-socials {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}

.hero-socials a {
    width: 46px;
    height: 46px;

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

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    color: #b9b9c7;

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

    text-decoration: none;

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

.hero-socials a i {
    font-size: 19px;
}

.hero-socials a:hover {
    color: #ffffff;

    transform: translateY(-5px) scale(1.05);

    border-color: #a855f7;

    background: rgba(168, 85, 247, 0.12);

    box-shadow:
        0 0 10px rgba(168, 85, 247, 0.25),
        0 0 30px rgba(168, 85, 247, 0.15);
}

/* =========================================================
   23. HERO RIGHT
========================================================= */

.hero-visual {
    position: relative;

    min-height: 640px;

    display: grid;
    place-items: center;

    isolation: isolate;
}


/* =========================================================
   24. HERO PURPLE GLOW
========================================================= */

.hero-purple-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: -5;

    width: 500px;
    height: 500px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(129, 60, 255, 0.33) 0%,
            rgba(93, 42, 200, 0.15) 40%,
            transparent 70%);

    filter: blur(20px);
}


/* =========================================================
   25. HERO CIRCLES
========================================================= */

.hero-circle {
    position: absolute;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}

.hero-circle-inner {
    z-index: -3;

    width: 420px;
    height: 420px;

    border:
        1px solid rgba(164, 96, 255, 0.45);

    box-shadow:
        inset 0 0 80px rgba(112, 48, 255, 0.08),
        0 0 60px rgba(112, 48, 255, 0.12);
}

.hero-circle-outer {
    z-index: -4;

    width: 510px;
    height: 510px;

    border:
        1px solid rgba(255, 255, 255, 0.035);
}


/* =========================================================
   26. HERO PORTRAIT
========================================================= */

.hero-portrait-wrapper {
    position: relative;

    z-index: 5;

    width:
        clamp(340px,
            31vw,
            455px);

    aspect-ratio: 0.82;

    overflow: hidden;

    border-radius:
        50% 50% 24% 24% / 34% 34% 17% 17%;

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

    background:
        linear-gradient(180deg,
            rgba(128, 64, 255, 0.13),
            rgba(12, 10, 20, 0.75));

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.5),
        0 0 70px rgba(109, 48, 255, 0.18);
}

.hero-portrait {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   27. HERO STATS
========================================================= */

.hero-stat {
    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 160px;

    padding:
        15px 17px;

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

    border-radius: 16px;

    background:
        linear-gradient(145deg,
            rgba(18, 19, 30, 0.82),
            rgba(9, 10, 17, 0.78));

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.32);
}

.stat-icon {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 11px;

    color: var(--purple-light);

    background:
        rgba(139, 61, 255, 0.09);
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.hero-stat strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.55rem;

    line-height: 1;
}

.hero-stat p {
    margin-top: 5px;

    color: #8d8e99;

    font-size: 0.66rem;
}


/* =========================================================
   28. STAT POSITIONS
========================================================= */

.stat-projects {
    top: 26%;
    left: -4%;
}

.stat-experience {
    top: 14%;
    right: -1%;
}

.stat-clients {
    right: -1%;
    bottom: 18%;
}


/* =========================================================
   29. HERO FLOOR
========================================================= */

.hero-floor {
    position: absolute;

    z-index: -6;

    right: -18%;
    bottom: 2%;

    width: 135%;
    height: 240px;

    perspective: 800px;

    pointer-events: none;
}

.hero-floor-grid {
    position: absolute;
    inset: 0;

    transform:
        rotateX(68deg);

    transform-origin:
        center bottom;

    opacity: 0.3;

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

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(to top,
            black,
            transparent 84%);
}

.hero-floor-glow {
    position: absolute;

    left: 50%;
    bottom: 15px;

    width: 420px;
    height: 80px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(123, 50, 255, 0.22);

    filter: blur(48px);
}


/* =========================================================
   31. FOOTER TEMP STYLE
========================================================= */

footer {
    padding:
        70px 32px;

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

    text-align: center;
}

footer h2 {
    font-family:
        "Space Grotesk",
        sans-serif;

    margin-bottom: 10px;
}

footer p {
    color: #777985;
}


/* =========================================================
   32. BACK TO TOP
========================================================= */

#back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 800;

    width: 48px;
    height: 48px;

    border:
        1px solid rgba(160, 90, 255, 0.35);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(14, 12, 22, 0.8);

    backdrop-filter: blur(12px);
}


/* =========================================================
   33. CURSOR TEMPORARILY HIDDEN
========================================================= */

.cursor-dot,
.cursor-circle {
    display: none;
}


/* =========================================================
   34. BASIC RESPONSIVE FIX
========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero-container {
        grid-template-columns:
            1fr 0.9fr;

        gap: 30px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-circle-inner {
        width: 350px;
        height: 350px;
    }

    .hero-circle-outer {
        width: 420px;
        height: 420px;
    }
}


@media (max-width: 850px) {

    .hero-section {
        padding-top:
            calc(var(--header-height) + 65px);
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        width: min(100%, 620px);

        margin-inline: auto;

        min-height: 620px;
    }
}


@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 30px);
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size:
            clamp(4rem,
                19vw,
                5.5rem);
    }

    .hero-profession {
        font-size:
            clamp(1.25rem,
                6vw,
                1.7rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-buttons {
        display: grid;

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

    .primary-button,
    .secondary-button {
        width: 100%;

        padding:
            0 12px;

        font-size: 0.82rem;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-portrait-wrapper {
        width:
            min(78vw,
                330px);
    }

    .hero-circle-inner {
        width:
            min(82vw,
                350px);

        height:
            min(82vw,
                350px);
    }

    .hero-circle-outer {
        width:
            min(96vw,
                410px);

        height:
            min(96vw,
                410px);
    }

    .hero-stat {
        min-width: 120px;

        padding:
            12px 13px;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .hero-stat p {
        font-size: 0.58rem;
    }

    .stat-projects {
        left: 0;
        top: 18%;
    }

    .stat-experience {
        right: 0;
        top: 11%;
    }

    .stat-clients {
        right: 0;
        bottom: 12%;
    }

    .hero-floor {
        display: none;
    }
}


@media (max-width: 390px) {

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

    .hero-visual {
        min-height: 520px;
    }

    .hero-stat {
        min-width: 108px;

        gap: 7px;
    }

    .stat-icon {
        width: 31px;
        height: 31px;
    }

    .stat-icon svg {
        width: 15px;
        height: 15px;
    }
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    position: relative;

    padding:
        120px 0;

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

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.008),
            rgba(139, 61, 255, 0.015));
}


.about-container {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap:
        clamp(60px,
            8vw,
            120px);
}


/* LEFT IMAGE */

.about-visual {
    position: relative;
}


.about-image-card {
    position: relative;

    width: 100%;

    max-width: 520px;

    margin-inline: auto;

    border:
        1px solid rgba(163, 91, 255, 0.34);

    border-radius: 24px;

    overflow: hidden;

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

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 45px rgba(117, 49, 255, 0.08);
}


.about-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    aspect-ratio: 1 / 1.05;
}


/* EXPERIENCE CARD */

.about-experience-card {
    position: absolute;

    left: -24px;
    bottom: 26px;

    width: 130px;

    padding: 18px;

    border:
        1px solid rgba(166, 91, 255, 0.38);

    border-radius: 16px;

    background:
        rgba(12, 10, 20, 0.86);

    backdrop-filter: blur(16px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35);
}


.about-experience-card strong {
    display: block;

    color: var(--purple-light);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 2rem;
}


.about-experience-card span {
    display: block;

    margin-top: 5px;

    color: var(--text-soft);

    font-size: 0.7rem;

    line-height: 1.4;
}


/* RIGHT CONTENT */

.about-label {
    margin-bottom: 15px;

    color: var(--purple-light);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.16em;
}

.about-title {
    max-width: 650px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2rem, 3.2vw, 3.4rem);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -0.035em;

    color: #ffffff;

    margin: 0;
}

.about-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c488ff,
            #8b3dff);

    -webkit-background-clip: text;
    background-clip: text;
}


.about-description {
    max-width: 640px;

    margin-top: 24px;

    color: var(--text-soft);

    font-size: 1rem;

    line-height: 1.8;
}


/* BULLET POINTS */

.about-points {
    margin-top: 26px;

    display: grid;

    gap: 12px;
}


.about-point {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 0.92rem;

    font-weight: 500;
}


.about-point span {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--purple-light);

    box-shadow:
        0 0 12px rgba(185, 108, 255, 0.8);
}


/* BUTTON */

.about-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    min-height: 52px;

    padding:
        0 22px;

    border:
        1px solid rgba(168, 92, 255, 0.4);

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #7e38f8,
            #a049ff);

    font-size: 0.88rem;

    font-weight: 600;

    box-shadow:
        0 15px 40px rgba(120, 50, 255, 0.18);

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


.about-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 22px 55px rgba(128, 54, 255, 0.3);
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services {
    position: relative;
    padding: 120px 0;

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

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.006),
            rgba(139, 61, 255, 0.015));
}

.services-container {
    width: min(calc(100% - 64px), 1400px);
    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.services-header {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #b96cff;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.services-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem,
            3.2vw,
            3.6rem);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.services-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c184ff,
            #8b3dff);

    -webkit-background-clip: text;
    background-clip: text;
}

.services-description {
    max-width: 600px;

    margin-top: 18px;

    color: #9d9eaa;

    font-size: 0.95rem;

    line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-height: 320px;

    padding: 28px;

    overflow: hidden;

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

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(19, 20, 31, 0.84),
            rgba(9, 10, 17, 0.78));

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

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);

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


/* subtle light inside card */

.service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(157, 76, 255, 0.14),
            transparent 48%);

    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(168, 85, 247, 0.48);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(139, 61, 255, 0.12);
}

@media (hover: none),
(pointer: coarse) {

    .service-card {
        transform: none !important;
    }
}



.service-tags {
    position: absolute;
    left: 28px;
    bottom: 24px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    padding: 7px 11px;

    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 999px;

    color: #b8a6cb;

    background: rgba(139, 61, 255, 0.055);

    font-size: 0.64rem;
    font-weight: 600;

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

.service-card:hover .service-tags span {
    color: #ffffff;

    transform: translateY(-2px);

    border-color: rgba(168, 85, 247, 0.42);

    background: rgba(139, 61, 255, 0.13);
}

/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color: rgba(255, 255, 255, 0.14);

    font-family: "Space Grotesk", sans-serif;

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.12em;
}


/* =========================================================
   ICON
========================================================= */

.service-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border:
        1px solid rgba(172, 94, 255, 0.22);

    border-radius: 14px;

    color: #b96cff;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.14),
            rgba(139, 61, 255, 0.04));

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.15rem;
    font-weight: 700;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

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

.service-card:hover .service-icon {
    transform:
        translateY(-4px) scale(1.05) rotate(-3deg);

    background:
        rgba(139, 61, 255, 0.18);

    box-shadow:
        0 0 28px rgba(139, 61, 255, 0.22);
}


/* =========================================================
   CARD TEXT
========================================================= */

.service-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.15rem;
    font-weight: 600;

    letter-spacing: -0.02em;
}

.service-card p {
    position: relative;
    z-index: 2;

    color: #999aa5;

    font-size: 0.84rem;

    line-height: 1.7;
}


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

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .services {
        padding: 90px 0;
    }

    .services-container {
        width:
            calc(100% - 30px);
    }

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

    .service-card {
        min-height: 290px;
    }
}

.service-card {
    transition:
        transform 0.25s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    transform-style: preserve-3d;
    will-change: transform;
}

/* =========================================================
   SKILLS / TECHNOLOGIES SECTION
========================================================= */

.skills-section {
    position: relative;
    padding: 130px 0 110px;

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

    background:
        radial-gradient(circle at 50% 45%,
            rgba(112, 45, 255, 0.07),
            transparent 34%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.004),
            rgba(139, 61, 255, 0.01));
}

.skills-container {
    width: min(calc(100% - 64px), 1500px);
    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(240px, 0.75fr) minmax(620px, 1.65fr) minmax(260px, 0.8fr);

    align-items: center;

    gap: 36px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.skills-left {
    position: relative;
    z-index: 4;
}

.skills-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #b96cff;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.skills-heading {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem, 3.3vw, 3.8rem);

    font-weight: 650;

    line-height: 1.04;

    letter-spacing: -0.045em;

    color: #ffffff;
}

.skills-heading span {
    display: block;

    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #c78dff 30%,
            #8b3dff 100%);

    -webkit-background-clip: text;
    background-clip: text;
}

.skills-heading-line {
    width: 48px;
    height: 2px;

    margin-top: 25px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #8b3dff,
            #c670ff);

    box-shadow:
        0 0 15px rgba(151, 74, 255, 0.45);
}

.skills-description {
    max-width: 290px;

    margin-top: 23px;

    color: #9c9dab;

    font-size: 0.93rem;

    line-height: 1.85;
}


/* =========================================================
   LEFT STATS
========================================================= */

.skills-stats {
    display: grid;
    gap: 18px;

    margin-top: 42px;
}

.skills-stat {
    display: flex;

    align-items: center;

    gap: 16px;
}

.skills-stat-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(158, 79, 255, 0.22);

    border-radius: 15px;

    color: #a957ff;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.12),
            rgba(255, 255, 255, 0.018));

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.skills-stat strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.45rem;

    line-height: 1;
}

.skills-stat span {
    display: block;

    margin-top: 5px;

    color: #9899a6;

    font-size: 0.76rem;
}

/* =========================================================
   SKILLS / TECHNOLOGIES SECTION
========================================================= */

.skills-section {
    position: relative;

    padding: 130px 0 110px;

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

    background:
        radial-gradient(circle at 50% 45%,
            rgba(112, 45, 255, 0.07),
            transparent 34%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.004),
            rgba(139, 61, 255, 0.01));
}


.skills-container {
    width: min(calc(100% - 64px), 1500px);

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(240px, 0.75fr) minmax(620px, 1.65fr) minmax(260px, 0.8fr);

    align-items: center;

    gap: 36px;
}



/* =========================================================
   LEFT CONTENT
========================================================= */

.skills-left {
    position: relative;
    z-index: 4;
}


.skills-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #b96cff;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.skills-heading {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2.2rem,
            3.3vw,
            3.8rem);

    font-weight: 650;

    line-height: 1.04;

    letter-spacing: -0.045em;

    color: #ffffff;
}


.skills-heading span {
    display: block;

    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #c78dff 30%,
            #8b3dff 100%);

    -webkit-background-clip: text;
    background-clip: text;
}


.skills-heading-line {
    width: 48px;
    height: 2px;

    margin-top: 25px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #8b3dff,
            #c670ff);

    box-shadow:
        0 0 15px rgba(151, 74, 255, 0.45);
}


.skills-description {
    max-width: 290px;

    margin-top: 23px;

    color: #9c9dab;

    font-size: 0.93rem;

    line-height: 1.85;
}



/* =========================================================
   LEFT STATS
========================================================= */

.skills-stats {
    display: grid;

    gap: 18px;

    margin-top: 42px;
}


.skills-stat {
    display: flex;

    align-items: center;

    gap: 16px;
}


.skills-stat-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(158, 79, 255, 0.22);

    border-radius: 15px;

    color: #a957ff;

    background:
        linear-gradient(145deg,
            rgba(139, 61, 255, 0.12),
            rgba(255, 255, 255, 0.018));

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}


.skills-stat strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.45rem;

    line-height: 1;
}


.skills-stat span {
    display: block;

    margin-top: 5px;

    color: #9899a6;

    font-size: 0.76rem;
}



/* =========================================================
   ORBIT AREA
========================================================= */

.skills-orbit {
    position: relative;

    width: 100%;

    max-width: 720px;

    aspect-ratio: 1 / 1;

    margin-inline: auto;

    display: grid;
    place-items: center;

    isolation: isolate;
}


.skills-orbit::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(117, 47, 255, 0.14),
            transparent 68%);

    filter: blur(35px);

    pointer-events: none;
}



/* =========================================================
   ORBIT RINGS
========================================================= */

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(143, 65, 255, 0.30);
    pointer-events: none;
}

.orbit-ring-1 {
    width: 260px;
    height: 260px;
}

.orbit-ring-2 {
    width: 380px;
    height: 380px;
}

.orbit-ring-3 {
    width: 500px;
    height: 500px;
}

.orbit-ring-4 {
    width: 620px;
    height: 620px;
}

/* Four ordered tracker dots — each dot follows its own ring toward the active technology */
.skill-tracker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 7;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center;
    pointer-events: none;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.tracker-1 {
    width: 260px;
    height: 260px;
    transition-delay: 0s;
}

.tracker-2 {
    width: 380px;
    height: 380px;
    transition-delay: 0.08s;
}

.tracker-3 {
    width: 500px;
    height: 500px;
    transition-delay: 0.16s;
}

.tracker-4 {
    width: 620px;
    height: 620px;
    transition-delay: 0.24s;
}

.skill-tracker span {
    position: absolute;
    top: 50%;
    right: -5px;
    width: 9px;
    height: 9px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #c66cff;
    box-shadow:
        0 0 8px #c66cff,
        0 0 18px rgba(179, 92, 255, 0.85),
        0 0 30px rgba(139, 61, 255, 0.55);
    animation: skillDotPulse 1.2s ease-in-out infinite;
}

@keyframes skillDotPulse {

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

    50% {
        opacity: 0.72;
        transform: translateY(-50%) scale(1.45);
    }
}

/* =========================================================
   CENTER CORE
========================================================= */

.skills-core {
    position: absolute;

    z-index: 8;

    width: 205px;
    height: 205px;

    display: flex;
    flex-direction: column;

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

    border:
        1px solid rgba(165, 83, 255, 0.45);

    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 30%,
            rgba(155, 74, 255, 0.18),
            rgba(15, 11, 26, 0.92) 55%,
            rgba(6, 6, 11, 0.98));

    box-shadow:
        0 0 35px rgba(135, 53, 255, 0.15),
        inset 0 0 40px rgba(126, 48, 255, 0.09);

    overflow: hidden;
}


.skills-core::before {
    content: "";

    position: absolute;

    inset: 12px;

    border-radius: 50%;

    border:
        1px dotted rgba(181, 110, 255, 0.16);
}


.skills-core span {
    position: relative;

    z-index: 2;

    margin-bottom: 7px;

    color: #a855f7;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.skills-core strong {
    position: relative;

    z-index: 2;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.7rem;

    line-height: 1.05;

    letter-spacing: -0.03em;
}


.skills-core .core-purple {
    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #c68cff,
            #8a3dff);

    -webkit-background-clip: text;
    background-clip: text;
}



/* =========================================================
   TECH NODES
========================================================= */

.tech-node {
    position: absolute;

    z-index: 10;

    min-width: 88px;

    padding: 0;

    border: 0;

    color: #ffffff;

    background: transparent;

    cursor: pointer;

    text-align: center;

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


.tech-node:hover {
    transform:
        translateY(-6px) scale(1.05);
}


.tech-node.active {
    filter:
        drop-shadow(0 0 22px rgba(154, 69, 255, 0.65));
}


.tech-icon {
    width: 72px;
    height: 72px;

    margin-inline: auto;

    display: grid;
    place-items: center;

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

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(145deg,
            rgba(22, 23, 34, 0.94),
            rgba(8, 8, 14, 0.92));

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.1rem;
    font-weight: 700;

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


.tech-node:hover .tech-icon,
.tech-node.active .tech-icon {
    transform: scale(1.08);

    border-color:
        rgba(168, 85, 247, 0.62);

    background:
        radial-gradient(circle at center,
            rgba(139, 61, 255, 0.22),
            rgba(9, 9, 16, 0.93));

    box-shadow:
        0 0 12px rgba(168, 85, 247, 0.65),
        0 0 28px rgba(139, 61, 255, 0.32),
        0 0 50px rgba(139, 61, 255, 0.14);
}


.tech-node>span {
    display: block;

    margin-top: 8px;

    color: #d0d0d8;

    font-size: 0.72rem;

    white-space: nowrap;
}



/* =========================================================
   ICON COLORS
========================================================= */

.html-icon {
    color: #ff6a32;
}

.css-icon {
    color: #4ea4ff;
}

.js-icon {
    color: #ffd83b;
}

.react-icon {
    color: #56d9ff;
}

.next-icon {
    color: #ffffff;
}

.node-icon {
    color: #75d348;
}

.mongo-icon {
    color: #6ee85c;
}

.python-icon {
    color: #5aa7ff;
}

.java-icon {
    color: #ff9e52;
}

.c-icon {
    color: #6c9fff;
}



/* =========================================================
   NODE POSITIONS
========================================================= */

.tech-html {
    top: 1%;
    left: 50%;

    transform: translateX(-50%);
}


.tech-css {
    top: 17%;
    left: 10%;
}


.tech-js {
    top: 15%;
    right: 10%;
}


.tech-react {
    top: 42%;
    left: 0;
}


.tech-next {
    top: 43%;
    right: 0;
}


.tech-nodejs {
    left: 23%;
    bottom: 7%;
}


.tech-mongodb {
    left: 50%;
    bottom: 0;

    transform: translateX(-50%);
}


.tech-python {
    right: 20%;
    bottom: 8%;
}


.tech-java {
    left: 9%;
    bottom: 18%;
}


.tech-c {
    right: 7%;
    bottom: 27%;
}


.tech-html:hover,
.tech-mongodb:hover {
    transform:
        translateX(-50%) translateY(-6px) scale(1.05);
}



/* =========================================================
   DETAILS CARD
========================================================= */

.tech-details {
    position: relative;

    min-height: 500px;

    padding: 32px 30px;

    overflow: hidden;

    border:
        1px solid rgba(157, 75, 255, 0.38);

    border-radius: 22px;

    background:
        linear-gradient(150deg,
            rgba(19, 15, 31, 0.92),
            rgba(7, 7, 13, 0.94));

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


.tech-details-glow {
    position: absolute;

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

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        rgba(133, 48, 255, 0.16);

    filter: blur(60px);

    pointer-events: none;
}


.detail-main-icon {
    position: relative;

    z-index: 2;

    width: 96px;
    height: 96px;

    margin-bottom: 28px;

    display: grid;
    place-items: center;

    border:
        2px solid rgba(165, 89, 255, 0.6);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(9, 8, 16, 0.82);

    font-family: "Space Grotesk", sans-serif;

    font-size: 2.3rem;

    box-shadow:
        0 0 25px rgba(145, 60, 255, 0.3),
        0 0 55px rgba(145, 60, 255, 0.14);
}


.tech-details h3 {
    position: relative;

    z-index: 2;

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 2rem;

    letter-spacing: -0.035em;
}


.detail-category {
    display: block;

    position: relative;

    z-index: 2;

    margin-top: 7px;

    color: #a855f7;

    font-size: 0.9rem;

    font-weight: 600;
}


.detail-divider {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 1px;

    margin: 24px 0;

    background:
        linear-gradient(90deg,
            rgba(168, 85, 247, 0.55),
            rgba(255, 255, 255, 0.05));
}


.tech-details p {
    position: relative;

    z-index: 2;

    color: #a4a5af;

    font-size: 0.91rem;

    line-height: 1.75;
}



/* =========================================================
   DETAILS CHANGE ANIMATION
========================================================= */

.tech-details.is-changing {
    animation:
        detailsChange 0.4s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


@keyframes detailsChange {

    0% {
        opacity: 0.4;

        transform:
            translateY(8px) scale(0.985);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}



/* =========================================================
   PROFICIENCY
========================================================= */

.proficiency {
    position: relative;

    z-index: 2;

    margin-top: 28px;
}


.proficiency-header {
    display: flex;

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

    margin-bottom: 10px;

    color: #b2b2bd;

    font-size: 0.76rem;
}


.proficiency-header strong {
    color: #ffffff;

    font-size: 0.78rem;
}


.proficiency-track {
    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 999px;

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


.proficiency-bar {
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #762dff,
            #b35cff);

    box-shadow:
        0 0 18px rgba(158, 76, 255, 0.35);

    transition:
        width 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}



/* =========================================================
   FEATURES
========================================================= */

.detail-features {
    position: relative;

    z-index: 2;

    display: grid;

    gap: 13px;

    margin-top: 28px;
}


.detail-features span {
    color: #acadb7;

    font-size: 0.78rem;
}



/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.skills-bottom {
    width: min(calc(100% - 64px), 920px);

    margin: 50px auto 0;

    padding: 20px 24px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 20px;

    border:
        1px solid rgba(159, 79, 255, 0.25);

    border-radius: 18px;

    background:
        linear-gradient(145deg,
            rgba(19, 17, 29, 0.72),
            rgba(9, 8, 15, 0.74));

    backdrop-filter: blur(15px);
}


.skills-bottom-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: #b96cff;

    background:
        rgba(139, 61, 255, 0.10);

    font-family:
        "Space Grotesk",
        sans-serif;
}


.skills-bottom p {
    color: #a4a5b0;

    font-size: 0.82rem;

    line-height: 1.6;
}


.skills-bottom strong {
    color: #ad61ff;
}


.skills-cta {
    min-height: 44px;

    padding:
        0 17px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    border:
        1px solid rgba(164, 84, 255, 0.4);

    border-radius: 12px;

    color: #bc76ff;

    font-size: 0.76rem;

    font-weight: 600;

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


.skills-cta:hover {
    color: #ffffff;

    background:
        rgba(139, 61, 255, 0.13);

    transform:
        translateY(-2px);
}


.skills-cta span {
    font-size: 1.1rem;
}



/* =========================================================
   RESPONSIVE — 1280px
========================================================= */

@media (max-width: 1280px) {

    .skills-container {
        grid-template-columns:
            240px minmax(520px, 1fr);
    }


    .tech-details {
        grid-column: 1 / -1;

        width: min(100%, 720px);

        min-height: auto;

        margin-inline: auto;
    }

}



/* =========================================================
   RESPONSIVE — 950px
========================================================= */

@media (max-width: 950px) {

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


    .skills-left {
        max-width: 650px;
    }


    .skills-description {
        max-width: 560px;
    }


    .skills-stats {
        grid-template-columns:
            repeat(3,
                minmax(0, 1fr));
    }


    .skills-orbit {
        max-width: 680px;
    }

}



/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .skills-section {
        padding: 90px 0;
    }


    .skills-container {
        width:
            calc(100% - 30px);

        gap: 55px;
    }


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


    .skills-orbit {
        max-width: 430px;
    }


    .orbit-ring-1 {
        width: 165px;
        height: 165px;
    }


    .orbit-ring-2 {
        width: 245px;
        height: 245px;
    }


    .orbit-ring-3 {
        width: 325px;
        height: 325px;
    }


    .orbit-ring-4 {
        width: 405px;
        height: 405px;
    }


    .skills-core {
        width: 140px;
        height: 140px;
    }


    .skills-core strong {
        font-size: 1.15rem;
    }


    .tech-icon {
        width: 50px;
        height: 50px;

        font-size: 0.82rem;
    }


    .tech-node {
        min-width: 62px;
    }


    .tech-node>span {
        font-size: 0.56rem;
    }


    .orbit-tracker {
        width: 88%;
    }


    .tech-details {
        display: block;

        padding: 25px;

        min-height: auto;
    }


    .detail-main-icon {
        width: 78px;
        height: 78px;

        font-size: 1.8rem;
    }


    .skills-bottom {
        width:
            calc(100% - 30px);

        grid-template-columns: 1fr;

        text-align: left;
    }


    .skills-cta {
        justify-self: start;
    }

}



/* =========================================================
   RESPONSIVE — 470px
========================================================= */

@media (max-width: 470px) {

    .skills-orbit {
        max-width: 350px;
    }


    .orbit-ring-1 {
        width: 135px;
        height: 135px;
    }


    .orbit-ring-2 {
        width: 200px;
        height: 200px;
    }


    .orbit-ring-3 {
        width: 270px;
        height: 270px;
    }


    .orbit-ring-4 {
        width: 335px;
        height: 335px;
    }


    .skills-core {
        width: 115px;
        height: 115px;
    }


    .skills-core span {
        font-size: 0.52rem;
    }


    .skills-core strong {
        font-size: 0.92rem;
    }


    .tech-icon {
        width: 42px;
        height: 42px;
    }


    .tech-node>span {
        display: none;
    }


    .tracker-dot {
        width: 8px;
        height: 8px;
    }

}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .orbit-ring,
    .tracker-dot {
        animation: none;
    }

    .orbit-tracker {
        transition: none;
    }

}

/* =========================================================
   PROJECTS / TESTIMONIALS / BLOG / CTA / CONTACT
   Base styling for the upgraded HTML structure
========================================================= */

#projects,
#testimonials,
#blog,
#cta,
#contact {
    position: relative;
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#projects {
    background:
        radial-gradient(circle at 80% 20%, rgba(139, 61, 255, 0.06), transparent 26%),
        #07070d;
}

.projects-header {
    max-width: 760px;
}

.projects-title,
#testimonials h2,
#blog h2,
#cta h2,
#contact h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 4.4rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.projects-title span,
#contact h2 span {
    color: transparent;
    background: linear-gradient(90deg, #ffffff, #c488ff, #8b3dff);
    -webkit-background-clip: text;
    background-clip: text;
}

.projects-description,
#cta p,
#contact p {
    max-width: 680px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}

#cta .container {
    padding: clamp(32px, 5vw, 64px);
    overflow: hidden;
    border: 1px solid rgba(156, 78, 255, 0.25);
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 50%, rgba(139, 61, 255, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(19, 14, 32, 0.92), rgba(7, 7, 13, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.25);
}

#cta .primary-button,
#contact .primary-button {
    margin-top: 28px;
}

/* =========================================================
   REMOVE LARGE GAP BEFORE FOOTER
========================================================= */

#contact,
.contact-section {
    min-height: auto !important;
    height: auto !important;

    margin-bottom: 0 !important;

    padding-bottom: 25px !important;
}


.site-footer {
    margin-top: 0 !important;

    padding-top: 12px !important;
}


/* If your CTA section is before contact */
#cta,
.mini-cta-section {
    margin-bottom: 0 !important;
}

.contact-section {
    background:
        radial-gradient(circle at 20% 40%, rgba(139, 61, 255, 0.08), transparent 30%),
        #06060b;
}

footer {
    padding: 70px 0 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.006), rgba(0, 0, 0, 0.14));
    text-align: left;
}

footer .container {
    display: grid;
    gap: 10px;
}

footer h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

footer p {
    max-width: 680px;
    color: #777985;
    font-size: 0.78rem;
    line-height: 1.6;
}

@media (max-width: 600px) {

    #projects,
    #testimonials,
    #blog,
    #cta,
    #contact {
        padding: 85px 0;
    }
}

/* =========================================================
   14. FEATURED PROJECTS
========================================================= */

.projects-section {
    position: relative;

    padding: 130px 0 120px;

    overflow: hidden;
    height: 100vh;
    /* Ensure it doesn't break on extremely tiny laptop screens */
    min-height: 700px; 
    /* Reduce the original 110px padding to save vertical space */
    padding: calc(var(--header-height) + 20px) 0 30px;

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

    background:
        radial-gradient(circle at 72% 16%,
            rgba(139, 61, 255, 0.085),
            transparent 30%),
            
        linear-gradient(180deg,
            #07070d 0%,
            #080711 100%);
}


/* =========================================================
   PROJECT HEADER
========================================================= */
.projects-section .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Distribute the header, showcase, and navigation evenly */
    justify-content: space-between; 
}
.projects-header {
    display: flex;

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

    gap: 40px;

    margin-bottom: 20px;
}


.projects-header-text {
    max-width: 760px;
}


.projects-title {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(2rem,
            3.5vw,
            3.5rem);

    font-weight: 650;

    line-height: 1;

    letter-spacing: -0.055em;
}


.projects-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #d0a0ff 30%,
            #9f50ff 65%,
            #7e39ff 100%);

    -webkit-background-clip: text;
    background-clip: text;
}


.projects-description {
    max-width: 700px;

    margin-top: 18px;

    color: #9fa0ab;

    font-size: 0.95rem;

    line-height: 1.75;
}


.projects-view-all {
    min-height: 48px;

    padding: 0 18px;

    display: inline-flex;

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

    gap: 10px;

    flex-shrink: 0;

    border:
        1px solid rgba(164, 84, 255, 0.30);

    border-radius: 12px;

    color: #c27aff;

    background:
        rgba(139, 61, 255, 0.035);

    font-size: 0.78rem;
    font-weight: 600;

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.projects-view-all:hover {
    transform: translateY(-3px);

    color: #ffffff;

    border-color:
        rgba(185, 108, 255, 0.58);

    background:
        rgba(139, 61, 255, 0.10);

    box-shadow:
        0 16px 35px rgba(93, 39, 190, 0.13);
}


.projects-view-all svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   MAIN PROJECT SHOWCASE
========================================================= */

.project-showcase {
    flex: 1; /* Takes up all remaining vertical space */
    display: flex;
    align-items: center;
    gap: 40px;
    /* min-height: 0 is crucial to prevent flex children from overflowing */
    min-height: 0; 
}


/* =========================================================
   LEFT PROJECT PREVIEW AREA
========================================================= */

.project-preview-area, 
.project-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.project-browser {
    position: relative;

    z-index: 3;

    overflow: hidden;

    border:
        1px solid rgba(164, 84, 255, 0.48);

    border-radius: 24px;

    background:
        linear-gradient(145deg,
            rgba(17, 16, 27, 0.96),
            rgba(8, 8, 14, 0.96));

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.48),

        0 0 50px rgba(117, 49, 255, 0.10),

        inset 0 1px 0 rgba(255, 255, 255, 0.045);

    transform-style: preserve-3d;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),

        border-color 0.35s ease,

        box-shadow 0.45s ease;
}


.project-browser:hover {
    border-color:
        rgba(186, 104, 255, 0.70);

    box-shadow:
        0 42px 120px rgba(0, 0, 0, 0.55),

        0 0 75px rgba(127, 55, 255, 0.16);
}


/* =========================================================
   BROWSER TOP BAR
========================================================= */

.project-browser-top {
    min-height: 58px;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

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

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.028),
            rgba(255, 255, 255, 0.008));
}


.browser-dots {
    display: flex;

    align-items: center;

    gap: 8px;
}


.browser-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;
}


.browser-dot.red {
    background: #ff625b;

    box-shadow:
        0 0 10px rgba(255, 98, 91, 0.28);
}


.browser-dot.yellow {
    background: #f7c84b;

    box-shadow:
        0 0 10px rgba(247, 200, 75, 0.28);
}


.browser-dot.green {
    background: #65cc63;

    box-shadow:
        0 0 10px rgba(101, 204, 99, 0.28);
}


.browser-domain {
    min-width: 0;

    display: flex;

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

    gap: 8px;

    color: #aaaab4;

    font-size: 0.74rem;
}


.browser-domain svg {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    color: #777985;
}


.browser-domain span {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.browser-open {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

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

    border-radius: 9px;

    color: #a5a6b0;

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

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


.browser-open:hover {
    color: #ffffff;

    transform:
        translateY(-2px);

    border-color:
        rgba(175, 91, 255, 0.4);

    background:
        rgba(139, 61, 255, 0.09);
}


.browser-open svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   PROJECT SCREEN
========================================================= */
.project-browser-screen {
    flex: 1;
    overflow: hidden;
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space without squishing */
    object-position: top; 
}
.project-browser {
    max-height: 100%;
    display: flex;
    flex-direction: column;
}





.project-screen-glow {
    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(420px circle at var(--project-x, 50%) var(--project-y, 50%),

            rgba(165, 85, 255, 0.14),

            transparent 45%);

    transition:
        opacity 0.3s ease;
}


.project-browser-screen:hover .project-screen-glow {
    opacity: 1;
}


/* =========================================================
   FLOATING PROJECT BUTTON
========================================================= */

.project-floating-open {
    position: absolute;

    right: 24px;
    bottom: 24px;

    width: 74px;
    height: 74px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(220, 183, 255, 0.55);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle at 35% 30%,
            #a757ff,
            #742be4 68%,
            #5422aa);

    box-shadow:
        0 0 0 8px rgba(139, 61, 255, 0.08),

        0 0 40px rgba(143, 56, 255, 0.42),

        0 20px 35px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),

        box-shadow 0.35s ease;
}


.project-floating-open:hover {
    transform:
        translateY(-5px) rotate(7deg) scale(1.06);

    box-shadow:
        0 0 0 10px rgba(139, 61, 255, 0.10),

        0 0 55px rgba(143, 56, 255, 0.55),

        0 24px 45px rgba(0, 0, 0, 0.38);
}


.project-floating-open svg {
    width: 29px;
    height: 29px;
}


/* =========================================================
   PROJECT REFLECTION
========================================================= */

.project-reflection {
    position: absolute;

    left: 5%;
    right: 5%;

    bottom: -48px;

    height: 70px;

    z-index: 1;

    border-radius: 50%;

    background:
        rgba(128, 48, 255, 0.16);

    filter:
        blur(38px);

    pointer-events: none;
}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
    position: relative;

    min-height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.project-big-number {
    position: absolute;

    top: -45px;
    left: -22px;

    z-index: -1;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(8rem,
            13vw,
            13rem);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.08em;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(158, 76, 255, 0.22);

    opacity: 0.82;

    pointer-events: none;
}


.project-status {
    width: fit-content;

    margin-bottom: 22px;

    padding:
        8px 12px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid rgba(164, 84, 255, 0.20);

    border-radius: 9px;

    color: #b65dff;

    background:
        rgba(139, 61, 255, 0.06);

    font-size: 0.66rem;

    font-weight: 700;

    letter-spacing: 0.06em;
}

.project-navigation {
    margin-top: 20px;
    padding-top: 15px;
}

/* =========================================================
   SAFEGUARDS FOR SHORT SCREENS
========================================================= */
@media (max-height: 750px) {
    /* Hide non-essential text if the laptop screen is extremely short */
    .projects-description {
        display: none; 
    }
    
    .project-category {
        margin-bottom: 10px;
    }
    
    .project-info-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.project-status-dot {
    position: relative;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #b85fff;

    box-shadow:
        0 0 12px rgba(184, 95, 255, 0.85);
}


.project-status-dot::before {
    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid rgba(184, 95, 255, 0.45);

    border-radius: 50%;

    animation:
        projectStatusPulse 1.8s ease-out infinite;
}


@keyframes projectStatusPulse {

    from {
        opacity: 0.8;

        transform:
            scale(0.4);
    }

    to {
        opacity: 0;

        transform:
            scale(1.8);
    }
}


.project-info h3 {
    max-width: 520px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2rem,
            3.2vw,
            3.25rem);

    font-weight: 650;

    line-height: 1.05;

    letter-spacing: -0.045em;
}


.project-category {
    margin-top: 17px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #aaaab6;

    font-size: 0.84rem;
}


.project-category svg {
    width: 18px;
    height: 18px;

    color: #a855f7;
}


.project-info-description {
    max-width: 510px;

    margin-top: 24px;

    color: #a1a2ac;

    font-size: 0.93rem;

    line-height: 1.8;
}


/* =========================================================
   PROJECT TECH STACK
========================================================= */

.project-tech-stack {
    margin-top: 26px;

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.project-tech-stack span {
    padding:
        7px 12px;

    border:
        1px solid rgba(165, 84, 255, 0.18);

    border-radius: 9px;

    color: #c0a6d7;

    background:
        rgba(139, 61, 255, 0.045);

    font-size: 0.68rem;

    font-weight: 600;

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


.project-tech-stack span:hover {
    color: #ffffff;

    transform:
        translateY(-2px);

    border-color:
        rgba(168, 85, 247, 0.40);

    background:
        rgba(139, 61, 255, 0.11);
}


/* =========================================================
   PROJECT ACTIONS
========================================================= */

.project-actions {
    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}


.project-case-button {
    min-height: 52px;

    padding:
        0 22px;

    display: inline-flex;

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

    gap: 12px;

    border:
        1px solid rgba(169, 86, 255, 0.48);

    border-radius: 13px;

    color: #c777ff;

    background:
        linear-gradient(135deg,
            rgba(139, 61, 255, 0.095),
            rgba(139, 61, 255, 0.02));

    font-size: 0.78rem;

    font-weight: 600;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.22,
            1,
            0.36,
            1),

        box-shadow 0.3s ease;
}


.project-case-button:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    background:
        rgba(139, 61, 255, 0.14);

    box-shadow:
        0 18px 42px rgba(104, 39, 221, 0.18);
}


.project-case-button svg {
    width: 17px;
    height: 17px;

    transition:
        transform 0.3s ease;
}


.project-case-button:hover svg {
    transform:
        translateX(4px);
}


.project-github-button {
    min-height: 52px;

    padding:
        0 19px;

    display: inline-flex;

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

    gap: 9px;

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

    border-radius: 13px;

    color: #b3b4bd;

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

    font-size: 0.77rem;
    font-weight: 600;

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


.project-github-button:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    border-color:
        rgba(255, 255, 255, 0.20);

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


.project-github-button i {
    font-size: 17px;
}


/* =========================================================
   PROJECT NAVIGATION
========================================================= */

.project-navigation {
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        auto repeat(3,
            minmax(0, 1fr)) auto;

    align-items: stretch;

    gap: 12px;
}


.project-arrow {
    width: 54px;

    min-height: 126px;

    display: grid;

    place-items: center;

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

    border-radius: 18px;

    color: #aaaab5;

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

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


.project-arrow:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    border-color:
        rgba(163, 83, 255, 0.38);

    background:
        rgba(139, 61, 255, 0.075);

    box-shadow:
        0 14px 32px rgba(80, 28, 180, 0.12);
}


.project-arrow svg {
    width: 20px;
    height: 20px;
}


/* =========================================================
   PROJECT SELECTOR CARDS
========================================================= */

.project-selector {
    position: relative;

    min-width: 0;

    padding:
        16px;

    display: grid;

    grid-template-columns:
        110px minmax(0, 1fr);

    align-items: center;

    gap: 16px;

    overflow: hidden;

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

    border-radius: 16px;

    text-align: left;

    background:
        linear-gradient(145deg,
            rgba(17, 18, 28, 0.80),
            rgba(9, 10, 16, 0.78));

    transition:
        transform 0.35s cubic-bezier(0.22,
            1,
            0.36,
            1),

        border-color 0.35s ease,

        background 0.35s ease,

        box-shadow 0.35s ease;
}


.project-selector::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(300px circle at 15% 50%,

            rgba(139, 61, 255, 0.18),

            transparent 55%);

    transition:
        opacity 0.35s ease;
}


.project-selector:hover,
.project-selector.active {
    transform:
        translateY(-4px);

    border-color:
        rgba(165, 81, 255, 0.50);

    background:
        linear-gradient(145deg,
            rgba(39, 20, 65, 0.82),
            rgba(11, 10, 19, 0.86));

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.30),

        0 0 30px rgba(104, 39, 221, 0.10);
}


.project-selector:hover::before,
.project-selector.active::before {
    opacity: 1;
}


.project-selector-image {
    position: relative;

    z-index: 2;

    height: 78px;

    overflow: hidden;

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

    border-radius: 11px;

    background: #090910;
}


.project-selector-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;

    transition:
        transform 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


.project-selector:hover .project-selector-image img,
.project-selector.active .project-selector-image img {
    transform:
        scale(1.07);
}


.project-selector-content {
    position: relative;

    z-index: 2;

    min-width: 0;
}


.project-selector-number {
    display: block;

    margin-bottom: 8px;

    color: #943dff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.25rem;

    font-weight: 650;
}


.project-selector strong {
    display: block;

    overflow: hidden;

    color: #ffffff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.88rem;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.project-selector-category {
    display: block;

    margin-top: 5px;

    overflow: hidden;

    color: #8f909b;

    font-size: 0.67rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   PROJECT PROGRESS
========================================================= */

.project-progress {
    width: min(100%,
            720px);

    margin:
        38px auto 0;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 16px;
}


.project-progress-number {
    color: #9f45ff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.82rem;

    font-weight: 700;
}


.project-progress-total {
    color: #70717b;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.82rem;

    font-weight: 600;
}


.project-progress-track {
    position: relative;

    height: 2px;

    overflow: hidden;

    border-radius: 999px;

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


.project-progress-bar {
    width: 33.333%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7d34f5,
            #b75cff);

    box-shadow:
        0 0 14px rgba(160, 73, 255, 0.6);

    transition:
        width 0.6s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


/* =========================================================
   PROJECT CHANGE ANIMATIONS
========================================================= */

.project-showcase.project-changing .project-browser {
    animation:
        projectPreviewChange 0.55s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


.project-showcase.project-changing .project-info {
    animation:
        projectInfoChange 0.55s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


@keyframes projectPreviewChange {

    0% {
        opacity: 0.45;

        transform:
            translateY(10px) scale(0.985);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}


@keyframes projectInfoChange {

    0% {
        opacity: 0;

        transform:
            translateX(18px);
    }

    100% {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =========================================================
   RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

    .project-showcase {
        grid-template-columns:
            minmax(0, 1.2fr) minmax(300px, 0.8fr);

        gap: 45px;
    }


    .project-browser-screen,
    .project-main-image {
        min-height: 430px;
    }


    .project-selector {
        grid-template-columns:
            88px minmax(0, 1fr);
    }


    .project-selector-image {
        height: 67px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 950px) {

    .projects-header {
        align-items: flex-start;

        flex-direction: column;
    }


    .project-showcase {
        grid-template-columns:
            1fr;

        gap: 60px;
    }


    .project-preview-area {
        width: 100%;
    }


    .project-info {
        min-height: auto;

        max-width: 720px;
    }


    .project-big-number {
        top: -70px;

        left: auto;
        right: 0;

        font-size:
            clamp(7rem,
                20vw,
                11rem);
    }


    .project-navigation {
        grid-template-columns:
            repeat(3,
                minmax(0,
                    1fr));

        gap: 12px;
    }


    .project-arrow {
        width: 48px;

        min-height: 48px;
    }


    .project-prev {
        grid-column: 1;
        grid-row: 2;

        justify-self: start;
    }


    .project-next {
        grid-column: 3;
        grid-row: 2;

        justify-self: end;
    }

}


/* =========================================================
   RESPONSIVE — 700px
========================================================= */

@media (max-width: 700px) {

    .projects-section {
        padding:
            95px 0;
    }


    .project-browser {
        border-radius: 18px;
    }


    .project-browser-top {
        min-height: 50px;

        padding:
            0 14px;
    }


    .browser-dot {
        width: 9px;
        height: 9px;
    }


    .browser-domain {
        font-size: 0.65rem;
    }


    .project-browser-screen,
    .project-main-image {
        min-height: 350px;
    }


    .project-floating-open {
        right: 17px;
        bottom: 17px;

        width: 58px;
        height: 58px;
    }


    .project-floating-open svg {
        width: 23px;
        height: 23px;
    }


    .project-info h3 {
        font-size:
            clamp(2rem,
                9vw,
                2.7rem);
    }


    .project-info-description {
        font-size: 0.87rem;
    }


    .project-navigation {
        display: flex;

        overflow-x: auto;

        gap: 10px;

        padding:
            5px 2px 16px;

        scrollbar-width: none;

        scroll-snap-type:
            x mandatory;
    }


    .project-navigation::-webkit-scrollbar {
        display: none;
    }


    .project-selector {
        min-width: 280px;

        scroll-snap-align: start;
    }


    .project-arrow {
        min-width: 50px;

        min-height: 110px;
    }


    .project-prev,
    .project-next {
        grid-column: auto;
        grid-row: auto;

        justify-self: auto;
    }

}


/* =========================================================
   RESPONSIVE — 500px
========================================================= */

@media (max-width: 500px) {

    .projects-header {
        margin-bottom: 38px;
    }


    .projects-view-all {
        width: 100%;
    }


    .project-browser-screen,
    .project-main-image {
        min-height: 275px;
    }


    .project-actions {
        display: grid;

        grid-template-columns:
            1fr;
    }


    .project-case-button,
    .project-github-button {
        width: 100%;
    }


    .project-selector {
        min-width: 250px;

        grid-template-columns:
            76px minmax(0,
                1fr);
    }


    .project-selector-image {
        height: 62px;
    }


    .project-progress {
        width: 100%;
    }

}

/* =========================================================
   06. MY PROCESS — ONE SCREEN VIEW
========================================================= */

.process-section {
    position: relative;

    min-height: 100vh;

    padding:
        28px 0 24px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(circle at 50% 42%,
            rgba(122, 46, 255, 0.09),
            transparent 34%),
        linear-gradient(180deg,
            #06060b,
            #080711);
}


.process-container {
    width:
        min(calc(100% - 60px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.process-header {
    max-width: 860px;

    margin:
        0 auto 22px;

    text-align: center;
}


.process-header .section-label {
    margin-bottom: 8px;
}


.process-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.4rem,
            4vw,
            4.2rem);

    font-weight: 650;

    line-height: 0.98;

    letter-spacing: -0.05em;
}


.process-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c68cff,
            #8b3dff);

    -webkit-background-clip: text;
    background-clip: text;
}


.process-description {
    max-width: 680px;

    margin:
        12px auto 0;

    color: #9d9eaa;

    font-size: 0.86rem;

    line-height: 1.55;
}


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

.process-timeline {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,
            minmax(0, 1fr));

    gap: 20px;

    align-items: start;

    margin-bottom: 20px;

    padding:
        0 24px;
}


/* Background line */

.process-line {
    position: absolute;

    top: 76px;
    left: 12%;

    width: 76%;
    height: 3px;

    overflow: hidden;

    border-radius: 999px;

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

    z-index: 1;
}


.process-line-progress {
    width: 25%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7c35f6,
            #b95cff);

    box-shadow:
        0 0 16px rgba(168,
            85,
            247,
            0.7);

    transition:
        width 0.6s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


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

.process-step {
    position: relative;

    z-index: 3;

    min-height: 148px;

    padding:
        12px 14px;

    text-align: center;

    border:
        1px solid transparent;

    border-radius: 18px;

    background:
        transparent;

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


.process-step:hover {
    transform:
        translateY(-4px);
}


.process-step.active {
    border-color:
        rgba(169,
            84,
            255,
            0.48);

    background:
        linear-gradient(145deg,
            rgba(38, 20, 62, 0.78),
            rgba(12, 10, 20, 0.8));

    box-shadow:
        0 0 34px rgba(123,
            47,
            255,
            0.14);
}


.process-number {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255,
            255,
            255,
            0.26);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.25rem;

    font-weight: 700;
}


.process-step.active .process-number {
    color: #a855f7;
}


.process-icon {
    width: 58px;
    height: 58px;

    margin:
        0 auto 8px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(185,
            108,
            255,
            0.38);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(15,
            13,
            25,
            0.92);

    box-shadow:
        inset 0 0 25px rgba(139,
            61,
            255,
            0.05);

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


.process-step.active .process-icon {
    transform:
        scale(1.06);

    background:
        radial-gradient(circle,
            rgba(139,
                61,
                255,
                0.30),
            rgba(12,
                10,
                20,
                0.94));

    box-shadow:
        0 0 25px rgba(139,
            61,
            255,
            0.38);
}


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


.process-step h3 {
    margin-top: 3px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.9rem;

    font-weight: 600;

    text-transform: uppercase;
}


.process-step p {
    max-width: 190px;

    margin:
        7px auto 0;

    color: #9a9ba6;

    font-size: 0.68rem;

    line-height: 1.45;
}


/* =========================================================
   DASHBOARD
========================================================= */

.process-dashboard {
    display: grid;

    grid-template-columns:
        230px minmax(0, 1fr) 280px;

    min-height: 305px;

    overflow: hidden;

    border:
        1px solid rgba(154,
            73,
            255,
            0.30);

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(16,
                14,
                27,
                0.92),
            rgba(8,
                8,
                14,
                0.96));

    box-shadow:
        0 25px 70px rgba(0,
            0,
            0,
            0.35);
}


/* =========================================================
   LEFT SIDEBAR
========================================================= */

.process-sidebar {
    padding:
        20px 18px;

    border-right:
        1px solid rgba(255,
            255,
            255,
            0.06);
}


.process-dashboard-label {
    display: block;

    margin-bottom: 15px;

    color: #b35cff;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.07em;
}


.process-nav-item {
    width: 100%;

    min-height: 47px;

    margin-bottom: 8px;

    padding:
        0 12px;

    display: grid;

    grid-template-columns:
        34px 28px 1fr;

    align-items: center;

    gap: 8px;

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

    border-radius: 10px;

    color: #aaaab5;

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

    text-align: left;

    font-size: 0.72rem;

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


.process-nav-item:hover,
.process-nav-item.active {
    color: #ffffff;

    transform:
        translateX(3px);

    border-color:
        rgba(168,
            85,
            247,
            0.42);

    background:
        rgba(139,
            61,
            255,
            0.10);
}


.process-nav-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: #b35cff;

    background:
        rgba(139,
            61,
            255,
            0.10);
}


.process-nav-icon svg {
    width: 16px;
    height: 16px;
}


.process-nav-number {
    color: #a855f7;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-weight: 700;
}


/* =========================================================
   PROCESS CONSOLE
========================================================= */

.process-console {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border-right:
        1px solid rgba(255,
            255,
            255,
            0.06);
}


.process-console-header {
    height: 42px;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    gap: 12px;

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

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


.console-dots {
    display: flex;

    gap: 7px;
}


.console-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}


.console-dot.red {
    background: #ff625b;
}


.console-dot.yellow {
    background: #f5c84b;
}


.console-dot.green {
    background: #68d36b;
}


.console-title {
    color: #b7b7c0;

    font-size: 0.62rem;

    letter-spacing: 0.04em;
}


.console-status {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 6px;

    color: #62dc91;

    font-size: 0.58rem;
}


.console-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #58df91;

    box-shadow:
        0 0 10px rgba(88,
            223,
            145,
            0.8);
}


/* =========================================================
   CONSOLE BODY
========================================================= */

.process-console-body {
    position: relative;

    min-height: 263px;

    padding:
        28px 28px;

    overflow: hidden;
}


.console-purple-glow {
    position: absolute;

    right: -40px;
    bottom: -60px;

    width: 250px;
    height: 200px;

    border-radius: 50%;

    background:
        rgba(117,
            45,
            255,
            0.16);

    filter: blur(65px);

    pointer-events: none;
}


.console-grid {
    position: absolute;

    right: 40px;
    bottom: 25px;

    width: 240px;
    height: 120px;

    opacity: 0.12;

    transform:
        perspective(600px) rotateX(65deg);

    background-image:
        radial-gradient(circle,
            #a855f7 1px,
            transparent 1px);

    background-size:
        14px 14px;

    pointer-events: none;
}


/* =========================================================
   TERMINAL TYPING
========================================================= */

.process-terminal {
    position: relative;

    z-index: 2;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.78rem;

    line-height: 2;
}


.terminal-line {
    min-height: 25px;

    color: #e5e5e8;

    white-space: nowrap;
}


.terminal-prefix {
    margin-right: 10px;

    color: #8cff66;
}


.terminal-success {
    color: #54ff38;
}


.terminal-cursor {
    display: inline-block;

    margin-top: 4px;

    color: #a855f7;

    font-weight: 700;

    animation:
        terminalBlink 0.7s infinite;
}


@keyframes terminalBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }

}


/* =========================================================
   RIGHT CURRENT STEP
========================================================= */

.process-current {
    padding:
        20px 20px;

    background:
        linear-gradient(150deg,
            rgba(22,
                17,
                34,
                0.82),
            rgba(9,
                9,
                16,
                0.88));
}


.current-step-header {
    display: flex;

    align-items: center;

    gap: 14px;
}


.current-step-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border:
        1px solid rgba(182,
            98,
            255,
            0.52);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle,
            rgba(139,
                61,
                255,
                0.32),
            rgba(11,
                9,
                19,
                0.96));

    box-shadow:
        0 0 25px rgba(139,
            61,
            255,
            0.28);
}


.current-step-icon svg {
    width: 24px;
    height: 24px;
}


.current-step-number {
    display: block;

    color: #a855f7;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.6rem;

    line-height: 1;
}


.current-step-header h3 {
    margin-top: 5px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.92rem;
}


.current-step-description {
    margin-top: 18px;

    color: #aaaab5;

    font-size: 0.76rem;

    line-height: 1.65;
}


.current-activity {
    margin-top: 16px;

    padding:
        11px 12px;

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

    border-radius: 10px;

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


.current-activity span {
    display: block;

    color: #787984;

    font-size: 0.56rem;

    letter-spacing: 0.06em;
}


.current-activity strong {
    display: block;

    margin-top: 5px;

    color: #d8d8df;

    font-size: 0.7rem;
}


/* =========================================================
   CURRENT PROGRESS
========================================================= */

.process-percentage {
    margin-top: 18px;
}


.process-percentage-header {
    margin-bottom: 8px;

    display: flex;

    justify-content: space-between;

    color: #8f909b;

    font-size: 0.62rem;
}


.process-percentage-header strong {
    color: #b35cff;
}


.process-percentage-track {
    width: 100%;
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

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


.process-percentage-bar {
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7f35f8,
            #b95cff);

    box-shadow:
        0 0 15px rgba(168,
            85,
            247,
            0.45);

    transition:
        width 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}


/* =========================================================
   BOTTOM
========================================================= */

.process-bottom {
    margin-top: 16px;

    display: flex;

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

    gap: 30px;
}


.process-complete-status {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #797a84;

    font-size: 0.58rem;
}


.process-complete-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 12px rgba(168,
            85,
            247,
            0.7);
}


.process-mini-line {
    width: 130px;
    height: 2px;

    overflow: hidden;

    border-radius: 999px;

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


.process-mini-progress {
    width: 25%;
    height: 100%;

    background:
        linear-gradient(90deg,
            #7d35f6,
            #b35cff);

    transition:
        width 0.5s ease;
}


.process-cta {
    min-height: 46px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(165,
            84,
            255,
            0.50);

    border-radius: 12px;

    color: #ffffff;

    background:
        rgba(139,
            61,
            255,
            0.08);

    font-size: 0.74rem;

    font-weight: 600;

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


.process-cta:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(185,
            108,
            255,
            0.75);

    background:
        rgba(139,
            61,
            255,
            0.16);

    box-shadow:
        0 16px 40px rgba(93,
            36,
            198,
            0.20);
}


.process-cta-icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background:
        rgba(139,
            61,
            255,
            0.22);
}


.process-cta svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   SMALLER LAPTOP HEIGHT
   IMPORTANT FOR ONE-SCREEN FIT
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .process-section {
        padding:
            14px 0 12px;
    }


    .process-header {
        margin-bottom: 12px;
    }


    .process-title {
        font-size:
            clamp(2.1rem,
                3vw,
                3.3rem);
    }


    .process-description {
        margin-top: 6px;

        font-size: 0.76rem;
    }


    .process-timeline {
        margin-bottom: 12px;
    }


    .process-step {
        min-height: 120px;

        padding:
            7px 10px;
    }


    .process-line {
        top: 63px;
    }


    .process-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 5px;
    }


    .process-icon svg {
        width: 20px;
        height: 20px;
    }


    .process-step p {
        font-size: 0.61rem;
    }


    .process-dashboard {
        min-height: 250px;

        grid-template-columns:
            205px minmax(0, 1fr) 245px;
    }


    .process-sidebar,
    .process-current {
        padding:
            14px 14px;
    }


    .process-nav-item {
        min-height: 39px;

        margin-bottom: 6px;
    }


    .process-console-body {
        min-height: 208px;

        padding:
            20px 24px;
    }


    .process-terminal {
        font-size: 0.7rem;

        line-height: 1.8;
    }


    .current-step-description {
        margin-top: 12px;

        font-size: 0.68rem;

        line-height: 1.5;
    }


    .current-activity {
        margin-top: 10px;
    }


    .process-percentage {
        margin-top: 12px;
    }


    .process-bottom {
        margin-top: 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .process-section {
        min-height: auto;

        padding:
            90px 0;
    }


    .process-timeline {
        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));

        gap: 16px;
    }


    .process-line {
        display: none;
    }


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


    .process-sidebar {
        display: grid;

        grid-template-columns:
            repeat(4,
                minmax(0, 1fr));

        gap: 8px;

        border-right: 0;

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


    .process-dashboard-label {
        grid-column:
            1 / -1;
    }


    .process-nav-item {
        grid-template-columns:
            1fr;

        justify-items: center;

        min-height: 80px;

        text-align: center;
    }


    .process-nav-number {
        display: none;
    }


    .process-console {
        border-right: 0;

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .process-container {
        width:
            calc(100% - 30px);
    }


    .process-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


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


    .process-step {
        min-height: auto;

        padding:
            16px;
    }


    .process-step p {
        max-width: 280px;
    }


    .process-sidebar {
        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));
    }


    .process-console-body {
        padding:
            22px 16px;
    }


    .process-terminal {
        font-size: 0.66rem;

        overflow-x: auto;
    }


    .terminal-line {
        white-space: normal;
    }


    .process-bottom {
        flex-direction: column;
    }


    .process-cta {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   07. DEVELOPER JOURNEY
========================================================= */

.journey-section {
    position: relative;

    min-height: 100vh;

    padding:
        24px 0 22px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(circle at 65% 48%,
            rgba(120, 45, 255, 0.08),
            transparent 34%),
        linear-gradient(180deg,
            #05050a,
            #080711);
}


/* =========================================================
   CONTAINER
========================================================= */

.journey-container {
    width:
        min(calc(100% - 58px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.journey-header {
    max-width: 800px;

    margin:
        0 auto 22px;

    text-align: center;
}


.journey-header .section-label {
    margin-bottom: 8px;
}


.journey-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.3rem,
            3.6vw,
            4rem);

    font-weight: 650;

    line-height: 0.98;

    letter-spacing: -0.05em;
}


.journey-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c477ff,
            #7d39ff);

    -webkit-background-clip: text;
    background-clip: text;
}


.journey-description {
    max-width: 650px;

    margin:
        10px auto 0;

    color: #9b9ca8;

    font-size: 0.82rem;

    line-height: 1.55;
}


/* =========================================================
   MAIN GRID
========================================================= */

.journey-grid {
    display: grid;

    grid-template-columns:
        minmax(390px, 0.78fr) minmax(0, 1.32fr);

    gap: 44px;

    align-items: stretch;
}


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

.journey-timeline {
    position: relative;

    display: grid;

    gap: 11px;
}


/* Vertical line */

.journey-line {
    position: absolute;

    top: 26px;
    bottom: 26px;
    left: 16px;

    width: 2px;

    background:
        rgba(147, 64, 255, 0.22);
}


.journey-line-progress {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(180deg,
            #b55cff,
            #7935ff);

    box-shadow:
        0 0 15px rgba(157,
            70,
            255,
            0.55);
}


/* =========================================================
   JOURNEY ITEM
========================================================= */

.journey-item {
    position: relative;

    padding-left: 58px;
}


.journey-node {
    position: absolute;

    top: 22px;
    left: 5px;

    z-index: 3;

    width: 24px;
    height: 24px;

    border:
        3px solid #080711;

    border-radius: 50%;

    background:
        #732dca;

    box-shadow:
        0 0 0 2px #8c3dff;
}


.journey-node::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 22px;

    width: 29px;
    height: 1px;

    background:
        #8e3cff;
}


.journey-node.active {
    background:
        #ffffff;

    box-shadow:
        0 0 0 2px #ad5cff,

        0 0 20px #9d49ff,

        0 0 38px rgba(142,
            59,
            255,
            0.50);
}


/* =========================================================
   JOURNEY CARD
========================================================= */

.journey-card {
    position: relative;

    min-height: 108px;

    padding:
        15px 18px;

    overflow: hidden;

    border:
        1px solid rgba(153,
            71,
            255,
            0.33);

    border-radius: 14px;

    background:
        linear-gradient(145deg,
            rgba(24,
                17,
                39,
                0.84),
            rgba(10,
                9,
                17,
                0.88));

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


.journey-card:hover {
    transform:
        translateX(4px);

    border-color:
        rgba(179,
            88,
            255,
            0.60);

    box-shadow:
        0 12px 35px rgba(97,
            35,
            190,
            0.12);
}


.journey-card-top {
    display: flex;

    align-items: center;

    gap: 18px;
}


.journey-year {
    min-width: 58px;

    padding:
        6px 10px;

    display: inline-flex;

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

    border:
        1px solid rgba(177,
            88,
            255,
            0.43);

    border-radius: 999px;

    color: #ffffff;

    background:
        rgba(139,
            61,
            255,
            0.18);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.68rem;

    font-weight: 650;
}


.current-year {
    color: #ffffff;

    background:
        rgba(139,
            61,
            255,
            0.29);
}


.journey-card h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.91rem;

    font-weight: 600;
}


.journey-card>p {
    margin:
        8px 0 9px 76px;

    max-width: 360px;

    color: #9d9eaa;

    font-size: 0.66rem;

    line-height: 1.5;
}


/* =========================================================
   TECHNOLOGIES
========================================================= */

.journey-tech {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap:
        10px 18px;
}


.journey-tech span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #cacbd2;

    font-size: 0.61rem;
}


.journey-tech i {
    color: #a855f7;

    font-size: 14px;
}


.journey-tech .fa-html5 {
    color: #ff5b22;
}


.journey-tech .fa-css3-alt {
    color: #3e9cff;
}


.journey-tech .fa-js {
    color: #f4ca1f;
}


.journey-tech .fa-react {
    color: #46d5ff;
}


.journey-tech .fa-node-js {
    color: #69d240;
}


.journey-tech .fa-java {
    color: #f25a48;
}


.journey-tech .fa-python {
    color: #55a8ff;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.journey-right {
    display: grid;

    grid-template-rows:
        minmax(0, 1fr) auto;

    gap: 13px;
}


/* =========================================================
   CURRENT CHAPTER CARD
========================================================= */

.journey-current-card {
    position: relative;

    min-height: 365px;

    overflow: hidden;

    border:
        1px solid rgba(158,
            72,
            255,
            0.42);

    border-radius: 17px;

    background:
        linear-gradient(145deg,
            rgba(15,
                13,
                25,
                0.96),
            rgba(8,
                7,
                14,
                0.97));

    box-shadow:
        0 25px 70px rgba(0,
            0,
            0,
            0.35);
}


/* =========================================================
   CURRENT TOP
========================================================= */

.journey-current-top {
    height: 47px;

    padding:
        0 20px;

    display: flex;

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

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


.journey-current-top>span {
    color: #a84cff;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.65rem;
}


.journey-live {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #7de75f;

    font-size: 0.6rem;

    font-weight: 650;
}


.journey-live span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #65df56;

    box-shadow:
        0 0 10px rgba(101,
            223,
            86,
            0.8);

    animation:
        journeyLive 1.4s infinite;
}


@keyframes journeyLive {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }

}


/* =========================================================
   CURRENT MAIN
========================================================= */

.journey-current-main {
    padding:
        18px 24px;

    display: grid;

    grid-template-columns:
        105px minmax(0, 1fr);

    align-items: center;

    gap: 22px;
}


.journey-orb {
    position: relative;

    width: 88px;
    height: 88px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(176,
            91,
            255,
            0.50);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle,
            rgba(139,
                61,
                255,
                0.23),
            transparent);

    box-shadow:
        0 0 28px rgba(139,
            61,
            255,
            0.20);
}


.journey-orb::before {
    content: "";

    position: absolute;

    inset: -13px;

    border:
        1px dotted rgba(155,
            72,
            255,
            0.35);

    border-radius: 50%;

    animation:
        journeyOrbit 12s linear infinite;
}


@keyframes journeyOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


.journey-orb svg {
    width: 38px;
    height: 38px;
}


.journey-current-main h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(1.35rem,
            2vw,
            2rem);

    letter-spacing: -0.03em;
}


.journey-purple-text {
    display: block;

    margin-top: 6px;

    color: #a94eff;

    font-size: 0.72rem;
}


.journey-current-main p {
    max-width: 520px;

    margin-top: 10px;

    color: #999aa6;

    font-size: 0.7rem;

    line-height: 1.55;
}


/* =========================================================
   DIVIDER
========================================================= */

.journey-divider {
    height: 1px;

    background:
        linear-gradient(90deg,
            rgba(255,
                255,
                255,
                0.02),
            rgba(160,
                72,
                255,
                0.18),
            rgba(255,
                255,
                255,
                0.02));
}


/* =========================================================
   CURRENT FOCUS
========================================================= */

.journey-focus {
    position: relative;

    min-height: 170px;

    padding:
        17px 24px;

    overflow: hidden;
}


.journey-focus-label {
    color: #a94cff;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.62rem;
}


.journey-terminal {
    position: relative;

    z-index: 3;

    margin-top: 13px;

    display: grid;

    gap: 7px;
}


.journey-terminal p {
    color: #b5b5bf;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.63rem;
}


.journey-terminal p span {
    margin-right: 8px;

    color: #73df3b;
}


.journey-terminal .journey-success {
    color: #61e33e;
}


/* =========================================================
   DECORATIVE WAVE
========================================================= */

.journey-wave {
    position: absolute;

    right: -35px;
    bottom: -80px;

    width: 360px;
    height: 210px;

    opacity: 0.35;

    transform:
        rotate(-8deg);

    background-image:
        radial-gradient(circle,
            #8b3dff 1px,
            transparent 1px);

    background-size:
        12px 12px;

    -webkit-mask-image:
        radial-gradient(ellipse,
            #000,
            transparent 70%);

    mask-image:
        radial-gradient(ellipse,
            #000,
            transparent 70%);
}


/* =========================================================
   STATUS BAR
========================================================= */

.journey-status-bar {
    min-height: 38px;

    padding:
        0 20px;

    display: flex;

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

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

    color: #65e94b;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.55rem;
}


.journey-status-bar strong {
    color: #ffffff;
}


/* =========================================================
   STATS
========================================================= */

.journey-stats {
    display: grid;

    grid-template-columns:
        repeat(4,
            minmax(0, 1fr));

    gap: 10px;
}


.journey-stat {
    min-height: 115px;

    padding:
        14px 10px;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    border:
        1px solid rgba(155,
            73,
            255,
            0.20);

    border-radius: 12px;

    background:
        linear-gradient(145deg,
            rgba(17,
                15,
                27,
                0.90),
            rgba(8,
                8,
                14,
                0.92));

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


.journey-stat:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(177,
            85,
            255,
            0.50);

    box-shadow:
        0 16px 36px rgba(91,
            28,
            180,
            0.12);
}


.journey-stat svg {
    width: 24px;
    height: 24px;

    color: #a84cff;
}


.journey-stat strong {
    margin-top: 7px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #b45cff,
            #7735ff);

    -webkit-background-clip: text;
    background-clip: text;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.8rem;

    line-height: 1;
}


.journey-stat span {
    margin-top: 7px;

    color: #c5c5cc;

    font-size: 0.61rem;

    line-height: 1.35;
}


/* =========================================================
   LAPTOP — 1366×768 / SMALL HEIGHT
   FIT EVERYTHING IN ONE SCREEN
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .journey-section {
        padding:
            12px 0 12px;
    }


    .journey-header {
        margin-bottom: 12px;
    }


    .journey-header .section-label {
        margin-bottom: 5px;
    }


    .journey-title {
        font-size:
            clamp(2rem,
                2.8vw,
                3.1rem);
    }


    .journey-description {
        margin-top: 6px;

        font-size: 0.7rem;
    }


    .journey-grid {
        gap: 30px;
    }


    .journey-timeline {
        gap: 7px;
    }


    .journey-card {
        min-height: 90px;

        padding:
            11px 14px;
    }


    .journey-card>p {
        margin-top: 5px;
        margin-bottom: 6px;

        font-size: 0.58rem;

        line-height: 1.4;
    }


    .journey-tech span {
        font-size: 0.54rem;
    }


    .journey-current-card {
        min-height: 325px;
    }


    .journey-current-main {
        padding:
            13px 20px;
    }


    .journey-focus {
        min-height: 140px;

        padding:
            12px 20px;
    }


    .journey-terminal {
        margin-top: 8px;

        gap: 5px;
    }


    .journey-terminal p {
        font-size: 0.57rem;
    }


    .journey-stats {
        gap: 8px;
    }


    .journey-stat {
        min-height: 92px;

        padding: 10px;
    }


    .journey-stat strong {
        font-size: 1.45rem;
    }


    .journey-stat span {
        font-size: 0.55rem;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .journey-section {
        min-height: auto;

        padding:
            90px 0;
    }


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

        gap: 45px;
    }


    .journey-timeline {
        max-width: 700px;

        width: 100%;

        margin-inline: auto;
    }


    .journey-right {
        max-width: 800px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .journey-container {
        width:
            calc(100% - 30px);
    }


    .journey-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


    .journey-item {
        padding-left: 43px;
    }


    .journey-line {
        left: 11px;
    }


    .journey-node {
        left: 0;
    }


    .journey-node::after {
        width: 18px;
    }


    .journey-card-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }


    .journey-card>p {
        margin-left: 0;
    }


    .journey-current-main {
        grid-template-columns: 1fr;
    }


    .journey-orb {
        width: 75px;
        height: 75px;
    }


    .journey-stats {
        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));
    }


    .journey-status-bar {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 3px;
    }

}

/* =========================================================
   08. CLIENT NETWORK
========================================================= */

.client-network-section {
    position: relative;

    min-height: 100vh;

    padding:
        22px 0 18px;

    display: flex;
    align-items: center;

    overflow: hidden;

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

    background:
        radial-gradient(circle at 50% 50%,
            rgba(112, 42, 255, 0.10),
            transparent 34%),
        linear-gradient(180deg,
            #05050a,
            #07060d);
}


.client-network-container {
    width:
        min(calc(100% - 55px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.client-network-header {
    max-width: 760px;

    margin:
        0 auto 16px;

    text-align: center;
}


.client-network-header .section-label {
    margin-bottom: 6px;
}


.client-network-title {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.2rem,
            3.5vw,
            3.8rem);

    font-weight: 650;

    line-height: 0.97;

    letter-spacing: -0.05em;
}


.client-network-title span {
    color: transparent;

    background:
        linear-gradient(90deg,
            #ffffff,
            #c575ff,
            #8236ff);

    -webkit-background-clip: text;
    background-clip: text;
}


.client-network-description {
    max-width: 610px;

    margin:
        9px auto 0;

    color: #999aa6;

    font-size: 0.76rem;

    line-height: 1.5;
}


/* =========================================================
   NETWORK CANVAS
========================================================= */

.client-network {
    position: relative;

    height: 550px;

    max-width: 1440px;

    margin-inline: auto;

    isolation: isolate;
}


/* =========================================================
   CENTER HUB
========================================================= */

.client-hub {
    position: absolute;

    top: 48%;
    left: 50%;

    z-index: 10;

    width: 220px;
    height: 220px;

    transform:
        translate(-50%, -50%);

    display: grid;
    place-items: center;
}


.hub-core {
    position: relative;

    z-index: 4;

    width: 155px;
    height: 155px;

    display: flex;

    flex-direction: column;

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

    border:
        1px solid rgba(184, 98, 255, 0.85);

    border-radius: 50%;

    background:
        radial-gradient(circle at center,
            rgba(129, 52, 255, 0.23),
            rgba(9, 8, 15, 0.98) 70%);

    box-shadow:
        0 0 25px rgba(143, 58, 255, 0.30),

        0 0 70px rgba(115, 39, 240, 0.16),

        inset 0 0 30px rgba(139, 61, 255, 0.10);
}


.hub-core strong {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.2rem;

    letter-spacing: -0.02em;
}


.hub-core span {
    margin-top: 5px;

    color: #b255ff;

    font-size: 0.66rem;

    font-weight: 650;
}


.hub-core svg {
    width: 25px;
    height: 25px;

    margin-top: 15px;

    color: #a34cff;
}


/* =========================================================
   HUB ORBITS
========================================================= */

.hub-orbit {
    position: absolute;

    border:
        1px dotted rgba(150, 65, 255, 0.30);

    border-radius: 50%;
}


.orbit-a {
    width: 190px;
    height: 190px;

    animation:
        clientOrbit 16s linear infinite;
}


.orbit-b {
    width: 220px;
    height: 220px;

    animation:
        clientOrbit 24s linear reverse infinite;
}


@keyframes clientOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   CONNECTION LINES
========================================================= */

.network-lines {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;
}


.network-line {
    position: absolute;

    top: 48%;
    left: 50%;

    height: 1px;

    transform-origin:
        left center;

    background:
        linear-gradient(90deg,
            rgba(174, 79, 255, 0.9),
            rgba(117, 44, 240, 0.16));

    box-shadow:
        0 0 8px rgba(156, 68, 255, 0.28);
}


.line-1 {
    width: 340px;

    transform:
        rotate(210deg);
}


.line-2 {
    width: 340px;

    transform:
        rotate(-30deg);
}


.line-3 {
    width: 335px;

    transform:
        rotate(150deg);
}


.line-4 {
    width: 335px;

    transform:
        rotate(30deg);
}


.line-5 {
    width: 190px;

    transform:
        rotate(90deg);
}


/* =========================================================
   CLIENT CARDS
========================================================= */

.client-card {
    position: absolute;

    z-index: 6;

    width: 260px;

    padding:
        18px;

    border:
        1px solid rgba(165, 78, 255, 0.35);

    border-radius: 15px;

    background:
        linear-gradient(145deg,
            rgba(19, 15, 31, 0.94),
            rgba(8, 8, 14, 0.96));

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(16px);

    transition:
        transform 0.35s cubic-bezier(0.22,
            1,
            0.36,
            1),

        border-color 0.3s ease,

        box-shadow 0.3s ease;
}


.client-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(189, 102, 255, 0.68);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.40),

        0 0 40px rgba(118, 39, 240, 0.12);
}


.client-card-1 {
    top: 26px;
    left: 0;
}


.client-card-2 {
    top: 38px;
    right: 0;
}


.client-card-3 {
    left: -5px;
    bottom: 30px;
}


.client-card-4 {
    right: 0;
    bottom: 28px;
}


/* =========================================================
   FEATURED REVIEW
========================================================= */

.client-card-featured {
    left: 50%;
    bottom: -5px;

    width: 430px;

    transform:
        translateX(-50%);

    border-color:
        rgba(188, 98, 255, 0.78);

    box-shadow:
        0 0 35px rgba(130, 47, 255, 0.19),

        0 20px 50px rgba(0, 0, 0, 0.36);
}


.client-card-featured:hover {
    transform:
        translateX(-50%) translateY(-5px);
}


.featured-client-top {
    display: flex;

    align-items: center;

    gap: 15px;
}


.featured-client-top .client-rating {
    margin-left: 5px;
}


.featured-client-top .client-quote-mark {
    margin-left: auto;

    position: static;
}


/* =========================================================
   REVIEW ELEMENTS
========================================================= */

.client-rating {
    color: #ffbd23;

    font-size: 0.85rem;

    letter-spacing: 2px;
}


.client-quote-mark {
    position: absolute;

    top: 12px;
    right: 15px;

    color: #9f41ff;

    font-family:
        Georgia,
        serif;

    font-size: 2rem;

    line-height: 1;
}


.client-review {
    margin-top: 13px;

    color: #d3d3da;

    font-size: 0.68rem;

    line-height: 1.58;
}


.client-divider {
    width: 100%;
    height: 1px;

    margin:
        14px 0 12px;

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


.client-info strong {
    display: block;

    color: #b45cff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.73rem;
}


.client-info span {
    display: block;

    margin-top: 4px;

    color: #a0a1ab;

    font-size: 0.61rem;
}


.client-project-type {
    display: inline-flex;

    margin-top: 10px;

    padding:
        5px 9px;

    border-radius: 999px;

    color: #ba69ff;

    background:
        rgba(139, 61, 255, 0.11);

    font-size: 0.55rem;
}


/* =========================================================
   CLIENT NODES
========================================================= */

.client-node {
    position: absolute;

    z-index: 8;

    width: 84px;
    height: 84px;

    border-radius: 50%;

    background:
        transparent;
}


.client-node-1 {
    top: 75px;
    left: 300px;
}


.client-node-2 {
    top: 85px;
    right: 300px;
}


.client-node-3 {
    left: 305px;
    bottom: 125px;
}


.client-node-4 {
    right: 305px;
    bottom: 125px;
}


.client-avatar {
    width: 66px;
    height: 66px;

    display: grid;
    place-items: center;

    margin: auto;

    border:
        1px solid rgba(189, 104, 255, 0.65);

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(circle,
            rgba(139, 61, 255, 0.28),
            rgba(10, 8, 17, 0.96));

    box-shadow:
        0 0 0 8px rgba(139, 61, 255, 0.055),

        0 0 25px rgba(139, 61, 255, 0.24);
}


.client-avatar span {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 0.82rem;

    font-weight: 700;
}


.featured-avatar {
    width: 56px;
    height: 56px;

    margin: 0;
}


.node-pulse {
    position: absolute;

    top: 50%;
    right: -3px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #be6bff;

    box-shadow:
        0 0 10px #b45cff,

        0 0 20px rgba(168, 85, 247, 0.75);

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


@keyframes clientNodePulse {

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

    50% {
        transform:
            translateY(-50%) scale(1.45);
    }

}


/* =========================================================
   BOTTOM STAT BAR
========================================================= */

.client-stats {
    min-height: 72px;

    margin-top: 6px;

    padding:
        10px 18px;

    display: grid;

    grid-template-columns:
        repeat(5,
            minmax(0, 1fr));

    border:
        1px solid rgba(148, 69, 255, 0.18);

    border-radius: 15px;

    background:
        rgba(11, 10, 18, 0.84);
}


.client-stat {
    display: flex;

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

    gap: 12px;

    border-right:
        1px solid rgba(255, 255, 255, 0.06);
}


.client-stat:last-child {
    border-right: 0;
}


.client-stat svg {
    width: 23px;
    height: 23px;

    color: #a74cff;
}


.client-stat strong {
    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.05rem;
}


.client-stat span {
    display: block;

    margin-top: 2px;

    color: #9697a3;

    font-size: 0.56rem;
}


/* =========================================================
   LAPTOP — FULL SECTION IN ONE SCREEN
   1366x768 / 1440x800 etc.
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .client-network-section {
        padding:
            10px 0 9px;
    }


    .client-network-header {
        margin-bottom: 6px;
    }


    .client-network-header .section-label {
        margin-bottom: 3px;
    }


    .client-network-title {
        font-size:
            clamp(1.9rem,
                2.7vw,
                3rem);
    }


    .client-network-description {
        margin-top: 5px;

        font-size: 0.66rem;
    }


    .client-network {
        height: 500px;
    }


    .client-hub {
        width: 190px;
        height: 190px;
    }


    .hub-core {
        width: 135px;
        height: 135px;
    }


    .orbit-a {
        width: 165px;
        height: 165px;
    }


    .orbit-b {
        width: 190px;
        height: 190px;
    }


    .client-card {
        width: 235px;

        padding: 14px;
    }


    .client-review {
        margin-top: 9px;

        font-size: 0.61rem;

        line-height: 1.46;
    }


    .client-divider {
        margin:
            10px 0 8px;
    }


    .client-node {
        width: 72px;
        height: 72px;
    }


    .client-avatar {
        width: 56px;
        height: 56px;
    }


    .client-card-featured {
        width: 390px;

        padding: 13px 16px;
    }


    .client-stats {
        min-height: 58px;

        margin-top: 2px;
    }


    .client-stat svg {
        width: 20px;
        height: 20px;
    }


    .client-stat strong {
        font-size: 0.92rem;
    }


    .client-stat span {
        font-size: 0.51rem;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .client-network-section {
        min-height: auto;

        padding:
            90px 0;
    }


    .client-network {
        height: auto;

        display: grid;

        grid-template-columns:
            repeat(2,
                minmax(0, 1fr));

        gap: 16px;
    }


    .client-hub,
    .client-node,
    .network-lines {
        display: none;
    }


    .client-card,
    .client-card-featured {
        position: relative;

        inset: auto;

        width: auto;

        transform: none;
    }


    .client-card-featured:hover {
        transform:
            translateY(-5px);
    }


    .client-card-featured {
        grid-column:
            1 / -1;
    }


    .client-stats {
        grid-template-columns:
            repeat(3,
                minmax(0, 1fr));

        gap: 10px;
    }


    .client-stat {
        border-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .client-network-container {
        width:
            calc(100% - 30px);
    }


    .client-network-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


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


    .client-card-featured {
        grid-column: auto;
    }


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


    .client-stat {
        min-height: 65px;

        justify-content: flex-start;

        padding:
            0 12px;
    }

}

/* =========================================================
   10. CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    min-height: 100vh;

    padding:
        22px 0;

    display: flex;

    align-items: center;

    overflow: hidden;

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

    background:
        linear-gradient(180deg,
            #050509,
            #06050b);
}


.contact-container {
    width:
        min(calc(100% - 50px),
            1500px);

    margin-inline: auto;
}


/* =========================================================
   MAIN CONTACT SHELL
========================================================= */

.contact-shell {
    position: relative;

    min-height: 650px;

    padding:
        30px 32px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(470px, 0.85fr);

    gap: 42px;

    overflow: hidden;

    border:
        1px solid rgba(167, 82, 255, 0.40);

    border-radius: 28px;

    background:
        radial-gradient(circle at 40% 55%,
            rgba(124, 45, 255, 0.08),
            transparent 34%),
        linear-gradient(145deg,
            rgba(12, 10, 20, 0.96),
            rgba(6, 6, 11, 0.98));

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),

        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    isolation: isolate;
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.contact-cursor-glow {
    position: absolute;

    inset: 0;

    z-index: 0;

    opacity: 0;

    pointer-events: none;

    background:
        radial-gradient(500px circle at var(--contact-x, 50%) var(--contact-y, 50%),

            rgba(150, 62, 255, 0.11),

            transparent 48%);

    transition:
        opacity 0.3s ease;
}


.contact-shell:hover .contact-cursor-glow {
    opacity: 1;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.contact-left {
    position: relative;

    z-index: 2;

    min-width: 0;

    padding:
        6px 5px;

    overflow: hidden;
}


/* =========================================================
   LABEL
========================================================= */

.contact-label {
    width: fit-content;

    padding:
        8px 13px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid rgba(163, 77, 255, 0.30);

    border-radius: 9px;

    color: #ded8e9;

    background:
        rgba(139, 61, 255, 0.035);

    font-size: 0.67rem;

    font-weight: 600;

    letter-spacing: 0.07em;
}


.contact-label-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #a84cff;

    box-shadow:
        0 0 11px rgba(168, 76, 255, 0.85);
}


/* =========================================================
   HEADING
========================================================= */

.contact-title {
    max-width: 570px;

    margin-top: 20px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(2.2rem,
            3.25vw,
            3.7rem);

    font-weight: 650;

    line-height: 0.99;

    letter-spacing: -0.05em;
}


.contact-title span {
    display: inline-block;

    margin-top: 5px;

    color: transparent;

    background:
        linear-gradient(90deg,
            #d392ff,
            #8b39ff);

    -webkit-background-clip: text;
    background-clip: text;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.contact-description {
    max-width: 410px;

    margin-top: 18px;

    color: #a2a3ae;

    font-size: 0.74rem;

    line-height: 1.62;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    position: relative;

    z-index: 5;

    width: 310px;

    margin-top: 22px;

    display: grid;

    gap: 5px;
}


.contact-detail {
    min-height: 52px;

    padding:
        7px 0;

    display: flex;

    align-items: center;

    gap: 13px;

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


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


.contact-detail-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(157, 73, 255, 0.16);

    border-radius: 9px;

    color: #b75cff;

    background:
        rgba(139, 61, 255, 0.07);
}


.contact-detail-icon svg {
    width: 17px;
    height: 17px;
}


.contact-detail-icon i {
    font-size: 17px;
}


.contact-detail span {
    display: block;

    color: #b75cff;

    font-size: 0.62rem;

    font-weight: 600;
}


.contact-detail strong {
    display: block;

    margin-top: 4px;

    max-width: 250px;

    overflow: hidden;

    color: #d7d7dd;

    font-size: 0.64rem;

    font-weight: 500;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   ORB AREA
========================================================= */

.contact-orb-area {
    position: absolute;

    right: 10px;
    bottom: 5px;

    width: 380px;
    height: 400px;

    display: grid;

    place-items: center;

    pointer-events: none;
}


/* =========================================================
   ORBITS
========================================================= */

.contact-orbit {
    position: absolute;

    border:
        1px solid rgba(154, 68, 255, 0.22);

    border-radius: 50%;
}


.orbit-one {
    width: 250px;
    height: 250px;

    animation:
        contactOrbit 18s linear infinite;
}


.orbit-two {
    width: 310px;
    height: 310px;

    animation:
        contactOrbit 25s linear reverse infinite;
}


.orbit-three {
    width: 360px;
    height: 360px;

    border-style: dotted;

    animation:
        contactOrbit 32s linear infinite;
}


@keyframes contactOrbit {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   ORBIT DOTS
========================================================= */

.contact-orbit-dot {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #b55bff;

    box-shadow:
        0 0 14px rgba(181, 91, 255, 0.9);
}


.dot-one {
    top: 72px;
    left: 105px;
}


.dot-two {
    top: 175px;
    right: 9px;
}


.dot-three {
    bottom: 95px;
    left: 24px;
}


/* =========================================================
   GLOBE
========================================================= */

.contact-globe {
    position: relative;

    z-index: 5;

    width: 175px;
    height: 175px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(192, 109, 255, 0.66);

    border-radius: 50%;

    color: #c16dff;

    background:
        radial-gradient(circle at 35% 30%,
            rgba(187, 95, 255, 0.30),
            rgba(96, 31, 188, 0.17) 40%,
            rgba(8, 7, 14, 0.94) 72%);

    box-shadow:
        0 0 25px rgba(157, 64, 255, 0.40),

        0 0 70px rgba(118, 39, 230, 0.18),

        inset 0 0 40px rgba(164, 77, 255, 0.22);

    animation:
        globeFloat 4s ease-in-out infinite;
}


@keyframes globeFloat {

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

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

}


.contact-globe svg {
    width: 75px;
    height: 75px;

    stroke-width: 0.9;
}


/* =========================================================
   GLOBE GRID
========================================================= */

.contact-globe-grid {
    position: absolute;

    inset: 16px;

    border-radius: 50%;

    opacity: 0.25;

    background-image:
        radial-gradient(circle,
            #d08aff 1px,
            transparent 1px);

    background-size:
        7px 7px;

    mask-image:
        radial-gradient(circle,
            #000,
            transparent 75%);
}


/* =========================================================
   PLATFORM
========================================================= */

.contact-platform {
    position: absolute;

    bottom: 10px;

    width: 300px;
    height: 80px;

    transform:
        perspective(500px) rotateX(68deg);

    border:
        1px solid rgba(170, 72, 255, 0.36);

    border-radius: 50%;

    background:
        radial-gradient(ellipse,
            rgba(141, 53, 255, 0.24),
            transparent 65%);

    box-shadow:
        0 0 30px rgba(130, 40, 250, 0.25);
}


.platform-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(177, 85, 255, 0.40);

    border-radius: 50%;
}


.ring-a {
    width: 210px;
    height: 47px;
}


.ring-b {
    width: 150px;
    height: 34px;
}


.platform-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 70px;
    height: 18px;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        #a74cff;

    filter:
        blur(8px);

    box-shadow:
        0 0 30px #a74cff;
}


/* =========================================================
   ORB MESSAGE
========================================================= */

.contact-orb-message {
    position: absolute;

    top: 83px;
    right: 12px;

    z-index: 10;

    width: 140px;

    padding:
        14px;

    border:
        1px solid rgba(177, 87, 255, 0.44);

    border-radius: 12px;

    color: #d0d0d7;

    background:
        rgba(13, 10, 22, 0.88);

    backdrop-filter: blur(14px);

    font-size: 0.61rem;

    line-height: 1.5;
}


.contact-orb-message strong {
    display: block;

    color: #b85cff;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    z-index: 4;

    align-self: center;

    padding:
        24px;

    border:
        1px solid rgba(182, 94, 255, 0.50);

    border-radius: 21px;

    background:
        radial-gradient(circle at 70% 0%,
            rgba(139, 61, 255, 0.12),
            transparent 32%),
        linear-gradient(145deg,
            rgba(22, 17, 34, 0.94),
            rgba(8, 8, 15, 0.96));

    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34),

        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transform-style: preserve-3d;
}


/* =========================================================
   FORM HEADER
========================================================= */

.contact-form-header {
    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.contact-form-header h3 {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.15rem;
}


.contact-form-header svg {
    width: 28px;
    height: 28px;

    color: #aa4cff;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    display: grid;

    gap: 13px;
}


.contact-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;
}


/* =========================================================
   FIELDS
========================================================= */

.contact-field {
    position: relative;

    min-height: 56px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        0 17px;

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

    border-radius: 11px;

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

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


.contact-field:hover,
.contact-field:focus-within {
    transform:
        translateY(-2px);

    border-color:
        rgba(175, 84, 255, 0.55);

    background:
        rgba(139, 61, 255, 0.04);

    box-shadow:
        0 8px 25px rgba(95, 33, 190, 0.11),

        inset 0 0 20px rgba(139, 61, 255, 0.025);
}


.contact-field>svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: #c9c5d2;

    stroke-width: 1.5;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border: 0;

    outline: none;

    color: #ffffff;

    background: transparent;

    font-family:
        "Inter",
        sans-serif;

    font-size: 0.75rem;
}


.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a4a2ac;
}


.contact-field select {
    appearance: none;

    cursor: pointer;
}


.contact-field select option {
    color: #ffffff;

    background:
        #0c0a14;
}


/* =========================================================
   SELECT
========================================================= */

.contact-select {
    padding-right: 45px;
}


.select-arrow {
    position: absolute;

    right: 16px;

    width: 17px !important;
    height: 17px !important;

    pointer-events: none;
}


/* =========================================================
   TEXTAREA
========================================================= */

.contact-textarea {
    min-height: 125px;

    align-items: flex-start;

    padding-top: 16px;
}


.contact-textarea textarea {
    min-height: 92px;

    resize: none;

    line-height: 1.55;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
    min-height: 58px;

    display: flex;

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

    gap: 14px;

    border:
        1px solid rgba(222, 174, 255, 0.60);

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(100deg,
            #9137ff,
            #cc30d9);

    font-size: 0.82rem;

    font-weight: 700;

    box-shadow:
        0 0 25px rgba(139, 61, 255, 0.32);

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


.contact-submit:hover {
    transform:
        translateY(-4px);

    filter:
        brightness(1.08);

    box-shadow:
        0 0 40px rgba(139, 61, 255, 0.48),

        0 18px 35px rgba(0, 0, 0, 0.26);
}


.contact-submit svg {
    width: 18px;
    height: 18px;

    transition:
        transform 0.3s ease;
}


.contact-submit:hover svg {
    transform:
        translateX(5px);
}


/* =========================================================
   STATUS
========================================================= */

.contact-status {
    margin-top: 15px;

    min-height: 56px;

    padding:
        8px 15px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    border:
        1px solid rgba(160, 75, 255, 0.18);

    border-radius: 11px;

    background:
        rgba(7, 7, 13, 0.72);
}


.contact-status-item {
    display: flex;

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

    gap: 9px;
}


.contact-status-item svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: #a64cff;
}


.contact-status-item span {
    display: block;

    color: #8d8e99;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.47rem;
}


.contact-status-item strong {
    display: block;

    margin-top: 2px;

    color: #61ec48;

    font-family:
        "Courier New",
        monospace;

    font-size: 0.53rem;
}


.contact-status-item .purple-status {
    color: #b55cff;
}


.contact-status-divider {
    width: 1px;
    height: 27px;

    background:
        rgba(168, 85, 247, 0.20);
}


/* =========================================================
   LAPTOP 1366x768 / 1440x800
   FULL SECTION VISIBLE
========================================================= */

@media (min-width: 1100px) and (max-height: 850px) {

    .contact-section {
        padding:
            10px 0;
    }


    .contact-shell {
        min-height: 700px;

        max-height:
            calc(100vh - 20px);

        padding:
            22px 25px;

        grid-template-columns:
            minmax(0, 1fr) minmax(445px, 0.82fr);

        gap: 30px;

        border-radius: 24px;
    }


    .contact-label {
        padding:
            6px 10px;

        font-size: 0.6rem;
    }


    .contact-title {
        margin-top: 13px;

        font-size:
            clamp(1.95rem,
                2.75vw,
                2.9rem);
    }


    .contact-description {
        margin-top: 11px;

        font-size: 0.66rem;

        line-height: 1.5;
    }


    .contact-details {
        margin-top: 13px;

        gap: 2px;
    }


    .contact-detail {
        min-height: 44px;
    }


    .contact-detail-icon {
        width: 34px;
        height: 34px;
    }


    .contact-orb-area {
        right: 0;

        bottom: -18px;

        width: 330px;
        height: 345px;
    }


    .contact-globe {
        width: 145px;
        height: 145px;
    }


    .contact-globe svg {
        width: 62px;
        height: 62px;
    }


    .orbit-one {
        width: 205px;
        height: 205px;
    }


    .orbit-two {
        width: 255px;
        height: 255px;
    }


    .orbit-three {
        width: 300px;
        height: 300px;
    }


    .contact-platform {
        width: 250px;
    }


    .contact-form-card {
        padding:
            18px;
    }


    .contact-form-header {
        margin-bottom: 13px;
    }


    .contact-form {
        gap: 9px;
    }


    .contact-form-row {
        gap: 9px;
    }


    .contact-field {
        min-height: 47px;

        padding:
            0 13px;
    }


    .contact-textarea {
        min-height: 105px;

        padding-top: 13px;
    }


    .contact-textarea textarea {
        min-height: 75px;
    }


    .contact-submit {
        min-height: 48px;
    }


    .contact-status {
        min-height: 49px;

        margin-top: 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1099px) {

    .contact-section {
        min-height: auto;

        padding:
            85px 0;
    }


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

        min-height: auto;
    }


    .contact-left {
        min-height: 600px;
    }


    .contact-orb-area {
        right: 8%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-container {
        width:
            calc(100% - 24px);
    }


    .contact-shell {
        padding:
            22px 16px;

        border-radius: 19px;
    }


    .contact-left {
        min-height: auto;

        padding-bottom: 420px;
    }


    .contact-title {
        font-size:
            clamp(2rem,
                10vw,
                3rem);
    }


    .contact-details {
        width: 100%;
    }


    .contact-orb-area {
        right: 50%;

        bottom: 0;

        width: 320px;

        transform:
            translateX(50%);
    }


    .contact-form-card {
        padding:
            18px 14px;
    }


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


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

        gap: 12px;

        padding:
            14px;
    }


    .contact-status-divider {
        display: none;
    }


    .contact-status-item {
        justify-content:
            flex-start;
    }

}

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

.site-footer {
    position: relative;

    width: 100%;

    padding: 20px;

    background: #050509;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.footer-container {
    width: min(100%, 1800px);

    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(168, 85, 247, 0.45);

    border-radius: 22px;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(139, 61, 255, 0.07),
            transparent 25%),
        linear-gradient(145deg,
            #0d0b16,
            #07070c 55%,
            #0b0912);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/* =========================================================
   TOP AREA
========================================================= */

.footer-top {
    min-height: 105px;

    padding: 18px 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

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


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-logo {
    width: 66px;
    height: 66px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border: 1px solid rgba(179, 92, 255, 0.65);

    border-radius: 50%;

    color: #b85cff;

    background:
        radial-gradient(circle,
            rgba(139, 61, 255, 0.20),
            rgba(8, 7, 14, 0.96));

    font-family: "Space Grotesk", sans-serif;

    font-size: 2rem;

    font-weight: 800;

    box-shadow:
        0 0 0 8px rgba(139, 61, 255, 0.035),
        0 0 28px rgba(139, 61, 255, 0.20);

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


.footer-logo:hover {
    transform:
        rotate(-7deg) scale(1.06);

    box-shadow:
        0 0 0 9px rgba(139, 61, 255, 0.05),
        0 0 35px rgba(139, 61, 255, 0.35);
}


/* =========================================================
   BRAND TEXT
========================================================= */

.footer-brand-content h3 {
    margin: 0;

    display: flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 1.15rem;

    font-weight: 700;

    letter-spacing: 0.25em;
}


.brand-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 12px #a855f7;
}


/* =========================================================
   ROLES
========================================================= */

.footer-roles {
    margin-top: 9px;

    display: flex;

    align-items: center;

    gap: 11px;

    color: #9999a5;

    font-size: 0.76rem;
}


.footer-roles i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #9f48ff;

    box-shadow:
        0 0 8px rgba(159, 72, 255, 0.7);
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 16px;
}


.footer-socials a {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(168, 85, 247, 0.45);

    border-radius: 50%;

    color: #ffffff;

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

    font-size: 1.15rem;

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


.footer-socials a:hover {
    transform:
        translateY(-5px);

    border-color: #b35cff;

    background:
        rgba(139, 61, 255, 0.12);

    box-shadow:
        0 0 25px rgba(139, 61, 255, 0.25);
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
    min-height: 90px;

    padding: 15px 38px;

    display: grid;

    grid-template-columns:
        minmax(80px, 1fr) auto minmax(80px, 1fr);

    align-items: center;

    gap: 30px;
}


/* =========================================================
   DECORATIVE LINES
========================================================= */

.footer-decoration {
    display: flex;

    align-items: center;

    gap: 14px;
}


.footer-decoration.right {
    justify-content: flex-end;
}


.footer-line {
    display: block;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(90deg,
            #a64cff,
            rgba(166, 76, 255, 0.05));
}


.footer-decoration.right .footer-line {
    background:
        linear-gradient(90deg,
            rgba(166, 76, 255, 0.05),
            #a64cff);
}


.footer-star {
    color: #c76fff;

    font-size: 1.15rem;

    text-shadow:
        0 0 15px rgba(199, 111, 255, 0.9);
}


/* =========================================================
   CENTER COPYRIGHT
========================================================= */

.footer-center {
    min-width: 410px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.footer-copyright {
    margin: 0;

    color: #a4a4ae;

    font-size: 0.8rem;

    line-height: 1.4;
}


.footer-copyright span {
    color: #b45cff;
}


/* =========================================================
   DEVELOPED BY
========================================================= */

.footer-developed {
    margin-top: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #ffffff;
}


.developed-text {
    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1rem;

    font-weight: 700;
}


.footer-developed strong {
    color: #bb64ff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: 0.01em;

    text-shadow:
        0 0 16px rgba(187, 100, 255, 0.25);
}


.developed-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #a855f7;

    box-shadow:
        0 0 10px rgba(168, 85, 247, 0.9);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-top {
        padding:
            20px 25px;
    }


    .footer-bottom {
        padding:
            18px 25px;

        grid-template-columns:
            1fr;
    }


    .footer-decoration {
        display: none;
    }


    .footer-center {
        min-width: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding:
            12px;
    }


    .footer-top {
        min-height: auto;

        padding:
            25px 18px;

        flex-direction: column;

        text-align: center;
    }


    .footer-brand {
        flex-direction: column;
    }


    .footer-brand-content h3 {
        justify-content: center;
    }


    .footer-roles {
        justify-content: center;

        flex-wrap: wrap;
    }


    .footer-socials a {
        width: 46px;
        height: 46px;
    }


    .footer-bottom {
        min-height: auto;

        padding:
            20px 15px;
    }


    .footer-developed {
        flex-wrap: wrap;
    }


    .developed-text {
        font-size: 0.9rem;
    }


    .footer-developed strong {
        font-size: 1.05rem;
    }

}


.detail-main-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.detail-main-icon img {
    width: 72%;
    height: 72%;

    display: block;

    object-fit: contain;

    opacity: 1;
    visibility: visible;

    pointer-events: none;
}
/* =========================================================
   FINAL DESKTOP VIEWPORT-FIT SYSTEM
   Skills / Projects / Client Proof / Contact
   ---------------------------------------------------------
   Purpose:
   - each section opens completely below the fixed navbar
   - no internal page scroll is needed to understand one section
   - project heading + preview + details + 01/02/03 nav stay visible
   - compact professional laptop layout
   - mobile/tablet behaviour is handled separately by responsive.css
========================================================= */

:root {
    --desktop-header-offset: 94px;
    --desktop-panel-height: calc(100vh - var(--desktop-header-offset));
}

/* Anchor clicks land directly below the fixed glass navbar */
#skills,
#projects,
#testimonials,
#contact {
    scroll-margin-top: var(--desktop-header-offset);
}

/* The HTML hook added to the four requested sections */
.viewport-fit-section {
    height: var(--desktop-panel-height);
    min-height: 0;
    max-height: var(--desktop-panel-height);
    overflow: hidden;
}


/* =========================================================
   SKILLS — ONE LAPTOP SCREEN
========================================================= */

#skills.skills-section {
    padding: 10px 0 12px;
}

#skills .skills-container {
    width: min(calc(100% - 52px), 1480px);
    height: 100%;
    min-height: 0;

    display: grid;
    grid-template-columns:
        minmax(215px, 0.72fr)
        minmax(500px, 1.5fr)
        minmax(250px, 0.78fr);

    align-items: center;
    gap: 24px;
}

/* Left heading/details slightly more compact */
#skills .skills-label {
    margin-bottom: 8px;
    font-size: 0.64rem;
}

#skills .skills-heading {
    font-size: clamp(1.9rem, 2.75vw, 3rem);
    line-height: 1.01;
}

#skills .skills-heading-line {
    margin-top: 15px;
}

#skills .skills-description {
    max-width: 270px;
    margin-top: 13px;
    font-size: 0.78rem;
    line-height: 1.6;
}

#skills .skills-stats {
    margin-top: 22px;
    gap: 11px;
}

#skills .skills-stat {
    gap: 11px;
}

#skills .skills-stat-icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    font-size: 0.9rem;
}

#skills .skills-stat strong {
    font-size: 1.2rem;
}

#skills .skills-stat span {
    margin-top: 3px;
    font-size: 0.66rem;
}

/* Orbit kept fully visible inside the available height */
#skills .skills-orbit {
    width: min(100%, 610px);
    max-width: min(610px, calc(var(--desktop-panel-height) - 26px));
    max-height: calc(var(--desktop-panel-height) - 26px);
    margin-inline: auto;
}

/* Keep every technology node visually balanced */
#skills .tech-node {
    font-size: 0.68rem;
}

#skills .tech-icon {
    width: 48px;
    height: 48px;
}

#skills .tech-icon img {
    max-width: 39px;
    max-height: 39px;
    object-fit: contain;
}

/* Java belongs on the outer ring with C, Python and Node */
#skills .tech-java {
    left: 7%;
    bottom: 20%;
}

/* Right detail panel */
#skills .tech-details {
    min-height: 0;
    height: auto;
    max-height: calc(var(--desktop-panel-height) - 30px);

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

#skills .detail-main-icon {
    width: 86px;
    height: 86px;
}

#skills .detail-main-icon img {
    width: 68%;
    height: 68%;
    object-fit: contain;
}

#skills .tech-details h3 {
    margin-top: 17px;
    font-size: 1.55rem;
}

#skills .detail-category {
    margin-top: 8px;
    font-size: 0.78rem;
}

#skills .detail-divider {
    margin: 20px 0;
}

#skills #detailDescription {
    font-size: 0.84rem;
    line-height: 1.65;
}

#skills .proficiency {
    margin-top: 25px;
}

#skills .detail-features {
    margin-top: 23px;
    gap: 10px;
    font-size: 0.78rem;
}


/* =========================================================
   PROJECTS — COMPLETE SHOWCASE IN ONE SCREEN
========================================================= */

#projects.projects-section {
    height: var(--desktop-panel-height);
    min-height: 0;
    max-height: var(--desktop-panel-height);

    padding: 10px 0 10px;
    overflow: hidden;
}

#projects > .container {
    width: min(calc(100% - 42px), 1500px);
    height: 100%;
    min-height: 0;

    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    align-content: stretch;
    gap: 8px;
}

/* Header stays visible but does not consume the screen */
#projects .projects-header {
    margin: 0;
    gap: 20px;
    align-items: flex-end;
}

#projects .projects-header .section-label {
    margin-bottom: 4px;
    font-size: 0.62rem;
}

#projects .projects-title {
    font-size: clamp(1.9rem, 2.7vw, 3rem);
    line-height: 0.96;
}

#projects .projects-description {
    max-width: 680px;
    margin-top: 7px;
    font-size: 0.69rem;
    line-height: 1.45;
}

/* Main preview + information */
#projects .project-showcase {
    min-height: 0;
    height: 100%;

    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.82fr);
    align-items: stretch;
    gap: 28px;
}

#projects .project-preview-area,
#projects .project-info {
    min-height: 0;
    height: 100%;
}

#projects .project-preview-area {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

#projects .project-browser {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;

    display: flex;
    flex-direction: column;

    border-radius: 18px;
}

#projects .project-browser-top {
    min-height: 42px;
    height: 42px;
    padding: 0 15px;
}

#projects .browser-dot {
    width: 9px;
    height: 9px;
}

#projects .browser-domain {
    font-size: 0.66rem;
}

#projects .browser-open {
    width: 30px;
    height: 30px;
}

/* Critical: show the complete project screenshot rather than crop it */
#projects .project-browser-screen {
    position: relative;
    flex: 1;
    min-height: 0;
    height: auto;
    overflow: hidden;

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

    background: #07070c;
}

#projects .project-main-image {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: top center;

    transform: none;
    scale: 1;
}

#projects .project-floating-open {
    right: 16px;
    bottom: 16px;

    width: 54px;
    height: 54px;
}

#projects .project-floating-open svg {
    width: 22px;
    height: 22px;
}

#projects .project-reflection {
    display: none;
}

/* Right information kept fully visible */
#projects .project-info {
    position: relative;
    min-height: 0;

    justify-content: center;
    padding: 8px 0;
}

#projects .project-big-number {
    top: -14px;
    left: -12px;
    font-size: clamp(6rem, 9vw, 9rem);
}

#projects .project-status {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 0.58rem;
}

#projects .project-info h3 {
    font-size: clamp(1.65rem, 2.2vw, 2.5rem);
    line-height: 1.03;
}

#projects .project-category {
    margin-top: 12px;
    margin-bottom: 10px;
}

#projects .project-info-description {
    max-width: 500px;
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.55;
}

#projects .project-tech-stack {
    margin-top: 14px;
    gap: 7px;
}

#projects .project-tech-stack span {
    padding: 6px 10px;
    font-size: 0.59rem;
}

#projects .project-actions {
    margin-top: 16px;
    gap: 9px;
}

#projects .project-case-button,
#projects .project-github-button {
    min-height: 41px;
    padding: 0 14px;
    font-size: 0.67rem;
}

/* 01 / 02 / 03 selector bar always visible */
#projects .project-navigation {
    min-height: 58px;
    height: 58px;

    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns:
        46px
        repeat(3, minmax(0, 1fr))
        46px;

    gap: 8px;
}

#projects .project-arrow {
    width: 46px;
    height: 58px;
}

#projects .project-selector {
    min-width: 0;
    height: 58px;
    padding: 7px 10px;
    border-radius: 12px;
}

#projects .project-selector-image {
    width: 70px;
    height: 42px;
}

#projects .project-selector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

#projects .project-selector-number {
    font-size: 0.82rem;
}

#projects .project-selector-content strong {
    font-size: 0.68rem;
}

#projects .project-selector-category {
    margin-top: 2px;
    font-size: 0.53rem;
}

/* Thin progress line at the bottom */
#projects .project-progress {
    min-height: 15px;
    margin: 0;
}

#projects .project-progress-number,
#projects .project-progress-total {
    font-size: 0.61rem;
}


/* =========================================================
   CLIENT PROOF — ONE LAPTOP SCREEN
========================================================= */

#testimonials.client-network-section {
    height: var(--desktop-panel-height);
    min-height: 0;
    max-height: var(--desktop-panel-height);

    padding: 8px 0 9px;
    align-items: stretch;
}

#testimonials .client-network-container {
    width: min(calc(100% - 44px), 1480px);
    height: 100%;
    min-height: 0;

    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 5px;
}

#testimonials .client-network-header {
    margin: 0 auto 2px;
}

#testimonials .client-network-header .section-label {
    margin-bottom: 3px;
    font-size: 0.61rem;
}

#testimonials .client-network-title {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

#testimonials .client-network-description {
    margin-top: 4px;
    font-size: 0.65rem;
    line-height: 1.4;
}

#testimonials .client-network {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
}

/* Slightly reduce nodes/cards so all five reviews are visible */
#testimonials .client-card {
    width: 225px;
    padding: 12px 13px;
}

#testimonials .client-card-featured {
    width: 370px;
    padding: 12px 15px;
}

#testimonials .client-review {
    margin-top: 8px;
    font-size: 0.59rem;
    line-height: 1.42;
}

#testimonials .client-divider {
    margin: 8px 0 7px;
}

#testimonials .client-node {
    width: 66px;
    height: 66px;
}

#testimonials .client-avatar {
    width: 52px;
    height: 52px;
}

#testimonials .client-hub {
    width: 180px;
    height: 180px;
}

#testimonials .hub-core {
    width: 128px;
    height: 128px;
}

#testimonials .orbit-a {
    width: 155px;
    height: 155px;
}

#testimonials .orbit-b {
    width: 180px;
    height: 180px;
}

/* Bottom proof/stat strip remains visible */
#testimonials .client-stats {
    min-height: 52px;
    height: 52px;

    margin-top: 0;
    padding: 6px 14px;
}

#testimonials .client-stat {
    gap: 8px;
}

#testimonials .client-stat svg {
    width: 18px;
    height: 18px;
}

#testimonials .client-stat strong {
    font-size: 0.9rem;
}

#testimonials .client-stat span {
    font-size: 0.5rem;
}


/* =========================================================
   CONTACT — COMPLETE CARD IN ONE LAPTOP SCREEN
========================================================= */

#contact.contact-section {
    height: var(--desktop-panel-height);
    min-height: 0 !important;
    max-height: var(--desktop-panel-height);

    padding: 8px 0 !important;
    margin: 0 !important;

    align-items: stretch;
    overflow: hidden;
}

#contact .contact-container {
    width: min(calc(100% - 42px), 1480px);
    height: 100%;
    min-height: 0;
}

#contact .contact-shell {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;

    padding: 18px 22px;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(410px, 0.82fr);

    gap: 24px;

    border-radius: 22px;
}

#contact .contact-left {
    min-height: 0;
    height: 100%;
    padding: 3px 4px;
}

#contact .contact-label {
    padding: 5px 9px;
    font-size: 0.57rem;
}

#contact .contact-title {
    margin-top: 10px;
    font-size: clamp(1.8rem, 2.45vw, 2.65rem);
}

#contact .contact-description {
    margin-top: 8px;
    max-width: 390px;
    font-size: 0.63rem;
    line-height: 1.45;
}

#contact .contact-details {
    width: 300px;
    margin-top: 10px;
    gap: 0;
}

#contact .contact-detail {
    min-height: 40px;
    padding: 4px 0;
    gap: 10px;
}

#contact .contact-detail-icon {
    width: 32px;
    height: 32px;
}

#contact .contact-detail strong {
    margin-top: 2px;
    font-size: 0.59rem;
}

#contact .contact-orb-area {
    right: 0;
    bottom: -28px;

    width: 300px;
    height: 305px;
}

#contact .contact-globe {
    width: 130px;
    height: 130px;
}

#contact .contact-globe svg {
    width: 55px;
    height: 55px;
}

#contact .orbit-one {
    width: 185px;
    height: 185px;
}

#contact .orbit-two {
    width: 225px;
    height: 225px;
}

#contact .orbit-three {
    width: 270px;
    height: 270px;
}

/* Form */
#contact .contact-form-card {
    align-self: center;
    max-height: 100%;
    padding: 15px 16px;
    border-radius: 18px;
}

#contact .contact-form-header {
    margin-bottom: 9px;
}

#contact .contact-form-header h3 {
    font-size: 1rem;
}

#contact .contact-form {
    gap: 7px;
}

#contact .contact-form-row {
    gap: 7px;
}

#contact .contact-field {
    min-height: 42px;
    padding: 0 11px;
    border-radius: 9px;
}

#contact .contact-field input,
#contact .contact-field select,
#contact .contact-field textarea {
    font-size: 0.68rem;
}

#contact .contact-textarea {
    min-height: 88px;
    padding-top: 10px;
}

#contact .contact-textarea textarea {
    min-height: 64px;
}

#contact .contact-submit {
    min-height: 43px;
    font-size: 0.72rem;
}

#contact .contact-status {
    min-height: 42px;
    margin-top: 7px;
    padding: 6px 10px;
}

#contact .contact-status-item {
    gap: 6px;
}

#contact .contact-status-item svg {
    width: 15px;
    height: 15px;
}

#contact .contact-status-item span {
    font-size: 0.42rem;
}

#contact .contact-status-item strong {
    font-size: 0.47rem;
}


/* =========================================================
   GENERAL SECTION FIT POLISH
========================================================= */

#skills *,
#projects *,
#testimonials *,
#contact * {
    min-width: 0;
}

/* Prevent decorative effects from creating accidental page width */
#skills,
#projects,
#testimonials,
#contact {
    contain: layout paint;
}


/* =========================================================
   FINAL FIX — PROJECT NAVIGATION + MY PROCESS
   KEEP THIS AT THE VERY BOTTOM OF style.css
========================================================= */


/* =========================================================
   1. PROJECT NAVIGATION
========================================================= */

@media (min-width: 1100px) {

    #projects .project-navigation {
        width: 100%;

        display: grid;
        grid-template-columns:
            58px
            repeat(3, minmax(0, 1fr))
            58px;

        align-items: stretch;

        gap: 10px;

        margin: 10px 0 0;
        padding: 0;

        height: 76px;
        min-height: 76px;
    }


    /* LEFT / RIGHT ARROWS */

    #projects .project-arrow {
        width: 58px;
        height: 76px;
        min-width: 58px;
        min-height: 76px;

        padding: 0;

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

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

        border-radius: 14px;

        color: #a5a5b0;

        background:
            linear-gradient(
                145deg,
                rgba(18, 18, 27, 0.92),
                rgba(8, 8, 14, 0.96)
            );

        cursor: pointer;

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


    #projects .project-arrow svg {
        width: 21px;
        height: 21px;

        stroke-width: 1.8;
    }


    #projects .project-arrow:hover {
        color: #ffffff;

        transform: translateY(-2px);

        border-color:
            rgba(168, 85, 247, 0.55);

        background:
            linear-gradient(
                145deg,
                rgba(41, 22, 67, 0.9),
                rgba(12, 10, 20, 0.96)
            );

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.28),
            0 0 20px rgba(139, 61, 255, 0.12);
    }


    /* =====================================================
       PROJECT CARDS
    ===================================================== */

    #projects .project-selector {
        position: relative;

        width: 100%;
        min-width: 0;

        height: 76px;
        min-height: 76px;

        padding: 8px 14px;

        display: grid;

        grid-template-columns:
            92px minmax(0, 1fr);

        align-items: center;

        gap: 14px;

        overflow: hidden;

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

        border-radius: 14px;

        background:
            linear-gradient(
                145deg,
                rgba(16, 16, 25, 0.93),
                rgba(8, 8, 14, 0.96)
            );

        text-align: left;

        cursor: pointer;

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


    #projects .project-selector::before {
        content: "";

        position: absolute;
        inset: 0;

        opacity: 0;

        pointer-events: none;

        background:
            radial-gradient(
                260px circle at 18% 50%,
                rgba(139, 61, 255, 0.18),
                transparent 65%
            );

        transition:
            opacity 0.3s ease;
    }


    #projects .project-selector:hover,
    #projects .project-selector.active {
        transform: translateY(-2px);

        border-color:
            rgba(157, 75, 255, 0.55);

        background:
            linear-gradient(
                145deg,
                rgba(35, 19, 57, 0.88),
                rgba(10, 9, 17, 0.96)
            );

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.25),
            0 0 22px rgba(139, 61, 255, 0.08);
    }


    #projects .project-selector:hover::before,
    #projects .project-selector.active::before {
        opacity: 1;
    }


    /* PROJECT THUMBNAIL */

    #projects .project-selector-image {
        position: relative;

        z-index: 2;

        width: 92px;
        height: 56px;

        overflow: hidden;

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

        border-radius: 10px;

        background: #08080d;
    }


    #projects .project-selector-image img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: top center;

        transition:
            transform 0.4s cubic-bezier(
                0.22,
                1,
                0.36,
                1
            );
    }


    #projects .project-selector:hover
    .project-selector-image img,

    #projects .project-selector.active
    .project-selector-image img {

        transform: scale(1.055);
    }


    /* PROJECT TEXT */

    #projects .project-selector-content {
        position: relative;

        z-index: 2;

        min-width: 0;
    }


    #projects .project-selector-number {
        display: block;

        margin: 0 0 4px;

        color: #9f45ff;

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size: 0.9rem;

        font-weight: 700;

        line-height: 1;
    }


    #projects .project-selector-content strong {
        display: block;

        overflow: hidden;

        color: #ffffff;

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size: 0.78rem;

        font-weight: 600;

        line-height: 1.2;

        white-space: nowrap;

        text-overflow: ellipsis;
    }


    #projects .project-selector-category {
        display: block;

        margin-top: 3px;

        overflow: hidden;

        color: #858590;

        font-size: 0.58rem;

        line-height: 1.2;

        white-space: nowrap;

        text-overflow: ellipsis;
    }


    /* =====================================================
       PROJECT PROGRESS LINE
    ===================================================== */

    #projects .project-progress {
        width:
            min(100%, 720px);

        height: 14px;

        min-height: 14px;

        margin:
            5px auto 0;

        padding: 0;

        display: flex;

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


    #projects .project-progress-track {
        width: 100%;

        height: 2px;

        overflow: hidden;

        border-radius: 999px;

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


    #projects .project-progress-bar {
        height: 100%;

        border-radius: inherit;

        background:
            linear-gradient(
                90deg,
                #7d34f5,
                #b75cff
            );

        box-shadow:
            0 0 12px
            rgba(160, 73, 255, 0.55);
    }


    #projects .project-progress-number,
    #projects .project-progress-total {
        display: none !important;
    }
}



/* =========================================================
   2. MY PROCESS — FIX NAVBAR OVERLAP
========================================================= */

@media (min-width: 1100px) {

    /*
       IMPORTANT:
       Do NOT vertically center this section.
       That is one reason the heading was getting pushed
       behind the navbar.
    */

    #process.process-section {
        position: relative;

        height: auto !important;
        min-height: calc(100vh - 92px) !important;
        max-height: none !important;

        padding:
            112px 0 32px !important;

        display: block !important;

        overflow: visible !important;
    }


    #process .process-container {
        width:
            min(
                calc(100% - 60px),
                1500px
            );

        height: auto !important;
        min-height: 0;

        margin-inline: auto;

        display: block !important;
    }


    /* =====================================================
       PROCESS HEADER
    ===================================================== */

    #process .process-header {
        width: 100%;

        max-width: 900px;

        margin:
            0 auto 22px !important;

        padding: 0;

        text-align: center;

        transform: none !important;
    }


    #process .process-header .section-label,
    #process .section-label-compact {

        display: block;

        margin:
            0 0 8px !important;

        color: #a94cff;

        font-size: 0.66rem;

        font-weight: 700;

        letter-spacing: 0.16em;

        line-height: 1.2;

        text-transform: uppercase;
    }


    #process .process-title {
        margin: 0 !important;

        font-family:
            "Space Grotesk",
            sans-serif;

        font-size:
            clamp(
                2.7rem,
                3.6vw,
                4rem
            ) !important;

        font-weight: 650;

        line-height: 1 !important;

        letter-spacing: -0.045em;
    }


    #process .process-description {
        max-width: 720px;

        margin:
            12px auto 0 !important;

        color: #999aa5;

        font-size: 0.84rem !important;

        line-height: 1.55 !important;
    }


    /* =====================================================
       PROCESS 01 / 02 / 03 / 04
    ===================================================== */

    #process .process-timeline {
        position: relative;

        width: 100%;

        margin:
            0 auto 18px !important;

        display: grid;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        align-items: start;
    }


    #process .process-step {
        min-height: 145px;

        padding:
            12px 20px !important;
    }


    /* =====================================================
       DASHBOARD
    ===================================================== */

    #process .process-dashboard {
        width: 100%;

        height: 310px !important;

        min-height: 310px !important;

        max-height: 310px !important;

        margin: 0;

        overflow: hidden;

        border-radius: 18px;
    }


    #process .process-sidebar {
        height: 100%;

        overflow: hidden;
    }


    #process .process-console {
        height: 100%;

        overflow: hidden;
    }


    #process .process-console-body {
        height:
            calc(100% - 42px) !important;

        min-height: 0 !important;

        overflow: hidden;
    }


    #process .process-current {
        height: 100%;

        overflow: hidden;
    }


    /* =====================================================
       BOTTOM IDEA → LAUNCH
    ===================================================== */

    #process .process-bottom {
        margin-top:
            12px !important;

        min-height: 54px;

        display: flex;

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



/* =========================================================
   3. SHORT LAPTOP SCREENS
   1366x768 / 1536x864 etc.
========================================================= */

@media
(min-width: 1100px)
and (max-height: 850px) {

    #process.process-section {
        padding-top:
            102px !important;

        padding-bottom:
            18px !important;
    }


    #process .process-header {
        margin-bottom:
            12px !important;
    }


    #process .process-header .section-label,
    #process .section-label-compact {

        margin-bottom:
            5px !important;
    }


    #process .process-title {
        font-size:
            clamp(
                2.35rem,
                3.1vw,
                3.25rem
            ) !important;
    }


    #process .process-description {
        margin-top:
            7px !important;

        font-size:
            0.76rem !important;
    }


    #process .process-timeline {
        margin-bottom:
            10px !important;
    }


    #process .process-step {
        min-height:
            125px;

        padding:
            8px 16px !important;
    }


    #process .process-dashboard {
        height:
            275px !important;

        min-height:
            275px !important;

        max-height:
            275px !important;
    }


    #process .process-bottom {
        min-height:
            45px;

        margin-top:
            8px !important;
    }
}

/* MORE TOP SPACE FOR MY JOURNEY */
#journey.journey-section {
    padding-top: 75px !important;
}
/* =========================================================
   SKILLS — PERFECT OUTER ORBIT ALIGNMENT
   Put this at the VERY BOTTOM of style.css
========================================================= */

@media (min-width: 1100px) {

    #skills .skills-orbit {
        position: relative;

        width: 620px;
        height: 620px;

        max-width: 620px;
        max-height: 620px;

        margin-inline: auto;

        overflow: visible;
    }


    /* OUTERMOST VISIBLE RING */

    #skills .orbit-ring-4 {
        width: 560px !important;
        height: 560px !important;
    }


    /* ALL TECHNOLOGY NODES — SAME EXACT RADIUS */

    #skills .tech-node {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        right: auto !important;
        bottom: auto !important;

        width: 86px;
        min-width: 86px;

        margin: 0 !important;

        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateX(280px)
            rotate(calc(var(--angle) * -1)) !important;

        transform-origin: center center !important;
    }


    /* EVEN 36° DISTRIBUTION */

    #skills .tech-html {
        --angle: -90deg;
    }

    #skills .tech-js {
        --angle: -54deg;
    }

    #skills .tech-next {
        --angle: -18deg;
    }

    #skills .tech-c {
        --angle: 18deg;
    }

    #skills .tech-python {
        --angle: 54deg;
    }

    #skills .tech-mongodb {
        --angle: 90deg;
    }

    #skills .tech-nodejs {
        --angle: 126deg;
    }

    #skills .tech-java {
        --angle: 162deg;
    }

    #skills .tech-react {
        --angle: 198deg;
    }

    #skills .tech-css {
        --angle: 234deg;
    }


    /* SAME ICON CIRCLE SIZE */

    #skills .tech-icon {
        width: 58px !important;
        height: 58px !important;

        margin-inline: auto;

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

        border-radius: 50%;
    }


    /* SAME LOGO VISUAL SIZE */

    #skills .tech-icon img {
        width: 45px !important;
        height: 45px !important;

        max-width: 45px !important;
        max-height: 45px !important;

        object-fit: contain;
    }


    /* SAME LABEL POSITION */

    #skills .tech-node > span {
        display: block;

        margin-top: 7px;

        font-size: 0.72rem;

        line-height: 1;

        text-align: center;

        white-space: nowrap;
    }


    /* HOVER WITHOUT BREAKING ORBIT POSITION */

    #skills .tech-node:hover {
        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateX(280px)
            rotate(calc(var(--angle) * -1))
            scale(1.05) !important;
    }
}

