/* =========================================================
   REYHAN HARDIANSYAH - PORTFOLIO
   Main Stylesheet
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    /* Background */
    --bg-primary: #050816;
    --bg-secondary: #080d1c;
    --bg-card: #0b1122;

    /* Accent */
    --primary: #8b5cf6;
    --primary-light: #a78bfa;
    --secondary: #6366f1;

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Border */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.45);

    /* Effects */
    --glass: rgba(10, 15, 30, 0.72);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --purple-glow: rgba(139, 92, 246, 0.25);

    /* Layout */
    --container: 1200px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    /* Transition */
    --transition: 0.3s ease;

}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(99, 102, 241, 0.08),
            transparent 30%
        ),
        var(--bg-primary);

    color: var(--text-primary);

    min-height: 100vh;

    overflow-x: hidden;

    line-height: 1.6;

}


body::selection {
    background: var(--primary);
    color: white;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================================
   4. CUSTOM CURSOR
========================================================= */

.cursor-dot {

    position: fixed;

    width: 7px;
    height: 7px;

    background: #ffffff;

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    transform:
        translate(-50%, -50%);

}


.cursor-outline {

    position: fixed;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.35
        );

    border-radius: 50%;

    pointer-events: none;

    z-index: 9998;

    transform:
        translate(-50%, -50%);

    transition:
        width 0.25s ease,
        height 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;

}


/* =========================================================
   5. BACKGROUND GLOW
========================================================= */

.background-glow {

    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: -1;

}


.glow-1 {

    top: -250px;
    right: -150px;

    background:
        rgba(
            139,
            92,
            246,
            0.14
        );

}


.glow-2 {

    bottom: -300px;
    left: -200px;

    background:
        rgba(
            99,
            102,
            241,
            0.10
        );

}


/* =========================================================
   6. NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    display: flex;
    align-items: center;

    z-index: 1000;

    transition:
        background 0.3s ease,
        border 0.3s ease,
        backdrop-filter 0.3s ease;

}


.navbar.scrolled {

    background:
        rgba(
            5,
            8,
            22,
            0.78
        );

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        var(--border);

}


/* Navbar Container */

.navbar-container {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;

}


/* =========================================================
   7. LOGO
========================================================= */

.logo {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

}


.logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 14px
            rgba(
                139,
                92,
                246,
                0.18
            )
        );

    transition:
        transform 0.3s ease,
        filter 0.3s ease;

}


.logo:hover img {

    transform:
        scale(1.08);

    filter:
        drop-shadow(
            0 0 20px
            rgba(
                139,
                92,
                246,
                0.45
            )
        );

}


/* =========================================================
   8. DESKTOP NAVIGATION
========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;

}


.nav-link {

    position: relative;

    font-size: 13px;

    font-weight: 500;

    color:
        var(--text-secondary);

    padding: 8px 0;

    transition:
        color var(--transition);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    transition:
        width 0.3s ease;

}


.nav-link:hover,
.nav-link.active {

    color:
        var(--text-primary);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


/* =========================================================
   9. NAV BUTTON
========================================================= */

.nav-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        10px 17px;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.35
        );

    border-radius: 100px;

    font-size: 13px;

    font-weight: 600;

    background:
        rgba(
            139,
            92,
            246,
            0.08
        );

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);

}


.nav-button:hover {

    transform:
        translateY(-2px);

    background:
        rgba(
            139,
            92,
            246,
            0.15
        );

    border-color:
        rgba(
            139,
            92,
            246,
            0.65
        );

    box-shadow:
        0 8px 30px
        rgba(
            139,
            92,
            246,
            0.15
        );

}


.button-arrow {

    font-size: 17px;

    transition:
        transform 0.3s ease;

}


.nav-button:hover .button-arrow {

    transform:
        translate(
            2px,
            -2px
        );

}


/* =========================================================
   10. MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.03
        );

    border-radius: 10px;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    width: 19px;
    height: 1.5px;

    background: white;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


/* =========================================================
   11. MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    top: 82px;
    left: 0;

    width: 100%;

    padding: 25px;

    display: none;

    flex-direction: column;

    gap: 5px;

    background:
        rgba(
            5,
            8,
            22,
            0.96
        );

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        var(--border);

    z-index: 999;

}


.mobile-menu.active {

    display: flex;

}


.mobile-link {

    padding: 15px;

    border-radius: 10px;

    color:
        var(--text-secondary);

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.mobile-link:hover {

    color: white;

    background:
        rgba(
            139,
            92,
            246,
            0.1
        );

}


/* =========================================================
   12. HERO
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding-top: 82px;

}


.hero-container {

    min-height:
        calc(
            100vh - 82px
        );

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    align-items: center;

    gap: 70px;

}


/* =========================================================
   13. HERO CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 5;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        7px 12px;

    margin-bottom: 25px;

    border:
        1px solid
        var(--border);

    border-radius: 100px;

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 10px;

    letter-spacing:
        0.08em;

    color:
        var(--text-secondary);

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #4ade80;

    box-shadow:
        0 0 12px
        rgba(
            74,
            222,
            128,
            0.7
        );

    animation:
        pulse-dot 2s infinite;

}


@keyframes pulse-dot {

    0%,
    100% {

        opacity: 1;

        transform:
            scale(1);

    }

    50% {

        opacity: 0.45;

        transform:
            scale(0.75);

    }

}


/* =========================================================
   14. HERO TITLE
========================================================= */

.hero-title {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            48px,
            5.2vw,
            78px
        );

    line-height: 1.03;

    letter-spacing:
        -0.045em;

    font-weight: 600;

    max-width: 800px;

}


.gradient-text {

    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #c4b5fd 35%,
            #8b5cf6 70%,
            #6366f1 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;

}


.hero-highlight {

    color:
        var(--text-secondary);

}


.typing-wrapper {

    display: inline-block;

    min-width: 230px;

}


.typing-text {

    color:
        var(--primary-light);

    position: relative;

}


.typing-text::after {

    content: "";

    display: inline-block;

    width: 2px;

    height: 0.8em;

    margin-left: 6px;

    vertical-align: -2px;

    background:
        var(--primary-light);

    animation:
        blink-cursor 0.8s infinite;

}


@keyframes blink-cursor {

    0%,
    45% {

        opacity: 1;

    }

    46%,
    100% {

        opacity: 0;

    }

}


/* =========================================================
   15. HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 610px;

    margin-top: 28px;

    font-size: 16px;

    line-height: 1.8;

    color:
        var(--text-secondary);

}


/* =========================================================
   16. ROLE TAGS
========================================================= */

