
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}



:root {
    --bg: #07111f;
    --bg-soft: #101b2d;
    --bg-panel: rgba(15, 23, 42, 0.8);
    --bg-card: rgba(15, 23, 42, 0.75);
    --text: #edf2ff;
    --muted: #a5b4cf;
    --primary: #8b5cf6;
    --secondary: #22d3ee;
    --accent: #f59e0b;
    --border: rgba(148, 163, 184, 0.18);
    --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.25), transparent 20%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.18), transparent 22%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(7, 17, 31, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.brand {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    font-weight: 800;
    color: var(--text);
    height: 65px;
    width: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;

}




nav a {
    position: relative;
    text-decoration: none;
    color: black;
    margin: 0 20px;
    transition: color 0.3s ease;
}


nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: red;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

nav a:hover {
    color: red;
}

nav a:hover::after {
    transform: scaleX(1);
}






.nav-links a {
    color: var(--muted);
    font-size: 0.96rem;
    transition: color 0.2s ease;

}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);

}

.hero {
    padding: 5.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    border-radius: 999px;
    color: #dffcff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero p {
    color: var(--muted);
    font-size: 1.08rem;
    margin: 1rem 0 2rem;
    max-width: 620px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #a78bfa);
    color: white;
    box-shadow: 0 20px 35px rgba(139, 92, 246, 0.35);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.5);
    color: var(--text);
}

.card {
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.8),
            rgba(15, 23, 42, 0.72));

    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-card {
    width: 100%;
    max-width: 570px;
    min-height: 520px;

    padding: 2rem;

    box-sizing: border-box;
}

