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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #000000;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 1.5rem 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Brush Script MT', cursive;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-name:hover {
    color: rgba(255, 255, 255, 1);
}

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

.nav-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-item.active {
    color: rgba(255, 255, 255, 1);
}

main {
    min-height: 100vh;
}

main:not(:has(.hero-header)):not(:has(.work-entries-container)):not(:has(.case-study-container)) {
    padding-top: 6rem;
}

.hero-header {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/header-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.65) 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    text-transform: lowercase;
}

.about-hero-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 2rem 4rem;
    margin: 0 auto;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    max-width: 800px;
}

.content-section h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

.about-hero-layout .about-image {
    flex: 0 0 350px;
}

.about-hero-layout .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    display: block;
    box-sizing: border-box;
}

.about-hero-layout .about-text {
    flex: 1;
}

.about-hero-layout .about-text h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-transform: lowercase;
    font-family: 'Times New Roman', Times, serif;
}

.about-hero-layout .about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
    text-transform: lowercase;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-dark {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-dark:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.second-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.second-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/section-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
}

.second-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.work-experience-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 4rem 4rem;
    margin: 0 auto;
}

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: lowercase;
    margin: 0;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.experience-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-transform: lowercase;
    line-height: 1.4;
}

.job-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0 0 0;
    text-transform: lowercase;
}

.job-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    text-transform: lowercase;
}

.job-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-description-bullets {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.job-description-bullets li {
    margin-bottom: 0.75rem;
}

.job-description-bullets li:last-child {
    margin-bottom: 0;
}

.experience-photo {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px;
}

.third-section {
    position: relative;
    width: 100vw;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.third-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/skills-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
}

.third-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.skills-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 4rem 4rem;
    margin: 0 auto;
}

.skills-intro {
    margin-bottom: 3rem;
}

.skills-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: lowercase;
    line-height: 1.6;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-icons img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 10px;
}

.tech-icons img:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.skills-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.skill-category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.skill-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: lowercase;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.skill-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.4);
}

.tech-icons-small {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tech-icons-small img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 10px;
}

.tech-icons-small img:hover {
    opacity: 1;
}

.experience-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: lowercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.75rem;
}

.experience-link-btn:hover {
    border-color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
}

.arrow-icon {
    display: inline-block;
}

