/* =========================================================
   SATNAM DEVOPS PORTFOLIO
   STYLE.CSS
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {

    --bg: #050914;
    --bg-secondary: #08101e;
    --bg-card: rgba(10, 22, 40, 0.72);

    --surface: rgba(16, 31, 53, 0.65);
    --surface-light: rgba(25, 47, 75, 0.45);

    --cyan: #22d3ee;
    --cyan-light: #67e8f9;
    --blue: #3b82f6;
    --blue-light: #60a5fa;

    --text: #f1f5f9;
    --text-secondary: #b7c4d6;
    --text-muted: #718198;

    --border: rgba(103, 232, 249, 0.16);
    --border-light: rgba(255, 255, 255, 0.08);

    --success: #34d399;

    --container: 1180px;

    --radius-small: 10px;
    --radius: 18px;
    --radius-large: 28px;

    --transition: 0.3s ease;

    --shadow:
        0 25px 80px rgba(0, 0, 0, 0.35);

    --glow:
        0 0 35px rgba(34, 211, 238, 0.18);
}


/* =========================================================
   02. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: var(--bg);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   03. GLOBAL BACKGROUND
   ========================================================= */

.background-grid {

    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(34, 211, 238, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34, 211, 238, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            transparent 80%
        );

    z-index: -5;
}


.noise {

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    z-index: 100;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}


.glow {

    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(130px);

    pointer-events: none;

    z-index: -4;

    opacity: 0.13;
}


.glow-1 {

    top: -200px;
    left: -150px;

    background: var(--cyan);
}


.glow-2 {

    top: 35%;
    right: -250px;

    background: var(--blue);
}


.glow-3 {

    bottom: -300px;
    left: 30%;

    background: #0ea5e9;
}


/* =========================================================
   04. GLOBAL CONTAINER
   ========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


.section {

    position: relative;

    padding:
        130px 0;
}


/* =========================================================
   05. NAVIGATION
   ========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom:
        1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}


.navbar.scrolled {

    background:
        rgba(5, 9, 20, 0.78);

    backdrop-filter:
        blur(18px);

    border-bottom-color:
        var(--border-light);
}


.nav-container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    height: 78px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.logo {

    display: flex;

    align-items: center;
    gap: 5px;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.logo-bracket {

    color: var(--cyan);

    text-shadow:
        0 0 15px
        rgba(34, 211, 238, 0.6);
}


.nav-links {

    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-link {

    position: relative;

    color: var(--text-muted);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.04em;

    transition:
        color var(--transition);
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--cyan);

    box-shadow:
        0 0 10px var(--cyan);

    transition:
        width var(--transition);
}


.nav-link:hover,
.nav-link.active {

    color: var(--text);
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


.menu-button {

    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(15, 30, 50, 0.7);

    cursor: pointer;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;
}


.menu-button span {

    width: 18px;
    height: 2px;

    background: var(--text);
}


/* =========================================================
   06. HERO
   ========================================================= */

.hero {

    min-height: 100vh;

    padding-top: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.hero-container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 50px;
}


.status-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        8px 14px;

    margin-bottom: 28px;

    border:
        1px solid
        rgba(52, 211, 153, 0.2);

    border-radius: 100px;

    background:
        rgba(52, 211, 153, 0.06);

    color: #8deec5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.12em;
}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 12px var(--success);

    animation:
        pulse-dot 2s infinite;
}


@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.7);
    }
}


.hero-small-text {

    color: var(--cyan);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.25em;

    margin-bottom: 2px;
}


.hero-title {

    font-size:
        clamp(70px, 10vw, 145px);

    line-height: 0.9;

    letter-spacing: -0.07em;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #ffffff 15%,
            #a5f3fc 55%,
            #3b82f6 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    text-shadow:
        0 10px 50px
        rgba(34, 211, 238, 0.08);
}


.hero-role {

    margin-top: 20px;

    font-size:
        clamp(25px, 3vw, 42px);

    line-height: 1.1;

    letter-spacing: -0.03em;
}


.hero-role span {

    color: var(--cyan);
}


.hero-description {

    max-width: 650px;

    margin-top: 25px;

    color: var(--text-secondary);

    font-size: 16px;

    line-height: 1.9;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}


.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding:
        0 22px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}


