/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #071827;
    color: #ffffff;
}

a {
    text-decoration: none;
}


/* =========================================
   COLORS
========================================= */

:root {
    --navy: #071827;
    --navy-light: #0b2235;
    --blue: #77c7ff;
    --yellow: #fdcb2c;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    --border: rgba(255, 255, 255, 0.12);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    height: 76px;

    background: rgba(7, 24, 39, 0.82);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--border);
}

.navbar-container {
    width: min(1240px, 88%);
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 27px;
    font-weight: 800;

    letter-spacing: -1px;

    color: var(--white);
}

.logo span {
    color: var(--yellow);
}


/* NAV MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    font-weight: 500;

    transition: 0.25s ease;
}

.nav-menu a:hover {
    color: var(--yellow);
}


/* NAV BUTTON */

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 17px;

    border-radius: 50px;

    background: var(--yellow);

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s ease;
}

.nav-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(253, 203, 44, 0.18);

    color: var(--navy);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    padding: 76px 0 0;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 78% 35%,
            rgba(21, 111, 168, 0.24),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 85%,
            rgba(253, 203, 44, 0.08),
            transparent 28%
        ),

        var(--navy);
}


.hero-container {
    width: min(1240px, 88%);

    min-height: calc(100vh - 76px);

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 40px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;

    z-index: 2;

    padding: 50px 0 70px;
}


/* LABEL */

.hero-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--yellow);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.3px;
}

.hero-label span {
    width: 28px;
    height: 2px;

    background: var(--yellow);
}


/* HEADING */

.hero-content h1 {
    font-size: clamp(54px, 7vw, 96px);

    line-height: 0.92;

    letter-spacing: -4px;

    font-weight: 800;
}

.hero-content h1 span {
    color: var(--blue);
}


/* DESCRIPTION */

.hero-description {
    max-width: 530px;

    margin-top: 30px;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 30px;
}


.button-primary,
.button-secondary {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.25s ease;
}


/* PRIMARY */

.button-primary {
    background: var(--yellow);

    color: var(--navy);
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(253, 203, 44, 0.18);

    color: var(--navy);
}


/* SECONDARY */

.button-secondary {
    border: 1px solid var(--border);

    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--blue);

    background: rgba(255, 255, 255, 0.04);

    color: var(--white);
}


/* =========================================
   HERO INFO
========================================= */

.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 48px;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.info-item {
    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;

    letter-spacing: 0.4px;
}

.info-item i {
    color: var(--blue);

    font-size: 12px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 660px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* BACKGROUND CIRCLE */

.hero-background-circle {
    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background: rgba(28, 132, 199, 0.12);

    filter: blur(4px);
}


/* =========================================
   PHOTO
========================================= */

.hero-photo-container {
    position: relative;

    width: min(430px, 75vw);

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 30px;

    transform: rotate(2deg);

    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.38);

    z-index: 2;
}

.hero-photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: saturate(0.88);
}


/* PHOTO OVERLAY */

.hero-photo-container::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 24, 39, 0.45)
        );
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    z-index: 5;

    padding: 13px 15px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(14px);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.22);

    color: rgba(255, 255, 255, 0.78);

    font-size: 10px;
}


.card-top {
    top: 75px;
    left: 5px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 18px;

    border: 1px solid rgba(7, 24, 39, 0.08);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(14px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);

    color: #071827;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;

    z-index: 4;
}

.card-top span {
    color: #071827;
}

.card-top .card-indicator {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fdcb2c;
}

/* DOT */

.card-indicator {
    width: 7px;
    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background: var(--yellow);
}


/* CARD BOTTOM */