@media (min-width: 1024px) {
    .second-section-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .nav-item {
        font-size: 0.9rem;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .about-hero-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .about-hero-layout .about-image {
        flex: 1 1 auto;
        max-width: 500px;
    }
    
    .about-hero-layout .about-text h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-layout .about-text p {
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .work-experience-content {
        padding: 3rem 2rem;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .job-title {
        font-size: 1.1rem;
    }
    
    .job-description {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 2rem;
    }
}

.footer-section {
    position: relative;
    width: 100vw;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
}

.footer-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    text-transform: lowercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.footer-middle {
    flex: 1;
    display: flex;
    gap: 4rem;
}

.footer-column {
    flex: 1;
}

.footer-column-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-right {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-copyright,
.footer-version {
    color: rgba(255, 255, 255, 0.9);
}

.footer-copyright p,
.footer-version p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: lowercase;
}

.footer-version p {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-button {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    cursor: pointer;
    z-index: 1003;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-menu-button:hover {
    background: rgba(8, 8, 8, 0.7);
}

.mobile-menu-button::before {
    content: '☰';
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-button.active::before {
    content: '×';
    font-size: 2rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 3rem;
}

.mobile-nav-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: rgba(255, 255, 255, 1);
}

body.menu-open {
    overflow: hidden;
}

.contact-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
    padding: 1.5rem 0 3rem;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/contact-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.contact-header h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    text-align: left;
    flex: 1;
}

.contact-info h3 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    margin-bottom: 0.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        justify-content: center;
    }
    
    .nav-name {
        font-size: 1.2rem;
    }
    
    .hero-header {
        height: auto;
        min-height: auto;
        overflow-x: hidden;
    }
    
    .about-hero-layout {
        flex-direction: column;
        padding: 2rem 1rem 3rem;
        gap: 2rem;
        text-align: center;
        display: flex;
        justify-content: flex-start;
    }
    
    .about-image {
        width: 100%;
        height: 50vh;
        display: flex;
        justify-content: center;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        padding: 0;
        border: none;
    }
    
    .about-text h1 {
        font-size: 2.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .button-group {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-block !important;
    }
    
    .second-section,
    .third-section {
        padding: 3rem 1rem;
    }
    
    .experience-link-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .work-experience-content,
    .skills-content {
        padding: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .experience-list {
        gap: 2rem;
    }
    
    .experience-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .experience-left {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .job-title {
        font-size: 1.3rem;
    }
    
    .job-date {
        font-size: 0.9rem;
    }
    
    .job-description-wrapper {
        padding: 0;
    }
    
    .job-description-bullets li {
        font-size: 0.9rem;
    }
    
    .experience-photo {
        width: 100%;
        max-height: 300px;
    }
    
    .skills-intro p {
        font-size: 1rem;
    }
    
    .skills-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    
    .skill-category {
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .tech-icons,
    .tech-icons-small {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tech-icons img,
    .tech-icons-small img {
        width: 40px;
        height: 40px;
    }
    
    .skill-list li {
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-left {
        text-align: center;
        width: 100%;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-subtitle {
        font-size: 1.3rem;
    }
    
    .footer-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        margin: 0 auto;
        display: inline-block;
    }
    
    .footer-column-title {
        font-size: 1.3rem;
    }
    
    .footer-links a {
        font-size: 1.3rem;
    }
    
    .footer-copyright p,
    .footer-version p {
        font-size: 1.3rem;
    }
    
    .footer-middle {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: none;
        text-align: center;
    }
    
    .footer-right {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }
    
    .footer-copyright,
    .footer-version {
        text-align: center;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .nav-name {
        font-size: 1rem;
    }
    
    .about-image img {
        width: 240px;
        height: 340px;
    }
    
    .about-text h1 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .experience-item {
        padding: 1.5rem 1rem;
    }
    
    .job-title {
        font-size: 1.2rem;
    }
    
    .mobile-nav-item {
        font-size: 2rem;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 0.95rem;
    }
    
    .contact-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-info h3 {
        font-size: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
}

.work-entries-container {
    width: 100%;
}

.work-entry {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.work-entry-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.work-entry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.work-entry-1 .work-entry-bg {
    background-image: url('/static/work-bg-1.png');
}

.work-entry-2 .work-entry-bg {
    background-image: url('/static/work-bg-5.png');
}

.work-entry-3 .work-entry-bg {
    background-image: url('/static/work-bg-3.png');
}

.work-entry-4 .work-entry-bg {
    background-image: url('/static/work-bg-4.png');
}

.work-entry-5 .work-entry-bg {
    background-image: url('/static/work-bg-5.png');
}

.work-entry-6 .work-entry-bg {
    background-image: url('/static/work-bg-6.png');
}

.work-entry-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 3rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
    justify-content: flex-start;
}

.work-entry:first-child .work-entry-content {
    padding-top: 6rem;
}

.work-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.work-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.work-logo {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.work-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.work-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-transform: lowercase;
}

.work-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-transform: lowercase;
}

.work-header-right {
    text-align: right;
}

.work-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-transform: lowercase;
}

.work-body-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.work-body-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-details-btn {
    padding: 0.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.work-details-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.work-body-right {
    display: flex;
}

.work-description-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
}

.work-desc-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: lowercase;
}

.work-visual-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 0;
    width: 100%;
}

.work-visual-container {
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-visual-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.work-visual-placeholder {
    width: 500px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@media (min-width: 1024px) {
    .work-entry-overlay {
        background: rgba(0, 0, 0, 0.85);
    }
}

@media (max-width: 768px) {
    .work-entry-content {
        padding: 2rem 1.5rem 3rem;
        gap: 2.5rem;
        text-align: center;
    }
    
    .work-entry:first-child .work-entry-content {
        padding-top: 5rem;
    }
    
    .work-header-row {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .work-header-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .work-logo-placeholder {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .work-header-text {
        text-align: center;
        width: 100%;
    }
    
    .work-header-right {
        text-align: center;
        width: 100%;
    }
    
    .work-logo, .work-logo-placeholder {
        width: 48px;
        height: 48px;
    }
    
    .work-title {
        font-size: 1.25rem;
    }
    
    .work-subtitle {
        font-size: 0.9rem;
    }
    
    .work-body-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-description-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-desc-text {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .work-title {
        text-align: center;
    }
    
    .work-subtitle, .work-date {
        text-align: center;
    }
    
    .work-visual-image {
        max-width: 100%;
        max-height: 300px;
    }
    
    .work-visual-placeholder {
        width: 100%;
        max-width: 400px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .work-entry-content {
        padding: 1.5rem 1rem 2.5rem;
        gap: 2rem;
    }
    
    .work-entry:first-child .work-entry-content {
        padding-top: 4.5rem;
    }
    
    .work-title {
        font-size: 1.1rem;
    }
    
    .work-subtitle, .work-date {
        font-size: 0.85rem;
    }
    
    .work-desc-text {
        font-size: 0.85rem;
    }
    
    .work-details-btn {
        font-size: 0.8rem;
        padding: 0.55rem 1.25rem;
    }
}

/* Case Study Pages */
:root {
    --navbar-height: 80px;
    --sidebar-width: 280px;
}

.case-study-container {
    position: relative;
    min-height: 100vh;
    color: white;
}

.case-study-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.case-study-p1 .case-study-bg {
    background-image: url('/static/work-bg-1.png');
}

.case-study-p2 .case-study-bg {
    background-image: url('/static/work-bg-5.png');
}

.case-study-p3 .case-study-bg {
    background-image: url('/static/work-bg-3.png');
}

.case-study-p4 .case-study-bg {
    background-image: url('/static/work-bg-4.png');
}

.case-study-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.90);
    z-index: 1;
}

.case-study-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--navbar-height) 2rem 6rem;
}

.case-study-sidebar-wrapper {
    position: fixed;
    left: 2rem;
    top: var(--navbar-height);
    width: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
    padding-top: 5px;
}

.case-study-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1vh;
}

.case-study-back-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.case-study-back-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.case-study-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-height: calc(100vh - var(--navbar-height) - 10rem);
    overflow-y: auto;
    margin-top: 1vh;
}

.case-study-main {
    margin-left: calc(var(--sidebar-width) + 4rem);
    padding-top: 0;
}

.project-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.case-study-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    text-transform: lowercase;
    line-height: 1;
}

.case-study-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.6);
}

.case-study-divider {
    width: 100%;
    height: 1px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0 2rem 0;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin: 0;
}

.sidebar-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-transform: lowercase;
}

.sidebar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: white;
}

.case-study-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.case-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-heading {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    text-transform: lowercase;
    color: white;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-transform: lowercase;
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 1.5rem;
    position: relative;
    text-transform: lowercase;
}

.section-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.45);
}