.avatar-image {
    width: 300px;
    height: 125px;

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

    margin-bottom: 1.5rem;

    border-radius: 26px;

    background: linear-gradient(135deg,
            #6366f1 0%,
            #06b6d4 100%);

    color: #ffffff;

    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;

    text-align: center;

    box-sizing: border-box;

    box-shadow:
        0 16px 35px rgba(99, 102, 241, 0.35);

    transition: all 0.35s ease;
}

.avatar-image span {
    display: block;
    width: 100%;
}

.avatar-image span {
    max-width: 100%;
    overflow-wrap: break-word;
}

.avatar-image span {
    display: block;
    width: 100%;
}


.avatar-image:hover {
    transform: translateY(-5px) scale(1.05);

    background: linear-gradient(135deg,
            #6366f1,
            #06b6d4);

    text-emphasis-color: red;

    box-shadow:
        0 24px 48px rgba(6, 182, 212, 0.5),
        0 0 30px rgba(99, 102, 241, 0.25);
}

@media (max-width: 600px) {
    .avatar-image {
        width: 150px;
        height: 150px;
        font-size: 1.3rem;
        border-radius: 22px;
    }
}





.experience-section {
    width: 100%;
    min-height: 100vh;

    padding: 100px 0;

    background: #080b12;
    color: #ffffff;

    box-sizing: border-box;
}




.experience-container {
    width: min(1200px, 90%);
    margin: 0 auto;

    box-sizing: border-box;
}





.section-heading {
    text-align: center;

    margin-bottom: 60px;
}

.section-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: #60a5fa;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.section-heading h1 {
    margin: 0;

    font-size: 46px;
    font-weight: 800;

    background: linear-gradient(90deg,
            #60a5fa,
            #a78bfa);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    margin-top: 15px;

    color: #8d99aa;

    font-size: 16px;
}




.project-card {
    position: relative;

    width: 100%;

    padding: 45px;

    box-sizing: border-box;

    border-radius: 25px;

    background: linear-gradient(145deg,
            #111827,
            #0c121d);

    border: 1px solid #253249;

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

    overflow: hidden;

    transition: 0.4s ease;
}


.project-card:hover {
    transform: translateY(-6px);

    border-color: #3b82f6;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.5);
}




.project-top {
    display: flex;

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

    padding-bottom: 30px;

    border-bottom: 1px solid #263244;
}

.project-badge {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 50px;

    background: rgba(96, 165, 250, 0.1);

    border: 1px solid rgba(96, 165, 250, 0.25);

    color: #60a5fa;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-top h2 {
    margin: 17px 0 0;

    font-size: 34px;

    font-weight: 800;
}

.project-number {
    font-size: 80px;

    line-height: 1;

    font-weight: 800;

    color: rgba(255, 255, 255, 0.04);
}




.role-box {
    display: flex;

    align-items: center;

    gap: 15px;

    width: fit-content;

    margin-top: 30px;

    padding: 15px 22px;

    border-radius: 12px;

    background: #141e2e;

    border: 1px solid #26364e;
}

.role-icon {
    display: flex;

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

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: rgba(96, 165, 250, 0.1);

    color: #60a5fa;

    font-weight: 700;
}

.role-box span {
    display: block;

    margin-bottom: 4px;

    color: #718096;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.role-box h3 {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
}




.tech-section,
.content-section,
.system-flow {
    margin-top: 40px;

    padding-top: 35px;

    border-top: 1px solid #202b3d;
}


.sub-heading {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    font-size: 20px;
}

.sub-heading>span {
    width: 4px;
    height: 22px;

    border-radius: 5px;

    background: #60a5fa;
}




.tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.tech-list span {
    padding: 9px 15px;

    border-radius: 8px;

    background: #141e2e;

    border: 1px solid #26344a;

    color: #b9c5d6;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}

.tech-list span:hover {
    transform: translateY(-3px);

    color: #60a5fa;

    border-color: #3b82f6;
}




.content-section>p {
    max-width: 1000px;

    margin: 0 0 15px;

    color: #9da9bb;

    font-size: 15px;

    line-height: 1.8;
}

.content-section strong {
    color: #ffffff;
}




.contribution-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.contribution {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border-radius: 12px;

    background: #101927;

    border: 1px solid #1d2a3d;

    transition: 0.3s ease;
}

.contribution:hover {
    transform: translateY(-4px);

    border-color: #3b82f6;

    background: #141f30;
}

.check {
    display: flex;

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

    flex-shrink: 0;

    width: 23px;
    height: 23px;

    border-radius: 50%;

    background: rgba(96, 165, 250, 0.1);

    color: #60a5fa;

    font-size: 12px;

    font-weight: 700;
}

.contribution p {
    margin: 0;

    color: #9da9bb;

    font-size: 14px;

    line-height: 1.7;
}

.contribution strong {
    color: #ffffff;
}




.flow {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}

.flow-step {
    flex: 1;

    padding: 20px 12px;

    text-align: center;

    background: #101927;

    border: 1px solid #202e43;

    border-radius: 12px;

    transition: 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);

    border-color: #3b82f6;
}

.flow-number {
    display: flex;

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

    width: 32px;
    height: 32px;

    margin: 0 auto 10px;

    border-radius: 50%;

    background: rgba(96, 165, 250, 0.1);

    color: #60a5fa;

    font-size: 11px;

    font-weight: 700;
}

.flow-step h4 {
    margin: 0 0 5px;

    font-size: 13px;
}

.flow-step p {
    margin: 0;

    color: #718096;

    font-size: 11px;
}

.flow-line {
    width: 30px;

    height: 1px;

    flex-shrink: 0;

    background: #34445c;
}




@media (max-width: 900px) {

    .experience-container {
        width: 92%;
    }

    .project-card {
        padding: 30px;
    }

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

    .flow {
        flex-wrap: wrap;
    }

    .flow-line {
        display: none;
    }

    .flow-step {
        min-width: calc(33.33% - 10px);
    }
}


@media (max-width: 600px) {

    .experience-section {
        padding: 70px 0;
    }

    .experience-container {
        width: 94%;
    }

    .section-heading h1 {
        font-size: 34px;
    }

    .project-card {
        padding: 22px;
    }

    .project-top h2 {
        font-size: 27px;
    }

    .project-number {
        display: none;
    }

    .role-box {
        width: 100%;
        box-sizing: border-box;
    }

    .flow-step {
        min-width: calc(50% - 10px);
    }
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.stat {
    min-height: 100px;
    padding: 1rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: rgba(148, 163, 184, 0.06);
    border: 1px solid var(--border);
    border-radius: 18px;

    position: relative;
    overflow: hidden;

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


.stat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.12),
            rgba(34, 211, 238, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
}


.stat:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.7);

    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.18),
            rgba(34, 211, 238, 0.12));

    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.18),
        0 0 20px rgba(34, 211, 238, 0.08);
}

.stat:hover::before {
    opacity: 1;
}