.btn:hover {

    transform:
        translateY(-3px);
}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--blue)
        );

    color: #031019;

    box-shadow:
        0 12px 35px
        rgba(34, 211, 238, 0.17);
}


.btn-primary:hover {

    box-shadow:
        0 18px 45px
        rgba(34, 211, 238, 0.28);
}


.btn-secondary {

    border:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--text);
}


.btn-secondary:hover {

    border-color:
        rgba(34, 211, 238, 0.35);

    background:
        rgba(34, 211, 238, 0.05);
}


.hero-tech-line {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 11px;

    margin-top: 38px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.hero-tech-line i {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--cyan);

    opacity: 0.5;
}


/* =========================================================
   07. 3D HERO SCENE
   ========================================================= */

.hero-visual {

    min-height: 550px;

    display: flex;

    align-items: center;
    justify-content: center;

    perspective: 1200px;
}


.scene {

    position: relative;

    width: 480px;
    height: 480px;

    transform-style: preserve-3d;

    animation:
        scene-float 7s ease-in-out infinite;
}


@keyframes scene-float {

    0%,
    100% {
        transform:
            rotateX(4deg)
            rotateY(-5deg)
            translateY(0);
    }

    50% {
        transform:
            rotateX(-2deg)
            rotateY(5deg)
            translateY(-15px);
    }
}


.orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid
        rgba(34, 211, 238, 0.16);

    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        rotateX(65deg);

    transform-style: preserve-3d;
}


.orbit-1 {

    width: 330px;
    height: 330px;

    animation:
        orbit-spin 14s linear infinite;
}


.orbit-2 {

    width: 400px;
    height: 400px;

    transform:
        translate(-50%, -50%)
        rotateX(65deg)
        rotateY(35deg);

    animation:
        orbit-spin-reverse 19s linear infinite;
}


.orbit-3 {

    width: 250px;
    height: 250px;

    transform:
        translate(-50%, -50%)
        rotateX(65deg)
        rotateY(-40deg);

    animation:
        orbit-spin 11s linear infinite;
}


@keyframes orbit-spin {

    from {
        transform:
            translate(-50%, -50%)
            rotateX(65deg)
            rotateZ(0);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotateX(65deg)
            rotateZ(360deg);
    }
}


@keyframes orbit-spin-reverse {

    from {
        transform:
            translate(-50%, -50%)
            rotateX(65deg)
            rotateY(35deg)
            rotateZ(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotateX(65deg)
            rotateY(35deg)
            rotateZ(0);
    }
}


/* =========================================================
   08. DEVOPS CUBE
   ========================================================= */

.devops-core {

    position: absolute;

    width: 170px;
    height: 170px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotateX(-12deg)
        rotateY(-20deg);

    transform-style: preserve-3d;

    animation:
        cube-spin 18s linear infinite;
}


@keyframes cube-spin {

    from {
        transform:
            translate(-50%, -50%)
            rotateX(-12deg)
            rotateY(-20deg)
            rotateZ(0);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotateX(348deg)
            rotateY(340deg)
            rotateZ(360deg);
    }
}


.core-face {

    position: absolute;

    width: 170px;
    height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(103, 232, 249, 0.3);

    background:
        linear-gradient(
            135deg,
            rgba(20, 55, 83, 0.86),
            rgba(5, 18, 34, 0.88)
        );

    box-shadow:
        inset 0 0 40px
        rgba(34, 211, 238, 0.05),
        0 0 50px
        rgba(34, 211, 238, 0.08);

    backdrop-filter:
        blur(10px);
}


.core-face span {

    color: var(--cyan);

    font-size: 35px;

    font-weight: 900;

    text-shadow:
        0 0 20px
        rgba(34, 211, 238, 0.5);
}


.core-face small {

    margin-top: 7px;

    color: var(--text-muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.2em;
}


.front {
    transform: translateZ(85px);
}

.back {
    transform: rotateY(180deg) translateZ(85px);
}

.right {
    transform:
        rotateY(90deg)
        translateZ(85px);
}

.left {
    transform:
        rotateY(-90deg)
        translateZ(85px);
}

.top {
    transform:
        rotateX(90deg)
        translateZ(85px);
}

.bottom {
    transform:
        rotateX(-90deg)
        translateZ(85px);
}


/* =========================================================
   09. FLOATING TECH NODES
   ========================================================= */

.tech-node {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        9px 13px;

    border:
        1px solid
        rgba(103, 232, 249, 0.15);

    border-radius: 10px;

    background:
        rgba(6, 17, 31, 0.78);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.25);

    color: var(--text);

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;
}


.tech-node span {

    color: var(--cyan);

    font-size: 16px;
}


.node-linux {

    top: 75px;
    left: 25px;

    animation:
        node-float 5s ease-in-out infinite;
}


.node-git {

    top: 15px;
    right: 80px;

    animation:
        node-float 6s ease-in-out infinite 0.5s;
}


.node-docker {

    right: 0;
    top: 210px;

    animation:
        node-float 5.5s ease-in-out infinite 1s;
}


.node-k8s {

    right: 50px;
    bottom: 65px;

    animation:
        node-float 6s ease-in-out infinite 1.5s;
}


.node-aws {

    left: 35px;
    bottom: 90px;

    animation:
        node-float 5.8s ease-in-out infinite 0.8s;
}


.node-monitor {

    left: 0;
    top: 285px;

    animation:
        node-float 6.5s ease-in-out infinite 1.2s;
}


@keyframes node-float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }
}