.role-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;

}


.role-tag {

    padding:
        7px 11px;

    border:
        1px solid
        var(--border);

    border-radius: 7px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 10px;

    color:
        var(--text-muted);

    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;

}


.role-tag:hover {

    color:
        var(--primary-light);

    border-color:
        rgba(
            139,
            92,
            246,
            0.35
        );

    background:
        rgba(
            139,
            92,
            246,
            0.06
        );

    transform:
        translateY(-2px);

}


/* =========================================================
   17. HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 32px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding:
        0 20px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;

}


.btn-primary {

    background:
        linear-gradient(
            110deg,
            var(--primary),
            var(--secondary)
        );

    color: white;

    box-shadow:
        0 10px 35px
        rgba(
            99,
            102,
            241,
            0.20
        );

}


.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(
            99,
            102,
            241,
            0.35
        );

}


.btn-secondary {

    border:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    color:
        var(--text-secondary);

}


.btn-secondary:hover {

    transform:
        translateY(-3px);

    border-color:
        var(--border-hover);

    color: white;

    background:
        rgba(
            139,
            92,
            246,
            0.06
        );

}


.btn-icon {

    font-size: 17px;

    transition:
        transform 0.3s ease;

}


.btn:hover .btn-icon {

    transform:
        translate(
            2px,
            -2px
        );

}


/* =========================================================
   18. HERO STACK
========================================================= */

.hero-stack {

    margin-top: 45px;

}


.stack-label {

    display: block;

    margin-bottom: 13px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    letter-spacing:
        0.12em;

    color:
        var(--text-muted);

}


.stack-list {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

}


.stack-item {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 10px;

    color:
        var(--text-secondary);

    padding:
        7px 10px;

    border:
        1px solid
        var(--border);

    border-radius: 6px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;

}


.stack-item:hover {

    color:
        var(--primary-light);

    border-color:
        rgba(
            139,
            92,
            246,
            0.35
        );

}


/* =========================================================
   19. HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    top : -100px;

}


.hero-circle {

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.15
        );

    box-shadow:
        0 0 100px
        rgba(
            139,
            92,
            246,
            0.08
        );

    animation:
        circle-float 6s ease-in-out infinite;

}


.hero-circle::before {

    content: "";

    position: absolute;

    inset: 35px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(
            139,
            92,
            246,
            0.16
        );

    animation:
        rotate-circle 25s linear infinite;

}


@keyframes circle-float {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


@keyframes rotate-circle {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   20. PROFILE IMAGE
========================================================= */

.profile-wrapper {

    position: relative;

    width: 300px;
    height: 360px;

    z-index: 3;

}


.profile-ring {

    position: absolute;

    inset: -15px;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.35
        );

    border-radius:
        45% 55% 50% 50%;

    transform:
        rotate(-7deg);

    animation:
        profile-ring 7s ease-in-out infinite;

}


@keyframes profile-ring {

    0%,
    100% {

        transform:
            rotate(-7deg)
            scale(1);

    }

    50% {

        transform:
            rotate(5deg)
            scale(1.03);

    }

}


.profile-image {

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius:
        30px;

    background:
        linear-gradient(
            145deg,
            #11182b,
            #080c18
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    box-shadow:
        0 30px 70px
        rgba(
            0,
            0,
            0,
            0.4
        );

}


.profile-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* =========================================================
   21. CODE CARD
========================================================= */

.code-card {

    position: absolute;

    right: -35px;
    bottom: 35px;

    width: 245px;

    z-index: 5;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );

    border-radius: 13px;

    overflow: hidden;

    background:
        rgba(
            8,
            13,
            28,
            0.90
        );

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            0.35
        );

    animation:
        code-float 5s ease-in-out infinite;

}


@keyframes code-float {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-9px);

    }

}


.code-header {

    height: 35px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        0 12px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

}


.code-dots {

    display: flex;

    gap: 4px;

}


.code-dots span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.2
        );

}


.code-title {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    color:
        var(--text-muted);

}


.code-body {

    padding:
        17px;

}


.code-body pre {

    margin: 0;

    overflow: hidden;

}


.code-body code {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    line-height: 1.8;

    color:
        var(--text-secondary);

}


.code-purple {

    color:
        #a78bfa;

}


.code-green {

    color:
        #86efac;

}


/* =========================================================
   22. FLOATING ELEMENTS
========================================================= */

.floating-element {

    position: absolute;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 11px;

    color:
        var(--primary-light);

    background:
        rgba(
            11,
            17,
            34,
            0.8
        );

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.2
        );

    backdrop-filter:
        blur(10px);

    border-radius: 10px;

    box-shadow:
        0 15px 30px
        rgba(
            0,
            0,
            0,
            0.2
        );

}


.floating-1 {

    width: 52px;
    height: 52px;

    top: 110px;
    left: 25px;

    animation:
        floating-one 5s ease-in-out infinite;

}


.floating-2 {

    width: 48px;
    height: 48px;

    top: 200px;
    right: 35px;

    animation:
        floating-two 6s ease-in-out infinite;

}


.floating-3 {

    width: 42px;
    height: 42px;

    bottom: 135px;
    left: 70px;

    font-size: 18px;

    border: none;

    background:
        transparent;

    animation:
        floating-three 4s ease-in-out infinite;

}


.floating-4 {

    width: 52px;
    height: 38px;

    bottom: 95px;
    right: 65px;

    font-size: 9px;

    animation:
        floating-four 7s ease-in-out infinite;

}


@keyframes floating-one {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(-5deg);

    }

    50% {

        transform:
            translateY(-18px)
            rotate(5deg);

    }

}


@keyframes floating-two {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(5deg);

    }

    50% {

        transform:
            translateY(15px)
            rotate(-5deg);

    }

}


@keyframes floating-three {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0);

    }

    50% {

        transform:
            translateY(-15px)
            rotate(180deg);

    }

}


@keyframes floating-four {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


/* =========================================================
   23. DECORATIVE DOTS
========================================================= */

.hero-dots {

    position: absolute;

    top: 90px;
    right: 30px;

    width: 55px;

    display: grid;

    grid-template-columns:
        repeat(5, 4px);

    gap: 8px;

    opacity: 0.45;

}


.hero-dots span {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        var(--primary-light);

}


/* =========================================================
   24. SCROLL INDICATOR
========================================================= */

.scroll-indicator {

    position: absolute;

    bottom: 25px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color:
        var(--text-muted);

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    letter-spacing:
        0.15em;

}


.scroll-line {

    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            to bottom,
            var(--primary),
            transparent
        );

    animation:
        scroll-line 2s ease-in-out infinite;

}