.stat strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat:hover strong {
    color: #ffffff;
}

.stat span {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.4;
}



@media (max-width: 900px) {
    .stat-row {
        gap: 0.7rem;
    }

    .stat {
        min-height: 90px;
        padding: 0.8rem 0.5rem;
    }

    .stat strong {
        font-size: 0.9rem;
    }
}


@media (max-width: 600px) {
    .stat-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat {
        min-height: 75px;
        padding: 0.9rem;
    }

    .stat strong {
        font-size: 1rem;
    }
}







main section {
    padding: 4.5rem 0;
}

.section-title {
    margin: 0 0 2rem;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.05em;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 1.5rem;
}

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

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

.item,
.project-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.6rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.item:hover,
.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.5);
}

.item h3,
.project-card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.38rem;
}

.item p,
.project-card p {
    margin: 0;
    color: var(--muted);
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.3rem;
}

.tag {
    display: inline-block;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.28);
    color: #dffcff;
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    margin-right: 0.55rem;
    margin-top: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 1.8rem;
}

.contact-card h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.05em;
}

.contact-card p {
    margin: 0;
    color: var(--muted);
}

footer {
    padding: 1.5rem 0 3rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

footer .container {
    text-align: center;
}

/* Hero Content Styling */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-title-wrapper {
    margin-bottom: 1rem;
}

.hero-title-wrapper h1 {
    background: linear-gradient(135deg, var(--text) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-title-wrapper h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.subtitle {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
    max-width: 620px;
    font-weight: 400;
}

/* Avatar Image Styling */
.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 1.6rem;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(34, 211, 238, 0.92));
    color: white;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Tech Stack Styling */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.tech-stack>* {
    width: calc((100% - 2.1rem) / 4);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* First 4 items */
.tech-stack>*:nth-child(1),
.tech-stack>*:nth-child(2),
.tech-stack>*:nth-child(3),
.tech-stack>*:nth-child(4) {
    width: calc((100% - 2.1rem) / 4);
}

/* From 5th item onward: 3 per row */
.tech-stack>*:nth-child(n+5) {
    width: calc((100% - 1.4rem) / 3);
}

.tech-badge {
    display: inline-block;
    position: relative;

    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.15),
            rgba(34, 211, 238, 0.15));

    border: 1px solid rgba(139, 92, 246, 0.35);
    color: #d8bfd8;
    border-radius: 12px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;

    transition:
        all 0.3s ease;
}

/* Underline */
.tech-badge::after {
    content: "";
    position: absolute;

    left: 10%;
    bottom: 4px;

    width: 80%;
    height: 2px;

    background: linear-gradient(90deg,
            #8b5cf6,
            #22d3ee);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

/* Hover */
.tech-badge:hover {
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.28),
            rgba(34, 211, 238, 0.28));

    border-color: rgba(139, 92, 246, 0.65);

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(139, 92, 246, 0.15),
        0 0 12px rgba(34, 211, 238, 0.08);

    color: #ffffff;
}

/* Show underline */
.tech-badge:hover::after {
    transform: scaleX(1);
}

@media (max-width: 900px) {

    .hero-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav .container {
        flex-direction: column;
        justify-content: center;
        padding: 0.8rem 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title-wrapper h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .avatar-image {
        width: 200px;
        height: 200px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title-wrapper h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin: 1.2rem 0 1.8rem;
    }

    .eyebrow {
        font-size: 0.75rem;
    }

    .stat {
        padding: 0.8rem 0.5rem;
    }

    .stat strong {
        font-size: 1.3rem;
    }

    .tech-stack {
        gap: 0.6rem;
    }

    .avatar-image {
        width: 180px;
        height: 180px;
        font-size: 1.8rem;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-top: 4.5rem;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-card,
    .item,
    .project-card,
    .contact-card {
        padding: 1.25rem;
    }

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

    .brand {
        letter-spacing: 0.12em;
    }

    .hero-title-wrapper h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1rem;
    }

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

    .avatar-image {
        width: 140px;
        height: 140px;
        font-size: 1.4rem;
    }

    .tech-stack {
        justify-content: center;
    }

    .tech-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
}


/* =========================================================
   EXPERIENCE SECTION — FULL WIDTH
========================================================= */

.experience-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 0;

    color: #ffffff;
    box-sizing: border-box;
}

/* FULL WIDTH EXPERIENCE CONTAINER */
.experience-section .experience-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 5.5%;
    box-sizing: border-box;
}