/* =========================================================
   10. HERO SCROLL
   ========================================================= */

.hero-scroll {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.18em;
}


.scroll-line {

    width: 40px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan)
        );
}


/* =========================================================
   11. QUICK PROFILE
   ========================================================= */

.quick-profile {

    border-top:
        1px solid var(--border-light);

    border-bottom:
        1px solid var(--border-light);

    background:
        rgba(8, 16, 30, 0.45);

    backdrop-filter:
        blur(10px);
}


.profile-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.profile-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 28px 22px;

    border-right:
        1px solid var(--border-light);
}


.profile-item:last-child {
    border-right: none;
}


.profile-number {

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.profile-item strong {

    display: block;

    font-size: 12px;
}


.profile-item p {

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 10px;
}


/* =========================================================
   12. SECTION HEADINGS
   ========================================================= */

.section-heading {

    max-width: 780px;

    margin-bottom: 60px;
}


.section-heading.center {

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.section-index {

    display: block;

    margin-bottom: 17px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.2em;
}


.section-heading h2 {

    font-size:
        clamp(35px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -0.045em;
}


.section-heading h2 span {

    color: var(--cyan);
}


.section-heading > p {

    max-width: 650px;

    margin-top: 18px;

    color: var(--text-muted);

    font-size: 15px;
}


.section-heading.center > p {

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   13. ABOUT
   ========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}


.about-main p {

    margin-bottom: 23px;

    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.9;
}


.about-main .large-text {

    color: var(--text);

    font-size: 22px;

    line-height: 1.55;

    letter-spacing: -0.015em;
}


.about-main strong {
    color: var(--cyan);
}


/* =========================================================
   14. TERMINAL
   ========================================================= */

.terminal-window {

    overflow: hidden;

    border:
        1px solid
        rgba(103, 232, 249, 0.17);

    border-radius:
        var(--radius);

    background:
        rgba(4, 12, 23, 0.9);

    box-shadow:
        var(--shadow),
        inset 0 1px 0
        rgba(255,255,255,0.03);
}


.terminal-header {

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 15px;

    border-bottom:
        1px solid var(--border-light);

    color: var(--text-muted);

    font-size: 10px;

    font-family: monospace;
}


.terminal-dots {

    display: flex;

    gap: 6px;
}


.terminal-dots span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #34445a;
}


.terminal-body {

    padding: 28px;

    font-family:
        "Courier New",
        monospace;

    font-size: 12px;

    line-height: 1.7;
}


.terminal-body p {
    margin-bottom: 5px;
}


.terminal-prompt {
    color: var(--cyan);
}


.terminal-output {

    color: #8ca0b7;

    padding-left: 17px;

    margin-bottom: 14px !important;
}


.cursor::after {

    content: "";

    display: inline-block;

    width: 7px;
    height: 13px;

    margin-left: 4px;

    vertical-align: middle;

    background: var(--cyan);

    animation:
        terminal-blink 1s infinite;
}


@keyframes terminal-blink {

    50% {
        opacity: 0;
    }
}


/* =========================================================
   15. DEVOPS MINDSET
   ========================================================= */

.mindset-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(9, 27, 48, 0.4),
            transparent
        );
}