.card-bottom {
    right: -2%;

    bottom: 17%;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.card-bottom strong {
    color: var(--white);

    font-size: 12px;
}

.card-bottom small {
    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
}


/* =========================================
   NUMBER
========================================= */

.hero-number {
    position: absolute;

    right: 0;

    top: 8%;

    font-size: 110px;

    font-weight: 800;

    line-height: 1;

    color: rgba(255, 255, 255, 0.035);
}


/* =========================================
   TEMPORARY SECTION
========================================= */

.temporary-section {
    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #071827;

    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 900px) {

    .nav-menu {
        gap: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 30px;
    }

    .hero-content {
        text-align: center;

        padding: 35px 0 10px;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-photo-container {
        width: min(330px, 65vw);
    }

    .card-top {
        left: 8%;
    }

    .card-bottom {
        right: 7%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 576px) {

    .navbar {
        height: 66px;
    }

    .navbar-container {
        width: 90%;
    }

    .nav-menu {
        display: none;
    }

    .nav-button {
        padding: 9px 13px;

        font-size: 11px;
    }


    /* HERO */

    .hero {
        padding-top: 66px;
    }

    .hero-container {
        width: 90%;

        min-height: calc(100vh - 66px);

        gap: 0;
    }

    .hero-content {
        padding-top: 48px;
    }

    .hero-label {
        font-size: 9px;

        letter-spacing: 1.7px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 15vw, 72px);

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.65;

        margin-top: 22px;
    }


    /* BUTTON */

    .hero-buttons {
        justify-content: center;
    }

    .button-primary,
    .button-secondary {
        padding: 12px 16px;

        font-size: 11px;
    }


    /* INFO */

    .hero-info {
        justify-content: center;

        gap: 12px;

        margin-top: 30px;
    }

    .info-item {
        font-size: 8px;

        text-align: left;
    }


    /* VISUAL */

    .hero-visual {
        min-height: 390px;

        margin-top: -10px;
    }

    .hero-photo-container {
        width: 250px;

        border-radius: 22px;
    }


    /* FLOATING CARDS */

    .floating-card {
        font-size: 8px;

        padding: 10px 11px;
    }

    .card-top {
        top: 9%;

        left: 0;
    }

    .card-bottom {
        right: 0;

        bottom: 8%;
    }


    /* NUMBER */

    .hero-number {
        font-size: 80px;

        top: 0;

        right: 0;
    }

}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    background: #ffffff;

    color: #071827;

    padding: 130px 0;
}


.about-container {
    width: min(1120px, 88%);

    margin: auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    margin-bottom: 65px;
}


.section-number {
    margin-bottom: 16px;

    color: #0d76b5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-heading h2 {
    max-width: 650px;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}


.section-heading h2 span {
    color: #0d76b5;
}


/* =========================================
   ABOUT GRID
========================================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: start;
}


/* =========================================
   ABOUT INTRO
========================================= */

.about-intro {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.about-intro p {
    color: #5e6871;

    font-size: 14px;

    line-height: 1.85;
}


.about-intro .about-highlight {
    color: #071827;

    font-size: 22px;

    line-height: 1.5;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.about-intro strong {
    color: #071827;
}


/* =========================================
   DETAIL CARDS
========================================= */

.about-details {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.detail-card {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 21px;

    border: 1px solid #e7ebee;

    border-radius: 16px;

    background: #f9fafb;

    transition: 0.25s ease;
}


.detail-card:hover {
    transform: translateX(5px);

    border-color: #b7d9ec;

    box-shadow:
        0 12px 30px rgba(7, 24, 39, 0.06);
}


.detail-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #071827;

    color: #fdcb2c;

    font-size: 15px;
}


.detail-card h3 {
    margin-bottom: 6px;

    color: #071827;

    font-size: 14px;

    font-weight: 800;
}


.detail-card p {
    color: #7a838b;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   MOTTO
========================================= */

.about-motto {
    margin-top: 15px;

    padding: 25px 5px;

    border-top: 1px solid #e5e8eb;
}


.about-motto span {
    display: block;

    margin-bottom: 8px;

    color: #8a949c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.about-motto strong {
    color: #071827;

    font-size: 24px;

    letter-spacing: -0.8px;
}


.about-motto i {
    color: #0d76b5;

    font-style: normal;
}


/* =========================================
   ABOUT MOBILE
========================================= */

@media screen and (max-width: 800px) {

    .about-section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-intro .about-highlight {
        font-size: 20px;
    }

}


@media screen and (max-width: 576px) {

    .about-section {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .about-intro p {
        font-size: 13px;
    }

    .about-intro .about-highlight {
        font-size: 18px;
    }

    .detail-card {
        padding: 17px;
    }

    .detail-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

    .about-motto strong {
        font-size: 20px;
    }

}

/* =========================
   PROJECTS CAROUSEL
========================= */

.projects-section {
    padding: 130px 0;

    background: #071827;
    color: #ffffff;

    overflow: hidden;
}

.projects-container {
    width: min(1120px, 88%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.projects-header {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 60px;

    margin-bottom: 65px;
}

.projects-header .section-number {
    margin-bottom: 18px;

    color: #77c7ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.projects-header h2 {
    color: #ffffff;

    font-size: clamp(48px, 7vw, 78px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.projects-header h2 span {
    color: #77c7ff;
}


/* RIGHT SIDE */

.projects-header-right {
    max-width: 350px;
}

.projects-header-right > p {
    margin-bottom: 25px;

    color: #8999a5;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================
   CONTROLS
========================= */

.project-controls {
    display: flex;
    gap: 10px;
}

.project-arrow {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    transition: 0.3s ease;
}

.project-arrow:hover {
    border-color: #77c7ff;

    background: #77c7ff;

    color: #071827;

    transform: translateY(-3px);
}


/* =========================
   CAROUSEL
========================= */

.projects-carousel-wrapper {
    width: 100%;

    overflow: hidden;
}

.projects-carousel {
    display: flex;

    gap: 22px;

    overflow-x: auto;

    padding: 10px 0 30px;

    cursor: grab;

    scroll-behavior: smooth;

    scrollbar-width: none;

    user-select: none;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.projects-carousel.dragging {
    cursor: grabbing;

    scroll-behavior: auto;
}


/* =========================
   CARD
========================= */

.project-card {
    flex: 0 0 410px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 22px;

    background: #0a2234;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(119,199,255,0.4);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25);
}


/* =========================
   IMAGE
========================= */

.project-image {
    position: relative;

    height: 245px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(119,199,255,0.16),
            transparent 55%
        ),
        #0c2940;
}


/* Placeholder */

.project-placeholder {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(119,199,255,0.10);

    color: #77c7ff;

    font-size: 28px;

    transition: 0.4s ease;
}

.project-card:hover .project-placeholder {
    transform: scale(1.1) rotate(-4deg);

    background: rgba(119,199,255,0.16);
}


/* NUMBER */

.project-index {
    position: absolute;

    top: 20px;
    left: 22px;

    color: #fdcb2c;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* FEATURED LABEL */

.featured-label {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 7px 10px;

    border-radius: 50px;

    background: #fdcb2c;

    color: #071827;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================
   CARD CONTENT
========================= */

.project-card-content {
    padding: 30px;
}

.project-category {
    margin-bottom: 12px;

    color: #77c7ff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.project-card-content h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 26px;

    line-height: 1.1;

    letter-spacing: -1px;
}

.project-card-content > p {
    min-height: 65px;

    margin-bottom: 22px;

    color: #8999a5;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================
   TECH
========================= */

.project-tech {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 25px;
}

.project-tech span {
    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50px;

    color: #b6c2ca;

    font-size: 8px;
}


/* =========================
   LINK
========================= */

.project-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    transition: 0.25s ease;
}

.project-link i {
    color: #fdcb2c;

    transition: 0.25s ease;
}

.project-link:hover {
    color: #77c7ff;
}

.project-link:hover i {
    transform: translate(3px, -3px);
}


/* FEATURED CARD */

.project-featured-card {
    border-color: rgba(253,203,44,0.25);
}


/* =========================
   BOTTOM
========================= */

.projects-bottom {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 25px;
}

.projects-bottom > p {
    flex-shrink: 0;

    color: #697b88;

    font-size: 10px;
}

.projects-bottom > p i {
    margin-right: 5px;

    color: #77c7ff;
}


/* PROGRESS */

.project-progress {
    width: 180px;
    height: 2px;

    overflow: hidden;

    background: rgba(255,255,255,0.10);
}

.project-progress-bar {
    width: 25%;
    height: 100%;

    background: #77c7ff;

    transition: width 0.3s ease;
}


/* =========================
   REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   TABLET
========================= */

@media screen and (max-width: 800px) {

    .projects-section {
        padding: 100px 0;
    }

    .projects-header {
        align-items: start;

        flex-direction: column;

        gap: 25px;
    }

    .projects-header-right {
        max-width: 500px;
    }

    .project-card {
        flex-basis: 360px;
    }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 576px) {

    .projects-section {
        padding: 80px 0;
    }

    .projects-header h2 {
        font-size: 46px;

        letter-spacing: -2.5px;
    }

    .projects-header-right > p {
        font-size: 12px;
    }

    .project-card {
        flex: 0 0 82vw;

        border-radius: 18px;
    }

    .project-image {
        height: 210px;
    }

    .project-card-content {
        padding: 24px;
    }

    .project-card-content h3 {
        font-size: 24px;
    }

    .projects-bottom {
        gap: 15px;
    }

    .project-progress {
        width: 100px;
    }

}

/* =========================
   PROJECTS FIX
========================= */

#projects {
    padding-top: 100px;
}

.projects-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.projects-header h2 {
    margin: 12px 0 16px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.projects-header p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
}

/* =====================================================
   EXPERIENCE — REFINED
===================================================== */

.experience-section {
    position: relative;
    padding: 115px 0 100px;
    background: #f9f9f9;
    color: #071827;
    overflow: hidden;
}

.experience-container {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.experience-header {
    max-width: 820px;
    margin-bottom: 65px;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.experience-header .section-label {
    display: block;
    margin-bottom: 10px;

    color: #1687c7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.experience-header h2 {
    margin: 0;

    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 700;
}

.experience-header h2 span {
    color: #1687c7;
}

.experience-header p {
    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(7, 24, 39, 0.58);

    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   EXPERIENCE LIST
===================================================== */

.experience-list {
    position: relative;
}


/* Timeline line */

.experience-list::before {
    content: "";

    position: absolute;

    left: 138px;
    top: 8px;
    bottom: 35px;

    width: 1px;

    background: rgba(7, 24, 39, 0.13);
}


/* =====================================================
   ITEM
===================================================== */

.experience-item {
    position: relative;

    display: grid;

    grid-template-columns: 110px 1fr;

    column-gap: 58px;

    padding-bottom: 62px;
}

.experience-item:last-child {
    padding-bottom: 0;
}


/* =====================================================
   DATE
===================================================== */

.experience-date {
    position: relative;

    padding-top: 2px;

    text-align: right;
}

.experience-date::after {
    content: "";

    position: absolute;

    top: 6px;
    right: -34px;

    width: 11px;
    height: 11px;

    border: 2px solid #1687c7;

    border-radius: 50%;

    background: #f9f9f9;

    z-index: 2;

    transition: all 0.3s ease;
}

.experience-item:hover
.experience-date::after {
    background: #1687c7;
    transform: scale(1.2);
}

.experience-date span {
    display: block;

    color: #071827;

    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
}

.experience-date small {
    display: block;

    margin-top: 5px;

    color: rgba(7, 24, 39, 0.4);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.experience-main {
    max-width: 760px;
}

.experience-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 25px;
}

.experience-company {
    margin: 0 0 7px;

    color: #1687c7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.experience-top h3 {
    margin: 0;

    color: #071827;

    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;

    letter-spacing: -1px;

    transition: color 0.3s ease;
}

.experience-item:hover
.experience-top h3 {
    color: #1687c7;
}

.experience-number {
    padding-top: 3px;

    color: rgba(7, 24, 39, 0.18);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.experience-description {
    max-width: 680px;

    margin: 17px 0 19px;

    color: rgba(7, 24, 39, 0.58);

    font-size: 13px;
    line-height: 1.75;
}


/* =====================================================
   TAGS
===================================================== */

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.experience-tags span {
    padding: 6px 10px;

    border: 1px solid rgba(7, 24, 39, 0.11);

    border-radius: 999px;

    color: rgba(7, 24, 39, 0.6);

    background: transparent;

    font-size: 9px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.experience-item:hover
.experience-tags span {
    border-color: rgba(22, 135, 199, 0.25);

    background: rgba(22, 135, 199, 0.06);

    color: #1687c7;
}


/* =====================================================
   FOOTER
===================================================== */

.experience-footer {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 65px;

    color: #071827;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.experience-line {
    width: 40px;
    height: 1px;

    background: rgba(7, 24, 39, 0.18);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .experience-section {
        padding: 90px 0 80px;
    }

    .experience-container {
        width: calc(100% - 40px);
    }

    .experience-header {
        margin-bottom: 55px;
    }

    .experience-list::before {
        left: 6px;
    }

    .experience-item {
        display: block;

        padding-left: 32px;
        padding-bottom: 48px;
    }

    .experience-date {
        padding: 0;
        margin-bottom: 14px;

        text-align: left;
    }

    .experience-date::after {
        left: -32px;
        right: auto;
        top: 2px;
    }

    .experience-date span,
    .experience-date small {
        display: inline;
    }

    .experience-date small {
        margin-left: 6px;
    }

    .experience-number {
        display: none;
    }

    .experience-top h3 {
        font-size: 25px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 500px) {

    .experience-section {
        padding: 75px 0 65px;
    }

    .experience-container {
        width: calc(100% - 32px);
    }

    .experience-header h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .experience-header p {
        font-size: 13px;
    }

    .experience-description {
        font-size: 12px;
    }

    .experience-footer {
        margin-top: 45px;
        gap: 8px;
        font-size: 8px;
    }

    .experience-line {
        width: 20px;
    }
}

/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    position: relative;

    min-height: 720px;

    padding: 120px 0 45px;

    background: #071827;

    color: #ffffff;

    overflow: hidden;
}

.contact-container {
    position: relative;

    width: min(1120px, calc(100% - 64px));

    min-height: 555px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


/* =====================================================
   LABEL
===================================================== */

.contact-label {
    color: #77c7ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =====================================================
   MAIN
===================================================== */

.contact-main {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    padding: 80px 0;
}

.contact-heading {
    max-width: 750px;
}

.contact-heading h2 {
    margin: 0;

    font-size: clamp(48px, 6.5vw, 82px);

    line-height: 0.98;

    letter-spacing: -3.5px;

    font-weight: 700;
}

.contact-heading h2 span {
    color: #77c7ff;
}

.contact-heading p {
    max-width: 570px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   EMAIL
===================================================== */

.contact-email {
    position: relative;

    flex-shrink: 0;

    width: 270px;

    padding: 22px 22px 25px;

    border: 1px solid rgba(119, 199, 255, 0.22);

    border-radius: 18px;

    background: rgba(119, 199, 255, 0.05);

    color: #ffffff;

    text-decoration: none;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.contact-email:hover {
    transform: translateY(-8px);

    background: rgba(119, 199, 255, 0.10);

    border-color: rgba(119, 199, 255, 0.5);
}

.contact-email span {
    display: block;

    margin-bottom: 10px;

    color: #77c7ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.contact-email strong {
    display: block;

    padding-right: 25px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;

    word-break: break-word;
}

.contact-email i {
    position: absolute;

    top: 22px;
    right: 22px;

    color: #77c7ff;

    font-size: 12px;

    transition: transform 0.3s ease;
}

.contact-email:hover i {
    transform: translate(3px, -3px);
}


/* =====================================================
   BOTTOM
===================================================== */

.contact-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-socials {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 28px;
}

.contact-socials a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.3s ease;
}

.contact-socials a i {
    font-size: 8px;
}

.contact-socials a:hover {
    color: #77c7ff;
}

.contact-location {
    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
}

.contact-location i {
    color: #77c7ff;

    font-size: 10px;
}


/* =====================================================
   DECORATION
===================================================== */

.contact-decoration {
    position: absolute;

    left: 50%;

    bottom: -25px;

    transform: translateX(-50%);

    white-space: nowrap;

    color: rgba(255, 255, 255, 0.025);

    font-size: clamp(70px, 13vw, 170px);

    font-weight: 800;

    letter-spacing: -8px;

    pointer-events: none;

    user-select: none;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .contact-section {
        min-height: auto;

        padding: 100px 0 40px;
    }

    .contact-container {
        width: calc(100% - 40px);

        min-height: auto;
    }

    .contact-main {
        align-items: flex-start;

        flex-direction: column;

        padding: 65px 0;
    }

    .contact-email {
        width: 100%;

        max-width: 400px;
    }

    .contact-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 500px) {

    .contact-section {
        padding: 80px 0 35px;
    }

    .contact-container {
        width: calc(100% - 32px);
    }

    .contact-main {
        padding: 55px 0;
    }

    .contact-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .contact-heading p {
        margin-top: 22px;

        font-size: 13px;
    }

    .contact-email {
        max-width: none;

        padding: 20px;
    }

    .contact-socials {
        gap: 18px;
    }

    .contact-socials a {
        font-size: 10px;
    }

    .contact-decoration {
        bottom: -10px;

        font-size: 62px;

        letter-spacing: -4px;
    }
}

/* =========================================
   EXPERIENCE — CATEGORY STRUCTURE FIX
========================================= */

.experience-category {
    margin-top: 70px;
    margin-bottom: 35px;
    padding-left: 0;
}

.experience-category:first-of-type {
    margin-top: 55px;
}

.experience-category-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #151515;
    text-transform: uppercase;
}


/* Professional → Organization separation */

.experience-category-organizations {
    margin-top: 90px;
    padding-top: 55px;
    border-top: 1px solid #e5e5e5;
}

.experience-category-organizations .experience-category-label {
    color: #083d62;
}


/* Make sure the list starts BELOW the category */

.experience-category + .experience-list {
    margin-top: 0;
}


/* Experience items */

.experience-item {
    position: relative;
}


/* Better spacing between items */

.experience-list .experience-item + .experience-item {
    margin-top: 55px;
}


/* Organization section should not stick to first item */

.experience-category-organizations + .experience-list {
    margin-top: 10px;
}


/* Footer */

.experience-footer {
    margin-top: 90px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .experience-category {
        margin-top: 55px;
        margin-bottom: 30px;
    }

    .experience-category-organizations {
        margin-top: 65px;
        padding-top: 40px;
    }

    .experience-list .experience-item + .experience-item {
        margin-top: 45px;
    }

    .experience-footer {
        margin-top: 65px;
    }

}

.experience-category {
    width: 100%;
    position: relative;
    z-index: 2;
}

.experience-category-label {
    margin-left: 0;
}