/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    color: #F5F5F5;
    background: linear-gradient(135deg, #0A0A0F, #141826);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

/* ===== BACKGROUND BLOBS ===== */
body::before,
body::after {
    content: "";
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
}

body::before {
    top: 5%;
    left: 5%;
    background: rgba(74, 73, 73, 0.977);
}

body::after {
    bottom: 5%;
    right: 5%;
    background: rgb(238, 193, 115);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    color: #FFFFFF;
}

section h1 {
    font-size: clamp(40px, 5vw, 70px);
    margin-bottom: 50px;
}

h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(18px, 1.5vw, 22px);
    color: #FFFFFF;
}

p {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    color: #A8A8B3;
}

button, a, span {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    letter-spacing: 1px;
}


/* ===== INTRO SCREEN ===== */
#intro-screen {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 18, 0.65);
    backdrop-filter: blur(25px);

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    z-index: 9999;
    overflow: hidden;
}

/* glowing background blob */
#intro-screen::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(214,180,122,0.08);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

/* ===== TYPEWRITER TITLE ===== */
#intro-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;

    font-size: clamp(28px, 4vw, 58px);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -1px;

    background: linear-gradient(90deg, #FFFFFF, #D6B47A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    border-right: 2px solid #D6B47A;

    text-shadow:
        0 0 15px rgba(214,180,122,0.15);

    animation:
        typing 3.2s steps(30, end) forwards,
        blink 0.8s step-end infinite;
}

/* subtitle */
.intro-subtitle {
    margin-top: 18px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    animation: introFade 1.5s ease forwards;
}

/* fade out */
#intro-screen.hide {
    animation: fadeOutIntro 0.8s ease forwards;
}

@keyframes fadeOutIntro {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* typewriter */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* cursor blink */
@keyframes blink {
    50% { border-color: transparent; }
}

/* subtitle fade */
@keyframes introFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    /* padding: 7px 15px; */
    
    gap: 30px;
    width: fit-content;
    max-width: 90%;
    border-radius: 50px;
    background: rgba(20, 24, 38, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    z-index: 1000;
}

nav h2 {
    margin-right: 15px;
    color: #F5F5F5;
}

nav div {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #F5F5F5;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #D6B47A;
}

nav a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D6B47A;
    border-radius: 10px;
}

/* ===== SECTIONS ===== */
section {
    min-height: auto;
    padding: 180px 60px 80px;
    padding-bottom: 7%;
    padding-top: 7%;
}

/* ===== FLEX ===== */
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* ===== HERO ===== */

/* ===== HERO GLASS PANEL ===== */
.hero-glass {
    display: inline-block;
    max-width: 600px;
    width: 100%;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;

    padding: 20px 30px;
    padding-top: 10;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.05);

    position: relative;
    overflow: hidden;
}

.hero-glass::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 180px;
    height: 180px;
    background: rgba(8, 6, 2, 0.08);
    filter: blur(50px);
    border-radius: 50%;
}

.intro-name {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D6B47A;
    margin-bottom: 20px;
    opacity: 0.9;
}

#home {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 80px;
    min-height: auto;
    padding-top: 4%;
}

/* #home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    /* min-height: 100vh;
    max-width: 1200px; */
    /* margin: 0 auto; */
    /* top-padding: px; */
/* } */ 

#home .left {
    flex: 1;
    max-width: 600px;

}



#robot3D {
    flex: 1;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#robot3D canvas {
    width: 100% !important;
    height: 100% !important;
}

#home h1 {
    font-size: clamp(70px, 10vw, 150px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #FFFFFF, #D6B47A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

#home p {
    margin: 20px 0;
    max-width: 450px;
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== SKILLS PILLS ===== */
.skills span {
    display: inline-block;
    padding: 8px 14px;
    margin: 6px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #F5F5F5;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ===== PREMIUM BUTTONS ===== */
button,
.btn,
.back-btn {
    position: relative;
    padding: 12px 26px;
    border-radius: 40px;
    border: 4px solid rgba(214,180,122,0.3);
    background: rgba(255,255,255,0.03);
    color: #F5F5F5;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

button::before,
.back-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(214,180,122,0.25), transparent);
    opacity: 0;
    transition: 0.4s;
}

button:hover::before,
.back-btn:hover::before {
    opacity: 1;
}

button:hover,
.btn:hover,
.back-btn:hover {
    transform: translateY(-3px);
    border-color: #D6B47A;
    box-shadow: 0 10px 30px rgba(214,180,122,0.2);
}

button.primary {
    background: linear-gradient(135deg, #D6B47A, #C2A468);
    color: #0A0A0F;
    border: none;
}

button.primary:hover {
    box-shadow: 0 12px 35px rgba(214,180,122,0.35);
}

/* ===== ACTIVE FILTER BUTTON ===== */
.filters button.active {
    transform: translateY(-3px);
    border-color: #D6B47A;
    background: rgba(214,180,122,0.12);
    box-shadow: 
        0 10px 30px rgba(214,180,122,0.2),
        inset 0 0 10px rgba(214,180,122,0.08),
        0 0 20px rgba(214,180,122,0.15);
}

/* ===== GLASS CARDS ===== */
.card,
.stat,
.video,
.skill-card,
.cert-card,
.feature-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.card:hover,
.stat:hover,
.skill-card:hover,
.cert-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 25px rgba(214, 180, 122, 0.12),
        0 0 50px rgba(214, 180, 122, 0.08);
}

/* ===== SKILLS SECTION ===== */
#skills,
#certificates {
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}