@keyframes scroll-line {

    0%,
    100% {

        transform:
            scaleY(0.5);

        transform-origin:
            top;

    }

    50% {

        transform:
            scaleY(1);

        transform-origin:
            top;

    }

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    position: relative;

    padding:
        10px 0;

}


/* Section pertama setelah Hero */

.about-section {

    padding-top:
        20px;

}


/* Section berikutnya */

.skills-section,
.projects-section,
.experience-section,
.contact-section {

    padding-top:
        100px;

    padding-bottom:
        100px;

}
/* =========================================================
   25. SECTION HEADER
========================================================= */

.section-placeholder {

    max-width: 750px;

}


.placeholder-number {

    display: block;

    margin-bottom: 12px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 12px;

    color:
        var(--primary-light);

}


.section-label {

    display: block;

    margin-bottom: 15px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 10px;

    letter-spacing:
        0.15em;

    color:
        var(--text-muted);

}


.section-placeholder h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            68px
        );

    line-height: 1.05;

    letter-spacing:
        -0.04em;

}


.section-placeholder p {

    max-width: 620px;

    margin-top: 25px;

    color:
        var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   26. ABOUT SECTION
========================================================= */

.about-section {

    min-height: auto;

    padding:
        85px 0 70px;

}


/* =========================================================
   ABOUT HEADING
========================================================= */

.about-heading {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-bottom: 55px;

}


.about-heading-left {

    display: flex;

    align-items: center;

    gap: 18px;

}


.about-heading
.placeholder-number {

    margin: 0;

}


.about-heading
.section-label {

    margin: 0;

}


.about-heading-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(
                139,
                92,
                246,
                0.35
            ),
            transparent
        );

}


/* =========================================================
   ABOUT MAIN
========================================================= */

.about-main {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.82fr);

    gap: 65px;

    align-items: start;

}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {

    max-width: 680px;

}


.about-content h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1.04;

    letter-spacing:
        -0.045em;

    font-weight: 600;

}


.about-content > p {

    color:
        var(--text-secondary);

    font-size: 15px;

    line-height: 1.85;

    margin-top: 20px;

}


.about-content .about-intro {

    color:
        var(--text-primary);

    font-size: 19px;

    line-height: 1.65;

    margin-top: 26px;

}


/* =========================================================
   ABOUT QUOTE
========================================================= */

.about-quote {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-top: 32px;

    padding:
        18px 20px;

    border-left:
        2px solid
        var(--primary);

    background:
        linear-gradient(
            90deg,
            rgba(
                139,
                92,
                246,
                0.08
            ),
            transparent
        );

}


.quote-mark {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 36px;

    line-height: 0.8;

    color:
        var(--primary-light);

}


.about-quote p {

    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 16px;

    font-weight: 500;

    color:
        var(--text-primary);

}


.about-quote span:not(.quote-mark) {

    display: block;

    margin-top: 6px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    color:
        var(--text-muted);

}


/* =========================================================
   ABOUT PROFILE
========================================================= */

.about-profile {

    display: flex;

    flex-direction: column;

    gap: 14px;

}


/* =========================================================
   PROFILE INFO CARD
========================================================= */

.profile-info-card {

    position: relative;

    padding: 23px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(
                139,
                92,
                246,
                0.07
            ),
            rgba(
                255,
                255,
                255,
                0.02
            )
        );

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.profile-info-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(
            139,
            92,
            246,
            0.13
        );

    filter:
        blur(50px);

    pointer-events: none;

}


.profile-info-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.25
        );

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.25
        );

}


/* =========================================================
   PROFILE CARD TOP
========================================================= */

.profile-card-top {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    padding-bottom: 16px;

    border-bottom:
        1px solid
        var(--border);

}


.profile-status {

    display: flex;

    align-items: center;

    gap: 8px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    letter-spacing:
        0.08em;

    color:
        var(--text-muted);

}


.profile-status .status-dot {

    width: 6px;
    height: 6px;

}


.profile-code {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    color:
        var(--text-muted);

}


/* =========================================================
   PROFILE CARD NAME
========================================================= */

.profile-card-name {

    padding:
        25px 0;

}


.profile-greeting {

    display: block;

    margin-bottom: 4px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    color:
        var(--text-muted);

}


.profile-card-name h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 30px;

    line-height: 1.1;

    font-weight: 600;

}


.profile-card-name h3 span {

    color:
        var(--primary-light);

}


/* =========================================================
   PROFILE DETAILS
========================================================= */

.profile-details {

    display: flex;

    flex-direction: column;

}


.profile-detail {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    padding:
        11px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.05
        );

}


.detail-label {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    color:
        var(--text-muted);

}


.detail-value {

    text-align: right;

    font-size: 11px;

    color:
        var(--text-secondary);

}


/* =========================================================
   PROFILE CARD FOOTER
========================================================= */

.profile-card-footer {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    margin-top: 16px;

    padding-top: 15px;

    border-top:
        1px solid
        var(--border);

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    color:
        var(--text-muted);

}


.profile-online {

    color:
        #86efac;

}


/* =========================================================
   FOCUS CARD
========================================================= */

.focus-card {

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        rgba(
            255,
            255,
            255,
            0.018
        );

}


.focus-label {

    display: block;

    margin-bottom: 15px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    letter-spacing:
        0.12em;

    color:
        var(--text-muted);

}


/* =========================================================
   FOCUS GRID
========================================================= */

.focus-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 8px;

}


.focus-item {

    position: relative;

    min-height: 115px;

    padding: 14px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.05
        );

    border-radius:
        10px;

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

}


.focus-item:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.3
        );

    background:
        rgba(
            139,
            92,
            246,
            0.06
        );

}


.focus-number {

    position: absolute;

    top: 9px;
    right: 10px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    color:
        rgba(
            255,
            255,
            255,
            0.18
        );

}


.focus-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;
    height: 30px;

    margin-bottom: 10px;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.2
        );

    border-radius: 7px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    color:
        var(--primary-light);

    background:
        rgba(
            139,
            92,
            246,
            0.08
        );

}


.focus-item strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 12px;

    font-weight: 500;

}


.focus-item small {

    margin-top: 3px;

    font-size: 9px;

    color:
        var(--text-muted);

}


/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 50px;

    border-top:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

}


.about-stat {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding:
        22px 18px;

    border-right:
        1px solid
        var(--border);

}