.mindset-flow {

    display: flex;

    align-items: stretch;

    justify-content: center;
}


.flow-item {

    flex: 1;

    max-width: 190px;

    padding: 25px 15px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-small);

    background:
        rgba(10, 25, 43, 0.45);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.flow-item:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(34, 211, 238, 0.4);

    background:
        rgba(18, 42, 66, 0.65);
}


.flow-number {

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 800;
}


.flow-icon {

    margin:
        17px 0;

    color: var(--cyan);

    font-size: 30px;

    text-shadow:
        0 0 20px
        rgba(34, 211, 238, 0.35);
}


.flow-item h3 {

    font-size: 11px;

    letter-spacing: 0.12em;
}


.flow-item p {

    margin-top: 9px;

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.6;
}


.flow-connector {

    width: 35px;

    height: 1px;

    align-self: center;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            transparent
        );

    opacity: 0.5;
}


/* =========================================================
   16. SKILLS
   ========================================================= */

.skills-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.skill-card {

    position: relative;

    padding: 25px;

    min-height: 300px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(15, 31, 52, 0.75),
            rgba(7, 17, 31, 0.72)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.skill-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        var(--cyan);

    opacity: 0.04;

    filter: blur(20px);

    transition:
        opacity var(--transition);
}


.skill-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(34, 211, 238, 0.32);

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.28);
}


.skill-card:hover::before {
    opacity: 0.1;
}


.skill-top {

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.skill-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(34, 211, 238, 0.06);

    color: var(--cyan);

    font-size: 15px;

    font-weight: 800;
}


.skill-level {

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-align: right;
}


.skill-card h3 {

    margin-top: 25px;

    font-size: 20px;
}


.skill-bar {

    width: 100%;
    height: 3px;

    margin-top: 15px;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.07);

    overflow: hidden;
}


.skill-bar span {

    display: block;

    width: var(--level);
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    box-shadow:
        0 0 10px
        rgba(34, 211, 238, 0.45);
}


.skill-card > p {

    margin-top: 18px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.7;
}


.skill-tags,
.project-tech {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 18px;
}


.skill-tags span,
.project-tech span {

    padding:
        5px 8px;

    border:
        1px solid var(--border-light);

    border-radius: 5px;

    background:
        rgba(255,255,255,0.025);

    color: #91a2b8;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.04em;
}


/* =========================================================
   17. PIPELINE
   ========================================================= */

.pipeline-section {

    overflow: hidden;
}


.pipeline-wrapper {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 10px;

    padding-top: 30px;
}


.pipeline-line {

    position: absolute;

    top: 62px;

    left: 5%;

    right: 5%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            var(--blue),
            var(--cyan),
            transparent
        );

    opacity: 0.35;
}


.pipeline-node {

    position: relative;

    z-index: 2;

    padding:
        15px 8px;

    text-align: center;
}


.pipeline-icon {

    width: 62px;
    height: 62px;

    margin: 0 auto 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(34, 211, 238, 0.3);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34, 211, 238, 0.12),
            rgba(6, 15, 27, 0.95)
        );

    color: var(--cyan);

    font-size: 20px;

    box-shadow:
        0 0 30px
        rgba(34, 211, 238, 0.07);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.pipeline-node:hover .pipeline-icon {

    transform:
        scale(1.12);

    box-shadow:
        0 0 35px
        rgba(34, 211, 238, 0.2);
}


.pipeline-node > span {

    color: var(--text-muted);

    font-size: 8px;

    font-weight: 800;
}


.pipeline-node h3 {

    margin-top: 3px;

    font-size: 12px;
}


.pipeline-node p {

    margin-top: 3px;

    color: var(--text-muted);

    font-size: 9px;
}


/* =========================================================
   18. PROJECT CASE STUDIES
   ========================================================= */

.projects-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(5, 18, 32, 0.5),
            transparent
        );
}


.project-case {

    position: relative;

    margin-bottom: 35px;

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        linear-gradient(
            145deg,
            rgba(12, 28, 48, 0.75),
            rgba(6, 15, 27, 0.75)
        );

    overflow: hidden;
}


.project-case::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 2px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            var(--cyan),
            transparent
        );

    opacity: 0.7;
}