.skill-card {
    width: 180px;
    height: 160px;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;
    cursor: pointer;
}

.skill-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 15px;
}

.skill-card p {
    color: #F5F5F5;
    font-size: 15px;
}

.skills-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 50px;
}
/* ===== PROJECT GRID ===== */
.grid,
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 50px;
}

.card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    border-radius: 18px;
}

.card h3,
.card p,
.card a {
    position: relative;
    z-index: 2;
}

.cert-card img {
    width: 200px;
    margin-bottom: 15px;
}

.cert-card p {
    margin-bottom: 15px;
}

.cert-card a {
    text-decoration: none;
    color: #D6B47A;
}

/* ===== ABOUT ===== */
.stats {
    display: flex;
    gap: 20px;
}

.stat {
    flex: 1;
    text-align: center;
}

/* ===== FILTER ===== */
.filters {
    text-align: center;
    margin-bottom: 40px;
}

/* ===== PROJECT PAGE ===== */
.project-page {
    padding: 60px;
    min-height: 100vh;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.project-info h1 {
    font-size: clamp(42px, 6vw, 80px);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFFFFF, #D6B47A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-info p {
    margin-bottom: 25px;
    max-width: 550px;
}

.large-video {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 18px;
    color: #A8A8B3;
}

.project-detail {
    min-height: auto;
    padding: 0px 0 0px;
    margin-bottom: 0px;
}

/* ===== FADE ===== */
.fade {
    opacity: 100;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}



.large-video video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
}

/* ===== PDF CARD (MATCH YOUR GLASS STYLE) ===== */
.pdf-preview {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    margin-top: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

/* subtle glow on hover */
.pdf-preview:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(214,180,122,0.15),
        0 0 60px rgba(214,180,122,0.08);
}

/* blur the preview slightly (premium look) */
.pdf-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    filter: brightness(0.8) contrast(1.1);
}

/* overlay gradient for readability */
.pdf-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* text label */
.pdf-preview::after {
    content: "View PDF";
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 13px;
    letter-spacing: 1px;
    /* color: #D6B47A; */
        color: #000000;

    z-index: 2;
}

/* ===== PREMIUM PDF MODAL ===== */
.pdf-modal {
    position: fixed;
    inset: 0;

    background: rgba(10, 10, 15, 0.45); /* transparent dark */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;

    z-index: 2000;
}

/* ACTIVE */
.pdf-modal.active {
    opacity: 1;
    pointer-events: all;
}

html {
    scroll-behavior: smooth;
}
/* PDF CONTAINER (glass style) */
.pdf-container {
    width: 75%;
    max-width: 1600px;
    height: 80%;
    position: relative;

    border-radius: 20px;
    overflow: hidden;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.45),
        0 0 40px rgba(214,180,122,0.08);

    transform: scale(0.96);
    transition: 0.3s ease;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* .pdf-modal iframe {
    width: 85%;
    height: 90%;

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(15px);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.45),
        0 0 40px rgba(214,180,122,0.08);

    transform: scale(0.92);
    transition: 0.3s ease;
} */

/* zoom in animation */
.pdf-modal.active iframe {
    transform: scale(1);
}

/* CLOSE BUTTON (styled properly) */
.pdf-modal .close {
    position: absolute;
    top: 35px;
    right: 50px;

    font-size: 22px;
    color: #D6B47A;

    border: 1px solid rgba(214,180,122,0.4);
    padding: 8px 14px;
    border-radius: 50px;

    cursor: pointer;
    transition: 0.3s;
}

.pdf-modal .close:hover {
    background: rgba(214,180,122,0.1);
    box-shadow: 0 0 15px rgba(214,180,122,0.2);
}

.project-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pdf-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #F5F5F5;
    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.04),
        rgba(214,180,122,0.05)
    );
}

.pdf-placeholder h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #D6B47A;
}

.pdf-placeholder p {
    font-size: 14px;
    color: #A8A8B3;
}



.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 3000;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-container {
    position: relative;
    width: 70%;
    max-width: 900px;
    transition: 0.3s ease;
}

.video-container video {
    width: 100%;
    border-radius: 18px;
}