.about-stat:last-child {

    border-right: none;

}


.stat-number {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    color:
        var(--primary-light);

}


.about-stat strong {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 14px;

    font-weight: 500;

}


.about-stat p {

    margin-top: 4px;

    font-size: 10px;

    line-height: 1.5;

    color:
        var(--text-muted);

}


/* =========================================================
   ABOUT RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-main {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .about-content {

        max-width: 800px;

    }


    .about-profile {

        max-width: 700px;

        width: 100%;

        margin:
            0 auto;

    }


    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-stat:nth-child(2) {

        border-right: none;

    }


    .about-stat:nth-child(-n + 2) {

        border-bottom:
            1px solid
            var(--border);

    }

}


/* =========================================================
   ABOUT RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-section {

        padding:
            70px 0 60px;

    }


    .about-heading {

        margin-bottom: 38px;

    }


    .about-heading-line {

        display: none;

    }


    .about-heading-left {

        gap: 12px;

    }


    .about-content h2 {

        font-size:
            clamp(
                38px,
                11vw,
                52px
            );

    }


    .about-content .about-intro {

        font-size: 16px;

    }


    .about-content > p {

        font-size: 13px;

    }


    .about-quote {

        padding:
            16px;

        margin-top: 26px;

    }


    .about-quote p {

        font-size: 14px;

    }


    .profile-info-card {

        padding: 18px;

    }


    .profile-card-name h3 {

        font-size: 26px;

    }


    .profile-detail {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 4px;

    }


    .detail-value {

        text-align: left;

    }


    .focus-card {

        padding: 16px;

    }


    .focus-grid {

        grid-template-columns:
            1fr;

    }


    .focus-item {

        min-height: 100px;

    }


    .about-stats {

        grid-template-columns:
            1fr;

        margin-top: 35px;

    }


    .about-stat {

        border-right: none;

        border-bottom:
            1px solid
            var(--border);

    }


    .about-stat:last-child {

        border-bottom: none;

    }

}
/* =========================================================
   27. SKILLS SECTION
========================================================= */

.skills-section {

    min-height: auto;

    padding:
        70px 0 75px;

}


/* =========================================================
   SKILLS HEADING
========================================================= */

.skills-heading {

    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap: 40px;

    margin-bottom: 45px;

}


.skills-heading h2 {

    margin-top: 8px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1.04;

    letter-spacing:
        -0.045em;

}


.skills-heading p {

    max-width: 480px;

    margin: 0;

    color:
        var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   SKILLS GRID
========================================================= */

.skills-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

}


/* =========================================================
   SKILL CARD
========================================================= */

.skill-card {

    position: relative;

    min-height: 255px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.025
            ),
            rgba(
                255,
                255,
                255,
                0.008
            )
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


/* =========================================================
   CARD GLOW
========================================================= */

.skill-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    top: -75px;

    right: -65px;

    border-radius: 50%;

    background:
        rgba(
            139,
            92,
            246,
            0.13
        );

    filter:
        blur(40px);

    opacity: 0;

    transition:
        opacity 0.4s ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.skill-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.35
        );

    background:
        linear-gradient(
            145deg,
            rgba(
                139,
                92,
                246,
                0.08
            ),
            rgba(
                255,
                255,
                255,
                0.015
            )
        );

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.25
        );

}


.skill-card:hover::before {

    opacity: 1;

}


/* =========================================================
   SKILL CARD TOP
========================================================= */

.skill-card-top {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

}


.skill-number {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    color:
        var(--primary-light);

}


.skill-type {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.08em;

    color:
        var(--text-muted);

}


/* =========================================================
   SKILL ICON
========================================================= */

.skill-icon {

    width: 48px;

    height: 48px;

    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-weight: 600;

    font-size: 13px;

    color:
        var(--primary-light);

    background:
        rgba(
            139,
            92,
            246,
            0.08
        );

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.18
        );

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.skill-card:hover .skill-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

    background:
        rgba(
            139,
            92,
            246,
            0.15
        );

}


/* =========================================================
   SKILL ICON COLORS
========================================================= */

.php-icon {

    color:
        #a78bfa;

}


.js-icon {

    color:
        #facc15;

}


.mysql-icon {

    color:
        #60a5fa;

}


.laravel-icon {

    color:
        #fb7185;

}


.jira-icon {

    color:
        #60a5fa;

}


.git-icon {

    color:
        #fb923c;

}


.bootstrap-icon {

    color:
        #c084fc;

}


/* =========================================================
   SKILL CARD CONTENT
========================================================= */

.skill-card h3 {

    margin-top: 16px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 18px;

    font-weight: 600;

}


.skill-card p {

    margin-top: 7px;

    max-width: 230px;

    color:
        var(--text-muted);

    font-size: 10px;

    line-height: 1.65;

}


/* =========================================================
   SKILL TAGS
========================================================= */

.skill-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: auto;

    padding-top: 18px;

}


.skill-tags span {

    padding:
        5px 7px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

    border-radius: 5px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    color:
        var(--text-muted);

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

}


/* =========================================================
   CARD ARROW
========================================================= */

.skill-card-arrow {

    position: absolute;

    right: 18px;

    bottom: 18px;

    font-size: 14px;

    color:
        var(--text-muted);

    transition:
        transform 0.3s ease,
        color 0.3s ease;

}


.skill-card:hover
.skill-card-arrow {

    color:
        var(--primary-light);

    transform:
        translate(
            3px,
            -3px
        );

}


/* =========================================================
   SKILLS BOTTOM
========================================================= */

.skills-bottom {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 40px;

}


.skills-bottom-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--border)
        );

}


.skills-bottom-line:last-child {

    background:
        linear-gradient(
            90deg,
            var(--border),
            transparent
        );

}


.skills-bottom span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.14em;

    color:
        var(--text-muted);

}


