* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #09090B;
    color: white;
    padding: 4.5em 2em 0 2em;
    font-family: 'Satoshi', sans-serif;
}

.page-body {
    display: flex;
    justify-content: space-between;
}

.my-name {
    color: rgb(228, 228, 231);
    font-size: 36px;
}

.about {
    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    color: rgb(228, 228, 231);
    font-weight: 400;
}

/* work */
.work-experience {
    display: flex;
    align-items: stretch;
}

.icon-container {
    width: 3rem;
    height: 3rem;
}

.icon img {
    width: 100%;
    height: 100%;
}

.icon-bg-1 {
    background-color: #30472D;
    padding: 0.5em;
    border-radius: 10px;
}

.icon-bg-2 {
    background-color: #463318;
    padding: 0.5em;
    border-radius: 10px;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.position {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgb(161, 161, 170);
}

.ml-3 {
    margin-left: 20px;
}

.mt {
    margin-top: 50px;
}

.resume-link {
    color: white;
    text-decoration: none;
}

.resume-link:hover {
    color: blue;
    text-decoration: underline;
}

/* projects showcase container */
.projects-container-main {
    background-color: white;
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    color: black;
    width: 55%;
    padding: 1em;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 1 1 calc(50% - 12px);
    min-width: 380px;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.project-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 24px;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.project-stat {
    font-size: 15px;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.project-description {
    font-size: 15px;
    color: #808080;
    line-height: 1.5;
}

/* Skills */
.skills-section {
    max-width: 1200px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #fff;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.skill-card {
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-card:hover {
    background: #1a1a1a;
    border-color: #3a3a3a;
    transform: translateY(-2px);
}

.skill-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-name {
    font-size: 18px;
    font-weight: 500;
    color: #e0e0e0;
}


@media (max-width: 768px) {
    .project-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .page-body {
        display: block;
    }

    /* projects showcase container */
    .projects-container-main {
        background-color: #09090B;
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
        color: black;
        width: 100%;
        padding: 1em 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .skill-card {
        padding: 16px 24px;
    }

    .skill-name {
        font-size: 16px;
    }
}