.video-container.zoomed {
    width: 90%;
}

.zoom-btn,
.close {
    position: absolute;
    top: 15px;
    background: rgba(0,0,0,0.5);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
}

.close {
    right: 15px;
}

.zoom-btn {
    right: 60px;
}

/* ===== VIDEO PREVIEW CARD ===== */
.video-preview {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    margin-top: 15px;
    cursor: pointer;
    overflow: hidden;
    position: relative;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    transition: all 0.3s ease;
}

.video-preview:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(214,180,122,0.15),
        0 0 60px rgba(214,180,122,0.08);
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.75);
}

/* overlay text */
.video-preview::before {
    content: "Click to View Demo";
    position: absolute;
    bottom: 15px;
    left: 15px;
    /* color: #D6B47A; */
    color: #000000;
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 2;
}


/* close button */
.video-modal .close {
    position: absolute;
    top: 30px;
    right: 40px;

    font-size: 22px;
    color: #D6B47A;

    border: 1px solid rgba(214,180,122,0.4);
    padding: 8px 14px;
    border-radius: 50px;

    cursor: pointer;
    transition: 0.3s;
}

.video-modal .close:hover {
    background: rgba(214,180,122,0.1);
}


/* =========================
   MODEL METRICS TABLE
========================= */
.metrics-section {
    margin-top: 20px;
    grid-column: 1 / -1;
    width: 100%;
}

.metrics-section h2 {
    margin-bottom: 25px;
    color: #FFFFFF;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 18px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.25),
        0 0 35px rgba(214,180,122,0.05);
}

.metrics-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

.metrics-table thead {
    background: rgba(255,255,255,0.03);
}

.metrics-table th,
.metrics-table td {
    padding: 22px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.metrics-table th {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
}

.metrics-table th span {
    font-size: 12px;
    color: #A8A8B3;
    font-weight: 400;
}

.metrics-table td {
    color: #E8E8E8;
    font-size: 15px;
}

.metrics-table tbody tr {
    transition: 0.3s ease;
}

.metrics-table tbody tr:hover {
    background: rgba(214,180,122,0.05);
}

.metrics-table .best {
    font-weight: 700;
    color: #D6B47A;
}


/* Rounded corners */
.metrics-table thead tr th:first-child {
    border-top-left-radius: 18px;
}

.metrics-table thead tr th:last-child {
    border-top-right-radius: 18px;
}

/* #home .left,
#robot3D {
    animation: slideDownHero 1.2s ease forwards;
} */

/* nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 25;
    animation: navSlideDown 1s ease forwards;
    animation: navDrop 0.8s ease forwards;
} */

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ===== CONTACT SECTION ===== */
#contact {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 120px 40px;
    padding-bottom: 3%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
}

.contact-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#contact h1 {
    font-size: clamp(70px, 10vw, 150px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #FFFFFF, #D6B47A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0%;
}

.contact-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-links a {
    color: #B8B8C5;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-links a:hover {
    color: #D6B47A;
    text-shadow: 0 0 12px rgba(214,180,122,0.15);
}


/* ===== TIMELINE CARD ===== */
.timeline-card {
    margin-top: 40px;
    padding: 30px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        0 0 25px rgba(214,180,122,0.08),
        0 0 50px rgba(214,180,122,0.04);

    position: relative;
}

.timeline-card h3 {
    margin-bottom: 30px;
    color: #FFFFFF;
    font-size: 22px;
}

/* vertical line */
.timeline-card::before {
    content: "";
    position: absolute;
    left: 38px;
    top: 85px;
    bottom: 35px;
    width: 2px;
    background: linear-gradient(to bottom, #D6B47A, rgba(214,180,122,0.15));
}

/* timeline items */
.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* glowing dot */
.timeline-dot {
    width: 16px;
    height: 16px;
    margin-top: 6px;
    border-radius: 50%;
    background: #D6B47A;
    box-shadow:
        0 0 10px rgba(214,180,122,0.6),
        0 0 20px rgba(214,180,122,0.25);
    flex-shrink: 0;
    z-index: 2;
}

/* content */
.timeline-content {
    flex: 1;
}

.timeline-date {
    font-size: 13px;
    color: #D6B47A;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.timeline-content h4 {
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 18px;
}

.timeline-content p {
    color: #A8A8B3;
    margin-bottom: 4px;
    font-size: 14px;
}


/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {



     .metrics-table th,
    .metrics-table td {
        padding: 16px 14px;
        font-size: 14px;
    }
    
    nav {
        padding: 12px 20px;
        gap: 10px;
    
    }


    /* section {

    padding: 180px 60px 80px;

    } */

    .flex,
    .project-showcase {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #home h1 {
        font-size: 60px;
    }

    #robot3D {
        height: 300px;
    }

    .project-page {
        padding: 30px;
    }
}