.project-number {

    position: absolute;

    top: 20px;
    right: 30px;

    color:
        rgba(103, 232, 249, 0.05);

    font-size: 100px;

    font-weight: 900;

    line-height: 1;
}


.project-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    border-bottom:
        1px solid var(--border-light);
}


.project-category {

    color: var(--cyan);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.18em;
}


.project-header h3 {

    margin-top: 8px;

    font-size:
        clamp(24px, 3vw, 35px);

    letter-spacing: -0.03em;
}


.project-slug {

    margin-top: 4px;

    color: var(--text-muted);

    font-family: monospace;

    font-size: 10px;
}


.project-status {

    padding:
        6px 10px;

    border:
        1px solid
        rgba(52, 211, 153, 0.2);

    border-radius: 100px;

    color: var(--success);

    background:
        rgba(52, 211, 153, 0.04);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.project-content {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 45px;

    padding-top: 30px;

    align-items: center;
}


.project-description h4 {

    margin-top: 22px;

    margin-bottom: 7px;

    color: var(--text);

    font-size: 12px;

    letter-spacing: 0.05em;
}


.project-description h4:first-child {
    margin-top: 0;
}


.project-description p {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   19. PROJECT ARCHITECTURE
   ========================================================= */

.project-architecture {

    min-height: 250px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px;

    border:
        1px solid
        var(--border-light);

    border-radius:
        var(--radius);

    background:
        rgba(2, 10, 20, 0.55);
}


.architecture-title {

    margin-bottom: 25px;

    color: var(--text-muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.18em;
}


.architecture-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    font-size: 9px;
}


.architecture-flow div {

    padding:
        12px 9px;

    border:
        1px solid
        rgba(34, 211, 238, 0.18);

    border-radius: 7px;

    background:
        rgba(34, 211, 238, 0.035);

    color: #b5c5d7;

    text-align: center;
}


.architecture-flow span {

    color: var(--cyan);

    font-size: 13px;
}


/* =========================================================
   20. KUBERNETES ARCHITECTURE
   ========================================================= */

.k8s-cluster {

    display: flex;

    flex-direction: column;

    align-items: center;
}


.k8s-top,
.k8s-bottom {

    padding:
        10px 22px;

    border:
        1px solid
        rgba(34, 211, 238, 0.25);

    border-radius: 7px;

    color: var(--cyan);

    background:
        rgba(34, 211, 238, 0.04);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.k8s-arrow {

    color: var(--cyan);

    padding: 7px;
}


.k8s-services {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    width: 100%;

    margin-bottom: 10px;
}


.k8s-service {

    min-height: 95px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 10px;

    border:
        1px solid
        rgba(96, 165, 250, 0.15);

    border-radius: 8px;

    background:
        rgba(59, 130, 246, 0.035);

    text-align: center;
}


.k8s-service strong {

    color: #c9d8e9;

    font-size: 10px;
}


.k8s-service span {

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 8px;
}


.k8s-service small {

    margin-top: 5px;

    color: var(--cyan);

    font-size: 7px;
}


/* =========================================================
   21. AWS ARCHITECTURE
   ========================================================= */

.aws-flow {

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;
}


.aws-box {

    min-width: 80px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    padding:
        13px 8px;

    border:
        1px solid
        rgba(34, 211, 238, 0.18);

    border-radius: 8px;

    background:
        rgba(34, 211, 238, 0.035);

    color: #c5d4e5;

    font-size: 8px;

    font-weight: 700;

    text-align: center;
}


.aws-box span {

    color: var(--cyan);

    font-size: 18px;
}


.aws-arrow {

    color: var(--cyan);

    font-size: 16px;
}


/* =========================================================
   22. PROJECT FOOTER
   ========================================================= */

.project-footer {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid var(--border-light);
}


.project-footer .project-tech {

    margin-top: 0;
}


.project-link {

    flex-shrink: 0;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.05em;

    transition:
        transform var(--transition),
        color var(--transition);
}


.project-link:hover {

    color: var(--cyan-light);

    transform:
        translateX(4px);
}


/* =========================================================
   23. COLLEGE PROJECT
   ========================================================= */

.college-project {

    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 70px;

    align-items: center;

    padding: 45px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        rgba(9, 22, 39, 0.6);
}


.college-visual {

    display: flex;

    justify-content: center;
}


.pizza-card {

    width: 270px;
    height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(103, 232, 249, 0.18);

    border-radius:
        25px;

    background:
        radial-gradient(
            circle at center,
            rgba(34, 211, 238, 0.09),
            rgba(4, 13, 24, 0.8)
        );

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.3);

    transform:
        rotateY(-8deg)
        rotateX(5deg);

    transition:
        transform var(--transition);
}


.pizza-card:hover {

    transform:
        rotateY(5deg)
        rotateX(-3deg)
        translateY(-8px);
}


.pizza-icon {

    font-size: 70px;

    filter:
        drop-shadow(
            0 15px 20px
            rgba(0,0,0,0.35)
        );
}


.pizza-card > span {

    margin-top: 20px;

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.18em;
}


.pizza-card strong {

    margin-top: 8px;

    font-size: 19px;

    letter-spacing: 0.08em;
}


.pizza-card small {

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 8px;
}


.college-content h3 {

    margin-top: 10px;

    font-size:
        clamp(27px, 4vw, 42px);

    letter-spacing: -0.04em;
}


.college-content > p {

    margin-top: 17px;

    max-width: 650px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;
}


.feature-list {

    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;
}


.feature-list div {

    padding:
        12px;

    border:
        1px solid var(--border-light);

    border-radius: 8px;

    background:
        rgba(255,255,255,0.02);

    color: #a9bacd;

    font-size: 10px;
}


.feature-list span {

    margin-right: 8px;

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;
}


/* =========================================================
   24. PROGRAMMING FOUNDATION
   ========================================================= */

.programming-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(7, 22, 38, 0.4),
            transparent
        );
}