/* EXPERIENCE TITLE */
.experience-section .section-heading {
    width: 100%;
    text-align: left;
    margin-bottom: 55px;
}

.experience-section .section-heading h1 {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

/* =========================================================
   FULL WIDTH PROJECT CARD
========================================================= */

.experience-section .project-card {
    position: relative;

    width: 100%;
    max-width: none;
    min-width: 0;

    margin: 0;

    padding: 50px;

    box-sizing: border-box;

    border-radius: 28px;

    background: linear-gradient(145deg,
            #111827,
            #0c121d);

    border: 1px solid #253249;



    overflow: hidden;
}

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

.experience-section .project-top {
    width: 100%;

    display: flex;

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

    gap: 30px;

    padding-bottom: 30px;

    border-bottom: 1px solid #263244;
}

.experience-section .project-top>div:first-child {
    flex: 1;
}

.experience-section .project-top h2 {
    margin: 17px 0 0;

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

    line-height: 1.2;
}

.experience-section .project-number {
    flex-shrink: 0;

    font-size: 90px;

    line-height: 1;

    color: rgba(255, 255, 255, 0.04);
}

/* =========================================================
   ROLE
========================================================= */

.experience-section .role-box {
    margin-top: 30px;
}

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

.experience-section .tech-section {
    width: 100%;
}

.experience-section .tech-list {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    width: 100%;
}

.experience-section .tech-list span {
    flex: 0 0 auto;
}

/* =========================================================
   PROJECT OVERVIEW
========================================================= */

.experience-section .content-section {
    width: 100%;
}

.experience-section .content-section>p {
    width: 100%;
    max-width: 1200px;

    margin: 0 0 15px;

    line-height: 1.8;
}

/* =========================================================
   KEY CONTRIBUTIONS
========================================================= */

.experience-section .contribution-grid {
    width: 100%;

    display: grid;

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

    gap: 16px;
}

.experience-section .contribution {
    width: 100%;
    min-width: 0;

    box-sizing: border-box;
}

/* =========================================================
   SYSTEM FLOW
========================================================= */

.experience-section .flow {
    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 12px;
}

.experience-section .flow-step {
    flex: 1;
    min-width: 0;
}

.experience-section .flow-line {
    width: 35px;
    flex-shrink: 0;

    align-self: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .experience-section .experience-container {
        padding: 0 4%;
    }

    .experience-section .project-card {
        padding: 35px;
    }

    .experience-section .contribution-grid {
        grid-template-columns: 1fr;
    }

    .experience-section .flow {
        flex-wrap: wrap;
    }

    .experience-section .flow-step {
        flex: 1 1 calc(33.33% - 12px);
    }

    .experience-section .flow-line {
        display: none;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .experience-section {
        padding: 70px 0;
    }

    .experience-section .experience-container {
        padding: 0 4%;
    }

    .experience-section .project-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .experience-section .project-top h2 {
        font-size: 27px;
    }

    .experience-section .project-number {
        display: none;
    }

    .experience-section .contribution-grid {
        grid-template-columns: 1fr;
    }

    .experience-section .flow {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .experience-section .flow-step {
        width: 100%;
    }

    .experience-section .flow-line {
        display: none;
    }
}

/* =========================================
   EXPERIENCE PAGE WRAPPER
========================================= */

.experience-wrapper {
    width: 100%;
    margin: 0;
    padding: 4.5rem 0;
    box-sizing: border-box;
}

/* Main Experience title */
.experience-title {
    width: min(1450px, 90%);
    margin: 0 auto 55px;

    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;

    color: #edf2ff;

    letter-spacing: -0.05em;
}

/* =========================================
   EXPERIENCE SECTION FULL WIDTH
========================================= */

.experience-wrapper .experience-section {
    width: 100%;
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

/* Full width inner content */
.experience-wrapper .experience-container {
    width: min(1450px, 90%);
    max-width: 1450px;

    margin: 0 auto;

    box-sizing: border-box;
}

/* Full width project card */
.experience-wrapper .project-card {
    width: 100%;
    max-width: none;

    box-sizing: border-box;
}