/* =========================================================
   SKILLS RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .skills-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .skills-heading {

        align-items:
            flex-start;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .skills-section {

        padding:
            65px 0 60px;

    }


    .skills-heading {

        display: block;

        margin-bottom: 35px;

    }


    .skills-heading h2 {

        font-size:
            clamp(
                40px,
                10vw,
                55px
            );

    }


    .skills-heading p {

        max-width: 600px;

        margin-top: 16px;

        font-size: 13px;

    }


    .skills-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;

    }


    .skill-card {

        min-height: 245px;

        padding: 17px;

    }


    .skill-icon {

        width: 44px;

        height: 44px;

        margin-top: 23px;

    }


    .skill-card h3 {

        font-size: 17px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .skills-section {

        padding:
            55px 0 50px;

    }


    .skills-heading {

        margin-bottom: 30px;

    }


    .skills-heading h2 {

        font-size:
            clamp(
                36px,
                11vw,
                48px
            );

    }


    .skills-heading p {

        font-size: 12px;

        line-height: 1.7;

    }


    .skills-grid {

        grid-template-columns:
            1fr;

        gap: 8px;

    }


    .skill-card {

        min-height: 205px;

        padding: 17px;

    }


    .skill-icon {

        width: 42px;

        height: 42px;

        margin-top: 20px;

        font-size: 12px;

    }


    .skill-card h3 {

        margin-top: 14px;

        font-size: 17px;

    }


    .skill-card p {

        font-size: 10px;

    }


    .skill-tags {

        padding-top: 15px;

    }


    .skills-bottom {

        margin-top: 30px;

        gap: 10px;

    }


    .skills-bottom span {

        font-size: 6px;

        text-align: center;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .skills-section {

        padding:
            50px 0 45px;

    }


    .skills-heading h2 {

        font-size: 34px;

    }


    .skill-card {

        min-height: 195px;

    }

}
/* =========================================================
   PROJECTS SECTION
========================================================= */

.projects-section {

    min-height: auto !important;

    padding:
        75px 0 80px !important;

}


/* =========================================================
   PROJECT HEADING
========================================================= */

.projects-heading {

    margin-bottom: 45px;

}


.projects-heading-left {

    display: flex;

    align-items: center;

    gap: 16px;

}


.projects-heading-left
.placeholder-number {

    margin: 0;

}


.projects-heading-left
.section-label {

    margin: 0;

}


.projects-heading-content {

    margin-top: 16px;

}


.projects-heading h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1.04;

    letter-spacing:
        -0.045em;

    font-weight: 600;

}


.projects-heading p {

    max-width: 600px;

    margin-top: 18px;

    color:
        var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   PROJECT GRID
========================================================= */

.projects-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {

    position: relative;

    min-height: 360px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.025
            ),
            rgba(
                255,
                255,
                255,
                0.008
            )
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


/* =========================================================
   CARD GLOW
========================================================= */

.project-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(
            139,
            92,
            246,
            0.13
        );

    filter:
        blur(50px);

    opacity: 0;

    transition:
        opacity 0.4s ease;

}


/* =========================================================
   CARD HOVER
========================================================= */

.project-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.35
        );

    background:
        linear-gradient(
            145deg,
            rgba(
                139,
                92,
                246,
                0.065
            ),
            rgba(
                255,
                255,
                255,
                0.012
            )
        );

    box-shadow:
        0 25px 55px
        rgba(
            0,
            0,
            0,
            0.25
        );

}


.project-card:hover::before {

    opacity: 1;

}


/* =========================================================
   PROJECT CARD TOP
========================================================= */

.project-card-top {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

}


.project-number {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 9px;

    color:
        var(--primary-light);

}


.project-category {

    padding:
        5px 8px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    border-radius:
        100px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.06em;

    color:
        var(--text-muted);

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

}


/* =========================================================
   PROJECT ICON
========================================================= */

.project-icon {

    width: 52px;
    height: 52px;

    margin-top: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.18
        );

    border-radius: 12px;

    background:
        rgba(
            139,
            92,
            246,
            0.07
        );

    color:
        var(--primary-light);

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 12px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.project-card:hover
.project-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

    background:
        rgba(
            139,
            92,
            246,
            0.13
        );

}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-content {

    margin-top: 20px;

}


.project-content h3 {

    max-width: 450px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 24px;

    line-height: 1.15;

    letter-spacing:
        -0.025em;

    font-weight: 600;

}


.project-content p {

    max-width: 500px;

    margin-top: 10px;

    color:
        var(--text-muted);

    font-size: 11px;

    line-height: 1.75;

}


/* =========================================================
   PROJECT TAGS
========================================================= */

.project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 18px;

}


.project-tags span {

    padding:
        5px 7px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

    border-radius: 5px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    color:
        var(--text-muted);

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

}


/* =========================================================
   PROJECT FOOTER
========================================================= */

.project-footer {

    margin-top: auto;

    padding-top: 20px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;

    border-top:
        1px solid
        var(--border);

}


.project-footer > span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.08em;

    color:
        var(--text-muted);

}


.project-link {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-size: 10px;

    font-weight: 600;

    color:
        var(--text-secondary);

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.project-link span {

    font-size: 14px;

}


.project-link:hover {

    color:
        var(--primary-light);

    gap: 10px;

}


/* =========================================================
   PROJECTS BOTTOM
========================================================= */

.projects-bottom {

    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content:
        center;

}


.projects-bottom span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.15em;

    color:
        var(--text-muted);

}


/* =========================================================
   PROJECTS RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .projects-grid {

        grid-template-columns:
            1fr;

    }


    .project-card {

        min-height: 340px;

    }

}


/* =========================================================
   PROJECTS TABLET
========================================================= */

@media (max-width: 768px) {

    .projects-section {

        padding:
            60px 0 65px !important;

    }


    .projects-heading {

        margin-bottom: 35px;

    }


    .projects-heading h2 {

        font-size:
            clamp(
                40px,
                10vw,
                55px
            );

    }


    .projects-heading p {

        max-width: 600px;

        font-size: 13px;

    }


    .project-card {

        min-height: 330px;

        padding: 19px;

    }


    .project-icon {

        margin-top: 28px;

    }


    .project-content h3 {

        font-size: 21px;

    }

}


/* =========================================================
   PROJECTS MOBILE
========================================================= */