.section-list li strong {
    color: rgba(255, 255, 255, 0.95);
}

.subsection-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 0 0.75rem 0;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.95);
}

.case-study-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .case-study-sidebar-wrapper {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        padding-top: 0;
        margin-bottom: 2rem;
    }
    
    .case-study-main {
        margin-left: 0;
        padding-top: 0;
    }
    
    .case-study-sidebar {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        display: grid;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 0px;
        --sidebar-width: 100%;
    }
    
    .navbar {
        display: none;
    }
    
    .hero-header,
    .second-section,
    .third-section,
    .footer-section,
    .contact-hero,
    .work-entry,
    .case-study-container,
    .work-entries-container {
        width: 100%;
        margin-left: 0;
    }
    
    .hero-header {
        /* padding-top: 5rem; */
    }
    
    .case-study-content {
        padding: 0;
        flex-direction: column;
    }
    
    .case-study-sidebar-wrapper {
        position: static;
        width: 100%;
        padding: 5rem 1.5rem 1.5rem;
        max-height: none;
        overflow: visible;
    }
    
    .case-study-sidebar {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        max-height: none;
        overflow: visible;
    }
    
    .sidebar-section {
        width: 100%;
    }
    
    .case-study-main {
        padding: 0 1.5rem 3rem;
        margin-left: 0;
        text-align: center;
    }
    
    .case-study-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .case-study-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .case-study-divider {
        margin: 1rem auto;
    }
    
    .section-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .subsection-heading {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .section-text {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: center;
    }
    
    .case-study-main ul,
    .case-study-main ol,
    .section-list {
        text-align: left;
        margin-left: 1.5rem;
    }
    
    .sidebar-section {
        gap: 0.25rem;
    }
    
    .sidebar-label {
        font-size: 0.7rem;
    }
    
    .sidebar-value {
        font-size: 0.9rem;
    }
    
    .case-study-image {
        margin: 1rem 0;
        max-width: 100%;
        width: 100%;
    }
    
    .case-study-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .case-study-back-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .case-study-nav {
        margin-bottom: 1.5rem;
    }
    
    .sidebar-link {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .about-hero-layout {
        padding-top: 5rem;
    }
    
    .work-entries-container {
        padding-top: 0;
    }
    
    .work-entry {
        min-height: auto;
        padding: 5rem 0 4rem;
        margin-top: 0;
    }
    
    .work-entry:first-child {
        /* padding-top: 6rem; */
    }
    
    .work-entry-content {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .work-entry-content {
        text-align: center;
    }
    
    .work-header-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .work-header-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .work-logo-placeholder {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .work-header-text {
        text-align: center;
        width: 100%;
    }
    
    .work-header-right {
        width: 100%;
        text-align: center;
    }
    
    .work-body-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .work-body-left {
        width: 100%;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .work-body-right {
        width: 100%;
        text-align: center;
    }
    
    .work-description-cols {
        flex-direction: column;
        gap: 1rem;
    }
    
    .work-visual-container {
        max-width: 100%;
    }
    
    .work-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .work-subtitle,
    .work-date {
        font-size: 1rem;
        text-align: center;
    }
    
    .work-desc-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .work-details-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
    
    .contact-container {
        padding: 5rem 1.5rem 3rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-cards {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-section {
        padding-top: 3rem;
    }
}