.programming-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.language-card {

    position: relative;

    min-height: 280px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(10, 24, 41, 0.58);

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition);
}


.language-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(34, 211, 238, 0.3);
}


.language-number {

    position: absolute;

    top: 18px;
    right: 22px;

    color:
        rgba(255,255,255,0.05);

    font-size: 45px;

    font-weight: 900;
}


.language-symbol {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 13px;

    color: var(--cyan);

    background:
        rgba(34, 211, 238, 0.05);

    font-weight: 900;

    font-size: 16px;
}


.language-card h3 {

    margin-top: 22px;

    font-size: 22px;
}


.language-card p {

    margin-top: 10px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.7;
}


.language-topics {

    margin-top: 18px;

    color: #8fa3b9;

    font-size: 9px;

    line-height: 1.8;
}


/* =========================================================
   25. TOOLKIT
   ========================================================= */

.toolkit {

    border-top:
        1px solid var(--border-light);
}


.toolkit-group {

    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 30px;

    padding: 23px 0;

    border-bottom:
        1px solid var(--border-light);
}


.toolkit-label {

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.14em;
}


.toolkit-items {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.toolkit-items span {

    padding:
        8px 12px;

    border:
        1px solid var(--border-light);

    border-radius: 7px;

    background:
        rgba(255,255,255,0.02);

    color: #aab9cb;

    font-size: 10px;

    transition:
        border-color var(--transition),
        color var(--transition),
        transform var(--transition);
}


.toolkit-items span:hover {

    border-color:
        rgba(34, 211, 238, 0.3);

    color: var(--cyan);

    transform:
        translateY(-2px);
}


/* =========================================================
   26. JOURNEY
   ========================================================= */

.journey-line {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 30px;
}


.journey-line::before {

    content: "";

    position: absolute;

    left: 5%;
    right: 5%;

    top: 9px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cyan),
            var(--blue),
            var(--cyan),
            transparent
        );

    opacity: 0.35;
}


.journey-item {

    position: relative;

    padding-top: 35px;
}


.journey-dot {

    position: absolute;

    top: 0;
    left: 0;

    width: 19px;
    height: 19px;

    border:
        1px solid var(--cyan);

    border-radius: 50%;

    background: var(--bg);

    box-shadow:
        0 0 20px
        rgba(34, 211, 238, 0.2);
}


.journey-dot::after {

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    left: 6px;
    top: 6px;

    border-radius: 50%;

    background: var(--cyan);
}