@media (max-width: 480px) {

    .projects-section {

        padding:
            50px 0 55px !important;

    }


    .projects-heading-left {

        gap: 11px;

    }


    .projects-heading h2 {

        font-size:
            clamp(
                36px,
                10.5vw,
                48px
            );

    }


    .projects-heading p {

        margin-top: 14px;

        font-size: 12px;

        line-height: 1.7;

    }


    .projects-grid {

        gap: 9px;

    }


    .project-card {

        min-height: 320px;

        padding: 17px;

    }


    .project-number {

        font-size: 8px;

    }


    .project-category {

        padding:
            4px 6px;

        font-size: 6px;

    }


    .project-icon {

        width: 45px;
        height: 45px;

        margin-top: 25px;

        border-radius: 10px;

        font-size: 10px;

    }


    .project-content {

        margin-top: 17px;

    }


    .project-content h3 {

        font-size: 19px;

    }


    .project-content p {

        font-size: 9px;

        line-height: 1.65;

    }


    .project-tags {

        margin-top: 14px;

    }


    .project-tags span {

        padding:
            4px 6px;

        font-size: 6px;

    }


    .project-footer {

        padding-top: 16px;

    }


    .project-footer > span {

        font-size: 6px;

    }


    .project-link {

        font-size: 8px;

    }


    .projects-bottom {

        margin-top: 28px;

    }


    .projects-bottom span {

        font-size: 6px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .project-card {

        min-height: 310px;

    }


    .project-content h3 {

        font-size: 18px;

    }


    .project-content p {

        font-size: 8px;

    }


    .project-footer > span {

        display: none;

    }


    .project-footer {

        justify-content:
            flex-end;

    }

}
/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.experience-section {

    min-height: auto !important;

    padding:
        75px 0 85px !important;

}


/* =========================================================
   EXPERIENCE HEADING
========================================================= */

.experience-heading {

    margin-bottom: 50px;

}


.experience-heading-left {

    display: flex;

    align-items: center;

    gap: 16px;

}


.experience-heading-left
.placeholder-number {

    margin: 0;

}


.experience-heading-left
.section-label {

    margin: 0;

}


.experience-heading-content {

    margin-top: 16px;

}


.experience-heading h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1.04;

    letter-spacing:
        -0.045em;

    font-weight: 600;

}


.experience-heading p {

    max-width: 620px;

    margin-top: 18px;

    color:
        var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   TIMELINE
========================================================= */

.experience-timeline {

    position: relative;

    max-width: 900px;

    margin:
        0 auto;

}


.experience-timeline::before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 115px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(
                139,
                92,
                246,
                0.45
            ),
            var(--border),
            transparent
        );

}


/* =========================================================
   EXPERIENCE ITEM
========================================================= */

.experience-item {

    position: relative;

    display: grid;

    grid-template-columns:
        90px 50px minmax(0, 1fr);

    gap: 15px;

    padding-bottom: 35px;

}


.experience-item:last-child {

    padding-bottom: 0;

}


/* =========================================================
   YEAR
========================================================= */

.experience-year {

    padding-top: 6px;

    text-align: right;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 8px;

    line-height: 1.5;

    color:
        var(--text-muted);

}


/* =========================================================
   MARKER
========================================================= */

.experience-marker {

    position: relative;

    z-index: 2;

    width: 12px;
    height: 12px;

    margin-top: 5px;

    border:
        2px solid
        var(--primary-light);

    border-radius: 50%;

    background:
        var(--bg-primary);

    box-shadow:
        0 0 0 5px
        rgba(
            139,
            92,
            246,
            0.07
        ),
        0 0 15px
        rgba(
            139,
            92,
            246,
            0.25
        );

}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.experience-card {

    padding:
        22px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.025
            ),
            rgba(
                255,
                255,
                255,
                0.008
            )
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


.experience-card:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.30
        );

    background:
        rgba(
            139,
            92,
            246,
            0.04
        );

    box-shadow:
        0 18px 45px
        rgba(
            0,
            0,
            0,
            0.20
        );

}


/* =========================================================
   CARD HEADER
========================================================= */

.experience-card-header {

    display: flex;

    align-items: flex-start;

    justify-content:
        space-between;

    gap: 20px;

}


.experience-title {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 600;

    letter-spacing:
        -0.02em;

}


.experience-company {

    margin-top: 5px;

    font-size: 11px;

    color:
        var(--primary-light);

}


.experience-type {

    flex-shrink: 0;

    padding:
        5px 8px;

    border:
        1px solid
        var(--border);

    border-radius:
        100px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 6px;

    letter-spacing:
        0.08em;

    color:
        var(--text-muted);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.experience-description {

    max-width: 650px;

    margin-top: 14px;

    color:
        var(--text-secondary);

    font-size: 11px;

    line-height: 1.75;

}


/* =========================================================
   TAGS
========================================================= */

.experience-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 17px;

}


.experience-tags span {

    padding:
        5px 7px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

    border-radius: 5px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    color:
        var(--text-muted);

}


/* =========================================================
   EXPERIENCE TABLET
========================================================= */

@media (max-width: 768px) {

    .experience-section {

        padding:
            60px 0 65px !important;

    }


    .experience-heading {

        margin-bottom: 38px;

    }


    .experience-heading h2 {

        font-size:
            clamp(
                40px,
                10vw,
                55px
            );

    }


    .experience-heading p {

        max-width: 600px;

        font-size: 13px;

    }


    .experience-timeline::before {

        left: 7px;

    }


    .experience-item {

        grid-template-columns:
            15px minmax(0, 1fr);

        gap: 18px;

        padding-bottom: 35px;

    }


    .experience-year {

        position: absolute;

        top: -19px;

        left: 33px;

        z-index: 3;

        padding: 0;

        text-align: left;

        font-size: 7px;

    }


    .experience-marker {

        grid-column: 1;

        grid-row: 1;

        width: 13px;
        height: 13px;

    }


    .experience-card {

        grid-column: 2;

        grid-row: 1;

        padding: 19px;

    }


    .experience-title {

        font-size: 18px;

    }

}


/* =========================================================
   EXPERIENCE MOBILE
========================================================= */

@media (max-width: 480px) {

    .experience-section {

        padding:
            50px 0 55px !important;

    }


    .experience-heading-left {

        gap: 11px;

    }


    .experience-heading h2 {

        font-size:
            clamp(
                36px,
                10.5vw,
                48px
            );

    }


    .experience-heading p {

        margin-top: 14px;

        font-size: 12px;

        line-height: 1.7;

    }


    .experience-card {

        padding:
            17px;

    }


    .experience-card-header {

        display: block;

    }


    .experience-title {

        font-size: 17px;

    }


    .experience-company {

        font-size: 10px;

    }


    .experience-type {

        display: inline-block;

        margin-top: 10px;

    }


    .experience-description {

        margin-top: 13px;

        font-size: 9px;

        line-height: 1.7;

    }


    .experience-tags {

        margin-top: 14px;

    }


    .experience-tags span {

        padding:
            4px 6px;

        font-size: 6px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .experience-card {

        padding:
            15px;

    }


    .experience-title {

        font-size: 16px;

    }


    .experience-description {

        font-size: 8px;

    }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {

    min-height: auto !important;

    padding:
        75px 0 85px !important;

}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-heading {

    margin-bottom: 50px;

}


.contact-heading-left {

    display: flex;

    align-items: center;

    gap: 16px;

}


.contact-heading-left
.placeholder-number {

    margin: 0;

}


.contact-heading-left
.section-label {

    margin: 0;

}


.contact-heading-content {

    margin-top: 16px;

}


.contact-heading h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1.04;

    letter-spacing:
        -0.045em;

    font-weight: 600;

}


.contact-heading p {

    max-width: 620px;

    margin-top: 18px;

    color:
        var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    align-items: center;

}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro {

    max-width: 560px;

}


.contact-status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.1em;

    color:
        var(--text-muted);

}


.contact-status .status-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #86efac;

    box-shadow:
        0 0 10px
        rgba(
            134,
            239,
            172,
            0.45
        );

}


.contact-intro h3 {

    max-width: 520px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            38px,
            4vw,
            55px
        );

    line-height: 1.05;

    letter-spacing:
        -0.04em;

    font-weight: 600;

}


.contact-intro > p {

    max-width: 500px;

    margin-top: 20px;

    color:
        var(--text-secondary);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   CONTACT LINKS
========================================================= */

.contact-links {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        17px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.025
            ),
            rgba(
                255,
                255,
                255,
                0.008
            )
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


.contact-card::before {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -70px;
    right: -50px;

    border-radius: 50%;

    background:
        rgba(
            139,
            92,
            246,
            0.14
        );

    filter:
        blur(35px);

    opacity: 0;

    transition:
        opacity 0.35s ease;

}


.contact-card:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.32
        );

    background:
        rgba(
            139,
            92,
            246,
            0.045
        );

    box-shadow:
        0 18px 40px
        rgba(
            0,
            0,
            0,
            0.2
        );

}


.contact-card:hover::before {

    opacity: 1;

}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-card-icon {

    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.2
        );

    border-radius: 9px;

    background:
        rgba(
            139,
            92,
            246,
            0.07
        );

    color:
        var(--primary-light);

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 11px;

    font-weight: 600;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.contact-card:hover
.contact-card-icon {

    transform:
        rotate(-5deg)
        scale(1.06);

    background:
        rgba(
            139,
            92,
            246,
            0.14
        );

}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.contact-card-content {

    position: relative;

    z-index: 2;

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.contact-card-label {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.1em;

    color:
        var(--text-muted);

}


.contact-card-content strong {

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 13px;

    font-weight: 500;

    color:
        var(--text-secondary);

    transition:
        color 0.3s ease;

}


.contact-card:hover
.contact-card-content strong {

    color:
        var(--text-primary);

}


/* =========================================================
   CONTACT ARROW
========================================================= */

.contact-card-arrow {

    position: relative;

    z-index: 2;

    margin-left: auto;

    flex-shrink: 0;

    font-size: 15px;

    color:
        var(--text-muted);

    transition:
        transform 0.3s ease,
        color 0.3s ease;

}


.contact-card:hover
.contact-card-arrow {

    transform:
        translate(
            3px,
            -3px
        );

    color:
        var(--primary-light);

}


/* =========================================================
   CONTACT BOTTOM
========================================================= */

.contact-bottom {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 50px;

}


.contact-bottom-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--border)
        );

}


.contact-bottom-line:last-child {

    background:
        linear-gradient(
            90deg,
            var(--border),
            transparent
        );

}


.contact-bottom > span:not(.contact-bottom-line) {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    letter-spacing:
        0.12em;

    color:
        var(--text-muted);

}


/* =========================================================
   CONTACT TABLET
========================================================= */

@media (max-width: 850px) {

    .contact-main {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    .contact-intro {

        max-width: 700px;

    }


    .contact-links {

        max-width: 700px;

    }

}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-section {

        padding:
            55px 0 60px !important;

    }


    .contact-heading {

        margin-bottom: 35px;

    }


    .contact-heading-left {

        gap: 11px;

    }


    .contact-heading h2 {

        font-size:
            clamp(
                36px,
                10.5vw,
                48px
            );

    }


    .contact-heading p {

        margin-top: 14px;

        font-size: 12px;

        line-height: 1.7;

    }


    .contact-status {

        margin-bottom: 15px;

        font-size: 6px;

    }


    .contact-intro h3 {

        font-size:
            clamp(
                32px,
                9vw,
                42px
            );

    }


    .contact-intro > p {

        margin-top: 16px;

        font-size: 11px;

        line-height: 1.7;

    }


    .contact-card {

        padding:
            14px;

    }


    .contact-card-icon {

        width: 38px;
        height: 38px;

        font-size: 10px;

    }


    .contact-card-content strong {

        font-size: 11px;

    }


    .contact-card-label {

        font-size: 6px;

    }


    .contact-card-arrow {

        font-size: 13px;

    }


    .contact-bottom {

        margin-top: 35px;

        gap: 8px;

    }


    .contact-bottom > span:not(.contact-bottom-line) {

        font-size: 5px;

        text-align: center;

    }

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        35px 0 22px;

    border-top:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.008
        );

}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 35px;

}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform 0.3s ease;

}


.footer-logo:hover {

    transform:
        translateY(-3px);

}


.footer-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


/* =========================================================
   FOOTER DESCRIPTION
========================================================= */

.footer-description {

    max-width: 470px;

    margin: 0;

    color:
        var(--text-muted);

    font-size: 10px;

    line-height: 1.7;

}


/* =========================================================
   FOOTER SOCIALS
========================================================= */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 7px;

}


.footer-socials a {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--border);

    border-radius: 7px;

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    font-weight: 600;

    color:
        var(--text-muted);

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;

}


.footer-socials a:hover {

    transform:
        translateY(-3px);

    color:
        var(--primary-light);

    border-color:
        rgba(
            139,
            92,
            246,
            0.3
        );

    background:
        rgba(
            139,
            92,
            246,
            0.06
        );

}


/* =========================================================
   FOOTER DIVIDER
========================================================= */

.footer-divider {

    width: 100%;

    height: 1px;

    margin:
        28px 0 18px;

    background:
        var(--border);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

}


.footer-bottom span {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    color:
        var(--text-muted);

}


.footer-bottom a {

    font-family:
        "JetBrains Mono",
        monospace;

    font-size: 7px;

    color:
        var(--text-muted);

    transition:
        color 0.3s ease;

}