.journey-label {

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.journey-item h3 {

    margin-top: 7px;

    font-size: 17px;
}


.journey-item p {

    margin-top: 6px;

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   27. EDUCATION
   ========================================================= */

.education-card {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    gap: 25px;

    align-items: center;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(10, 24, 41, 0.58);
}


.education-icon {

    width: 80px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 18px;

    color: var(--cyan);

    background:
        rgba(34, 211, 238, 0.05);

    font-weight: 900;

    font-size: 18px;
}


.education-content > span {

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


.education-content h3 {

    margin-top: 5px;

    font-size: 20px;
}


.education-content p {

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 11px;
}


.education-highlight {

    padding:
        10px 20px;

    border-left:
        1px solid var(--border);

    text-align: center;
}


.education-highlight strong {

    display: block;

    color: var(--cyan);

    font-size: 30px;
}


.education-highlight span {

    color: var(--text-muted);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


/* =========================================================
   28. CONTACT
   ========================================================= */

.contact-section {

    padding-bottom: 80px;
}


.contact-box {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    padding: 55px;

    border:
        1px solid
        rgba(34, 211, 238, 0.18);

    border-radius:
        var(--radius-large);

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(34, 211, 238, 0.08),
            transparent 35%
        ),
        rgba(8, 20, 35, 0.75);

    box-shadow:
        var(--shadow);
}


.contact-content h2 {

    max-width: 600px;

    font-size:
        clamp(35px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -0.05em;
}


.contact-content h2 span {

    color: var(--cyan);
}


.contact-content > p {

    max-width: 500px;

    margin-top: 20px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.8;
}


.contact-links {

    display: flex;

    flex-direction: column;

    gap: 10px;

    justify-content: center;
}


.contact-link {

    display: grid;

    grid-template-columns:
        80px 1fr auto;

    gap: 12px;

    align-items: center;

    padding:
        17px;

    border:
        1px solid var(--border-light);

    border-radius: 9px;

    background:
        rgba(255,255,255,0.02);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.contact-link:hover {

    transform:
        translateX(5px);

    border-color:
        rgba(34, 211, 238, 0.3);

    background:
        rgba(34, 211, 238, 0.035);
}


.contact-label {

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.12em;
}


.contact-link strong {

    color: #c1cede;

    font-size: 10px;

    font-weight: 500;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


.contact-link > span:last-child {

    color: var(--cyan);

    font-size: 14px;
}


/* =========================================================
   29. FOOTER
   ========================================================= */

.footer {

    border-top:
        1px solid var(--border-light);

    background:
        rgba(3, 8, 16, 0.7);
}


.footer-container {

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-brand {

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


.footer p,
.footer-container > span {

    color: var(--text-muted);

    font-size: 9px;
}


/* =========================================================
   30. BACK TO TOP
   ========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(8, 19, 34, 0.85);

    backdrop-filter:
        blur(10px);

    color: var(--cyan);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background var(--transition);
}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {

    background:
        rgba(34, 211, 238, 0.08);
}


/* =========================================================
   31. SCROLL REVEAL
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   32. SELECTION
   ========================================================= */

::selection {

    background:
        rgba(34, 211, 238, 0.25);

    color: white;
}


/* =========================================================
   33. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {

    width: 7px;
}


::-webkit-scrollbar-track {

    background:
        var(--bg);
}


::-webkit-scrollbar-thumb {

    border-radius: 10px;

    background:
        #1c354f;
}


::-webkit-scrollbar-thumb:hover {

    background:
        #285272;
}


/* =========================================================
   34. TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 18px;
    }

    .hero-container {
        gap: 20px;
    }

    .scene {
        width: 400px;
        height: 400px;
    }

    .skills-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .pipeline-wrapper {
        grid-template-columns:
            repeat(4, 1fr);

        gap: 15px;
    }

    .pipeline-line {
        display: none;
    }

    .project-content {
        grid-template-columns:
            1fr;
    }

    .programming-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .journey-line {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 45px;
    }

    .journey-line::before {
        display: none;
    }

}


/* =========================================================
   35. MOBILE NAV
   ========================================================= */

@media (max-width: 800px) {

    .nav-links {

        position: fixed;

        top: 78px;
        left: 20px;
        right: 20px;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border:
            1px solid var(--border);

        border-radius:
            15px;

        background:
            rgba(5, 12, 23, 0.96);

        backdrop-filter:
            blur(20px);

        box-shadow:
            0 25px 60px
            rgba(0,0,0,0.4);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }


    .nav-links.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    .nav-link {

        padding: 14px 5px;

        border-bottom:
            1px solid var(--border-light);
    }


    .nav-link:last-child {
        border-bottom: none;
    }


    .nav-link::after {
        display: none;
    }


    .menu-button {

        display: flex;
    }


    .hero {

        padding-top: 130px;

        min-height: auto;

        padding-bottom: 80px;
    }


    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {

        justify-content: center;
    }


    .hero-tech-line {

        justify-content: center;
    }


    .hero-visual {

        min-height: 430px;

        margin-top: 20px;
    }


    .scene {

        transform:
            scale(0.82);
    }


    .hero-scroll {
        display: none;
    }


    .profile-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .profile-item:nth-child(2) {
        border-right: none;
    }


    .profile-item:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border-light);
    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .mindset-flow {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }


    .flow-item {
        max-width: none;
    }


    .flow-connector {
        display: none;
    }


    .pipeline-wrapper {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .college-project {

        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .contact-box {

        grid-template-columns:
            1fr;

        padding: 35px;

        gap: 40px;
    }


    .toolkit-group {

        grid-template-columns:
            1fr;

        gap: 12px;
    }

}


/* =========================================================
   36. SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .container {

        width:
            calc(100% - 28px);
    }


    .section {

        padding:
            90px 0;
    }


    .nav-container {

        width:
            calc(100% - 28px);
    }


    .hero-title {

        font-size:
            clamp(65px, 22vw, 100px);
    }


    .hero-role {

        font-size: 25px;
    }


    .hero-description {

        font-size: 13px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-visual {

        min-height: 350px;
    }


    .scene {

        transform:
            scale(0.62);
    }


    .profile-grid {

        grid-template-columns:
            1fr;
    }


    .profile-item {

        border-right: none;

        border-bottom:
            1px solid var(--border-light);
    }


    .profile-item:last-child {
        border-bottom: none;
    }


    .skills-grid,
    .programming-grid {

        grid-template-columns:
            1fr;
    }


    .mindset-flow {

        grid-template-columns:
            1fr;
    }


    .pipeline-wrapper {

        grid-template-columns:
            1fr;
    }


    .pipeline-node {

        display: grid;

        grid-template-columns:
            55px 1fr;

        grid-template-rows:
            auto auto;

        text-align: left;

        align-items: center;

        gap: 0 15px;

        padding: 10px 0;
    }


    .pipeline-icon {

        grid-row:
            1 / 3;

        margin: 0;
    }


    .pipeline-node > span {

        grid-column: 2;
    }


    .pipeline-node h3 {

        grid-column: 2;
    }


    .pipeline-node p {

        grid-column: 2;
    }


    .project-case {

        padding: 23px;
    }


    .project-header {

        flex-direction: column;
    }


    .project-number {

        font-size: 70px;

        right: 15px;
    }


    .project-footer {

        flex-direction: column;

        align-items: flex-start;
    }


    .project-footer .project-tech {

        width: 100%;
    }


    .architecture-flow {

        flex-direction: column;
    }


    .architecture-flow span {
        transform:
            rotate(90deg);
    }


    .k8s-services {

        grid-template-columns:
            1fr;
    }


    .aws-flow {

        flex-direction: column;
    }


    .aws-arrow {
        transform:
            rotate(90deg);
    }


    .feature-list {

        grid-template-columns:
            1fr;
    }


    .journey-line {

        grid-template-columns:
            1fr;

        gap: 30px;
    }


    .journey-item {

        padding-left: 35px;

        padding-top: 0;
    }


    .journey-dot {

        left: 0;
        top: 2px;
    }


    .education-card {

        grid-template-columns:
            1fr;

        text-align: center;
    }


    .education-icon {

        margin: auto;
    }


    .education-highlight {

        border-left: none;

        border-top:
            1px solid var(--border-light);

        padding-top: 20px;
    }


    .contact-box {

        padding: 25px 20px;
    }


    .contact-link {

        grid-template-columns:
            65px 1fr auto;
    }


    .footer-container {

        flex-direction: column;

        justify-content: center;

        padding: 25px 0;
    }

}


/* =========================================================
   37. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}