.footer-bottom a:hover {

    color:
        var(--primary-light);

}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 768px) {

    .footer {

        padding:
            30px 0 20px;

    }


    .footer-top {

        grid-template-columns:
            1fr auto;

        gap: 20px;

    }


    .footer-logo {

        width: 38px;
        height: 38px;

    }


    .footer-description {

        grid-column:
            1 / -1;

        grid-row: 2;

        max-width: 500px;

        font-size: 9px;

    }


    .footer-socials {

        grid-column: 2;

        grid-row: 1;

    }

}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer {

        padding:
            28px 0 18px;

    }


    .footer-top {

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 16px;

    }


    .footer-logo {

        width: 38px;
        height: 38px;

    }


    .footer-description {

        max-width: 290px;

        font-size: 8px;

        line-height: 1.7;

    }


    .footer-socials {

        gap: 6px;

    }


    .footer-socials a {

        width: 29px;
        height: 29px;

        font-size: 6px;

    }


    .footer-divider {

        margin:
            22px 0 16px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 9px;

        text-align: center;

    }


    .footer-bottom span,
    .footer-bottom a {

        font-size: 6px;

    }

}


/* =========================================================
   32. SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width: 6px;

}


::-webkit-scrollbar-track {

    background:
        var(--bg-primary);

}


::-webkit-scrollbar-thumb {

    background:
        rgba(
            139,
            92,
            246,
            0.35
        );

    border-radius:
        100px;

}


::-webkit-scrollbar-thumb:hover {

    background:
        rgba(
            139,
            92,
            246,
            0.6
        );

}


/* =========================================================
   33. FOCUS STATES
========================================================= */

a:focus-visible,
button:focus-visible {

    outline:
        2px solid
        var(--primary-light);

    outline-offset:
        4px;

}


/* =========================================================
   34. DISABLED / NON-INTERACTIVE
========================================================= */

[disabled] {

    cursor:
        not-allowed;

    opacity:
        0.5;

}


/* =========================================================
   35. TABLET NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .nav-menu,
    .nav-button {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }

}


/* =========================================================
   36. TABLET
========================================================= */

@media (max-width: 768px) {

    .navbar {

        height: 72px;

    }


    .mobile-menu {

        top: 72px;

    }


    .hero {

        padding-top: 72px;

    }


    .hero-container {
        grid-template-columns: 1fr;
        gap: 25px;

    }


    .hero-content {

        text-align: center;

    }


    .hero-label {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

        font-size: 14px;

    }


    .role-tags {

        justify-content: center;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .hero-stack {

        margin-top: 30px;

        text-align: center;

    }


    .stack-list {

        justify-content: center;

    }


    .hero-visual {

        height: 400px;
        margin-top: 0;
        top: 0;

    }


    .hero-circle {

        width: 285px;
        height: 285px;

    }


    .profile-wrapper {

        width: 245px;
        height: 315px;

    }


    .code-card {

        right: 3%;

        bottom: 15px;

        width: 165px;

    }


    .code-body {

        padding: 11px;

    }


    .code-body code {

        font-size: 6px;

    }


    .floating-1 {

        left: 5%;

        top: 65px;

        width: 40px;
        height: 40px;

        font-size: 9px;

    }


    .floating-2 {

        right: 4%;

        top: 95px;

        width: 38px;
        height: 38px;

        font-size: 9px;

    }


    .floating-3 {

        left: 10%;

        bottom: 55px;

        width: 35px;
        height: 35px;

    }


    .floating-4 {

        right: 8%;

        bottom: 55px;

        width: 45px;
        height: 32px;

        font-size: 8px;

    }


    .hero-dots {

        right: 5%;

        transform:
            scale(0.75);

    }


    .scroll-indicator {

        display: none;

    }


    .footer-content {

        flex-direction: column;

        text-align: center;

    }


    .footer-left {

        justify-content: center;

    }

}


/* =========================================================
   37. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {

        width:
            calc(100% - 24px);

    }


    .navbar {

        height: 68px;

    }


    .mobile-menu {

        top: 68px;

        padding:
            18px;

    }


    .hero {

        padding-top: 68px;

    }


    .hero-container {

        padding:
            55px 0 60px;

    }


    .hero-title {

        font-size:
            clamp(
                35px,
                10.5vw,
                46px
            );

    }


    .hero-description {

        font-size: 13px;

        line-height: 1.7;

    }


    .hero-buttons {

        margin-top: 24px;

    }


    .btn {

        min-height: 46px;

        font-size: 12px;

    }


    .hero-stack {

        margin-top: 25px;

    }


    .stack-list {

        gap: 5px;

    }


    .stack-item {

        padding:
            5px 7px;

        font-size: 7px;

    }


    .hero-visual {

        height: 365px;

        margin-top: 25px;

    }


    .hero-circle {

        width: 235px;
        height: 235px;

    }


    .hero-circle::before {

        inset: 20px;

    }


    .profile-wrapper {

        width: 205px;
        height: 270px;

    }


    .profile-ring {

        inset: -8px;

    }


    .profile-image {

        border-radius:
            20px;

    }


    .code-card {

        width: 145px;

        right: 1%;

        bottom: 8px;

    }


    .code-header {

        height: 25px;

        padding:
            0 7px;

    }


    .code-body {

        padding: 9px;

    }


    .code-body code {

        font-size: 5px;

        line-height: 1.5;

    }


    .floating-1 {

        left: 2%;

        top: 60px;

        width: 34px;
        height: 34px;

        font-size: 8px;

    }


    .floating-2 {

        right: 1%;

        top: 75px;

        width: 32px;
        height: 32px;

        font-size: 8px;

    }


    .floating-3 {

        left: 5%;

        bottom: 45px;

        width: 30px;
        height: 30px;

        font-size: 12px;

    }


    .floating-4 {

        display: none;

    }


    .hero-dots {

        top: 20px;

        right: 2%;

        transform:
            scale(0.6);

    }


    .section {

        padding:
            55px 0;

    }


    .footer {

        padding:
            20px 0;

    }


    .footer-text {

        font-size: 8px;

    }

}


/* =========================================================
   38. VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .container {

        width:
            calc(100% - 20px);

    }


    .hero-title {

        font-size: 33px;

    }


    .hero-description {

        font-size: 12px;

    }


    .hero-visual {

        height: 330px;

    }


    .hero-circle {

        width: 210px;
        height: 210px;

    }


    .profile-wrapper {

        width: 180px;
        height: 240px;

    }


    .code-card {

        width: 125px;

        right: 0;

        bottom: 5px;

    }


    .code-body code {

        font-size: 4.5px;

    }


    .floating-1,
    .floating-2 {

        width: 30px;
        height: 30px;

    }


    .contact-intro h2 {

        font-size: 34px;

    }


    .experience-card {

        padding: 16px;

    }

}


/* =========================================================
   39. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}