/* ===================================
   CSS Reset and Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* ===================================
       Brand Colors
       =================================== */
    --color-primary:              #0a66c2;    /* Blue - primary brand color */
    --color-secondary:            #303030;    /* Dark gray - secondary brand color */

    /* ===================================
       Neutral Colors
       =================================== */
    --color-white:                #ffffff;    /* Pure white */
    --color-gray-50:              #f8f8f8;    /* Lightest gray - hover backgrounds */
    --color-gray-100:             #f3f2ef;    /* Very light gray - page background */
    --color-gray-200:             #e0e0e0;    /* Light gray - borders */
    --color-gray-300:             #dddddd;    /* Medium-light gray - dividers */
    --color-gray-400:             #b0b0b0;    /* Medium gray */
    --color-gray-500:             #8a8a8a;    /* Neutral gray */
    --color-gray-600:             #666666;    /* Dark medium gray */
    --color-gray-800:             #454545;    /* Dark gray - footer/headings */
    --color-gray-900:             #303030;    /* Darkest gray - footer/headings */


    /* ===================================
       Text Colors
       =================================== */
    --color-text-primary:         #000000de;  /* Primary text (87% black) */
    --color-text-secondary:       #00000099;  /* Secondary text (60% black) */
    --color-text-inverse:         #ffffff;    /* Text on dark backgrounds */
    --color-text-muted:           #ffffffb3;  /* Muted text on dark (70% white) */
    --color-text-subtle:          #ffffff80;  /* Subtle text on dark (50% white) */

    /* ===================================
       Background Colors
       =================================== */
    --color-bg-page:              #f3f2ef;    /* Main page background */
    --color-bg-card:              #ffffff;    /* Card/panel backgrounds */
    --color-bg-hover:             #f8f8f8;    /* Hover state backgrounds */
    --color-bg-primary-subtle:    #0a66c20d;  /* Subtle primary tint (5% opacity) */
    --color-bg-overlay-light:     #ffffff1a;  /* Light overlay (10% opacity) */
    --color-bg-overlay-medium:    #ffffff33;  /* Medium overlay (20% opacity) */

    /* ===================================
       Border Colors
       =================================== */
    --color-border-light:         #e0e0e0;    /* Light borders */
    --color-border-medium:        #dddddd;    /* Medium borders/dividers */
    --color-border-inverse:       #ffffff1a;  /* Borders on dark (10% opacity) */

    /* ===================================
       Shadow Colors
       =================================== */
    --shadow-xs:                  0 0 0 1px #00000014;
    --shadow-sm:                  0 2px 8px #0000001a;
    --shadow-md:                  0 4px 12px #0000001a;
    --shadow-lg:                  0 4px 8px #0000004d;
    --shadow-text:                2px 2px 4px #00000080;

    /* ===================================
       Semantic Colors
       =================================== */
    --color-danger:               #e53e3e;
    --color-danger-bg:            #fed7d7;
    --color-danger-text:          #c53030;
    --color-success:              #38a169;
    --color-success-bg:           #c6f6d5;
    --color-success-text:         #276749;
    --color-info:                 #3182ce;
    --color-info-bg:              #bee3f8;
    --color-info-text:            #2b6cb0;

    /* ===================================
       Legacy Aliases (for backwards compatibility)
       =================================== */
    --primary-color:              var(--color-primary);
    --secondary-color:            var(--color-secondary);
    --text-color:                 var(--color-text-primary);
    --text-secondary:             var(--color-text-secondary);
    --bg-color:                   var(--color-bg-page);
    --card-bg:                    var(--color-bg-card);
    --border-color:               var(--color-border-light);
    --hover-bg:                   var(--color-bg-hover);
    --link-color:                 var(--color-primary);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
    padding: 0 24px;
}

section {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-xs);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-position: inside;
    padding: 2px 0;
}

/* ===================================
   Reusable Component: Card Base
   =================================== */
.card-base {
    padding: 24px;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.card-base:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    background: var(--card-bg);
}

.card-base--centered {
    text-align: center;
}

.card-base--lift:hover {
    transform: translateY(-4px);
}

.card-base--slide:hover {
    transform: translateX(4px);
}

/* ===================================
   Reusable Component: Icon Box
   =================================== */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    color: var(--color-text-inverse);
}

.icon-box--sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.icon-box--sm i { font-size: 14px; }

.icon-box--md {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.icon-box--md i { font-size: 24px; }

.icon-box--lg {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.icon-box--lg i { font-size: 28px; }

.icon-box--circle {
    border-radius: 50%;
}

.icon-box--primary {
    background: var(--primary-color);
}

.icon-box--danger {
    background: var(--color-danger-bg);
    color: var(--color-danger-text);
}

.icon-box--danger i { color: var(--color-danger-text); }

.icon-box--success {
    background: var(--color-success-bg);
    color: var(--color-success-text);
}

.icon-box--success i { color: var(--color-success-text); }

.icon-box--info {
    background: var(--color-info-bg);
    color: var(--color-info-text);
}

.icon-box--info i { color: var(--color-info-text); }

/* ===================================
   Reusable Component: Grid Layouts
   =================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

/* ===================================
   Reusable Component: Bullet Lists
   =================================== */
.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-color);
}

.list-check li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.list-arrow {
    list-style: none;
    padding: 0;
}

.list-arrow li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-color);
}

.list-arrow li:before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===================================
   Reusable Component: Tags
   =================================== */
.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-color);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.tag.platform,
.tag--primary {
    background: var(--primary-color);
    color: var(--color-text-inverse);
    border-color: var(--primary-color);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===================================
   Reusable Component: Section Elements
   =================================== */
.section-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-intro {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* ===================================
   Reusable Component: Item with Border
   =================================== */
.bordered-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.bordered-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bordered-item:first-child {
    padding-top: 0;
}

/* ===================================
   Profile Header Section
   =================================== */
.profile-header {
    background: var(--card-bg);
    margin: 0 auto 8px;
    position: relative;
    max-width: 1128px;
    border-radius: 8px;
    box-shadow: var(--shadow-xs);
}

.header-background {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}

.company-logo {
    width: 152px;
    height: 152px;
    object-fit: cover;
}

.tech-badges {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.tech-badge:hover {
    transform: translateY(-4px);
    opacity: 1;
    filter: drop-shadow(var(--shadow-lg));
}

.tech-badge-img {
    height: 32px;
    width: auto;
    display: block;
}

.header-services {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-inverse);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    text-shadow: var(--shadow-text);
    margin: 0;
    white-space: nowrap;
}

.header-content {
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.profile-photo-container {
    position: absolute;
    top: -100px;
    left: 24px;
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--card-bg);
    object-fit: cover;
    background: var(--card-bg);
}

.header-name {
    margin-top: 16px;
    padding: 70px 0px 0px 0;
}

.header-headline {
    margin-top: 16px;
    padding: 16px 0px 16px 0;
    border-top: 1px solid var(--border-color);
}

.header-headline h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.header-headline p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.divider {
    margin: 0 8px;
    color: var(--text-secondary);
}

.contact-me-container {
    position: fixed;
    top: calc(max(24px, min(224px, 224px - var(--scroll-y))));
    right: calc(max(48px, (100% - 1128px) / 2 + 24px));
    z-index: 1000;
}

.contact-me-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    border: 3px solid var(--color-primary);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.contact-me-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    min-width: 320px;
}

.contact-me-container:hover .contact-me-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-me-container:hover .contact-me-button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.contact-me-overlay div {
    border-bottom: 1px solid var(--color-border-light);
}

.contact-me-overlay div:last-child {
    border-bottom: none;
}

.contact-me-links {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-me-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    padding: 0 4px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-bg-page);
    border-radius: 8px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.contact-link:hover {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    text-decoration: none;
    transform: translateX(4px);
}

.contact-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* ===================================
   Main Content Area
   =================================== */
.main-content {
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 0 24px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===================================
   Services Section
   =================================== */
.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--card-bg);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: var(--color-text-inverse);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card-link:hover {
    text-decoration: none;
}

.service-card-link .service-card {
    cursor: pointer;
    height: 100%;
}

/* ===================================
   Technology Specialisations Section
   =================================== */
.tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.tab-button:hover {
    color: var(--text-color);
    background: var(--hover-bg);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-button i {
    font-size: 16px;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-overview {
    margin-bottom: 24px;
}

.tech-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.tech-overview p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.tech-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.tech-detail-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.tech-detail-column ul {
    list-style: none;
    padding: 0;
}

.tech-detail-column li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.tech-detail-column li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.platform-delivery h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.platform-badges {
    display: flex;
    gap: 8px;
}

/* Tech Tags Table */
.tech-tags-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-tags-table tr {
    border-bottom: 1px solid var(--color-border-light);
}

.tech-tags-table tr:last-child {
    border-bottom: none;
}

.category-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    padding: 12px 16px 12px 0;
    white-space: nowrap;
    vertical-align: middle;
    width: 200px;
}

.tags-cell {
    padding: 12px 0;
    vertical-align: middle;
}

.tags-cell .tag {
    margin-right: 4px;
    margin-bottom: 0px;
    display: inline-block;
}

.bullet-items ul {
    list-style-position: inside;
    column-count: 2;
    column-gap: 40px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--color-text-inverse);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.platform-badge i {
    font-size: 18px;
}

/* ===================================
   Selected Experience Section
   =================================== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    z-index: 1;
}

.timeline-content {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    background: var(--card-bg);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.timeline-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
}

.timeline-company {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===================================
   Credentials Section
   =================================== */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.credential-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.credential-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--card-bg);
}

.credential-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon i {
    font-size: 24px;
    color: var(--color-text-inverse);
}

.credential-content {
    flex: 1;
}

.credential-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
    line-height: 1.4;
}

.credential-issuer {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.credential-date {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===================================
   Experience Section
   =================================== */
.experience-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.experience-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.experience-item:first-child {
    padding-top: 0;
}

.item-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.item-logo {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-logo i {
    font-size: 24px;
    color: var(--text-secondary);
}

.tech-logo {
    background: transparent;
    padding: 4px;
}

.tech-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tech-experience {
    scroll-margin-top: 80px;
    transition: all 0.3s ease;
}

.tech-experience:target {
    background: var(--color-bg-primary-subtle);
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
    margin-left: -16px;
}

.item-info {
    flex: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    color: var(--text-color);
}

.item-subtitle {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 4px;
}

.item-meta {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.item-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 8px;
}

/* ===================================
   Skills Section
   =================================== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.skill-item:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.skill-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.skill-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

/* ===================================
   Education Section
   =================================== */
.education-item {
    padding: 16px 0;
}

.education-item:first-child {
    padding-top: 0;
}

/* ===================================
   Projects Section
   =================================== */
.project-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.project-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-item:first-child {
    padding-top: 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.project-link {
    text-decoration: none;
    color: inherit;
}

.project-link:hover {
    text-decoration: none;
}

.project-link .item-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.project-link:hover .item-title {
    color: var(--primary-color);
}

.project-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.project-link:hover .project-arrow {
    opacity: 1;
    transform: translateX(0);
}

.view-case-study {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--color-text-inverse);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-case-study:hover {
    background: #085394;
    text-decoration: none;
    transform: translateX(4px);
}

.view-case-study i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.view-case-study:hover i {
    transform: translateX(4px);
}

.view-case-study.disabled {
    background: var(--color-gray-400);
    cursor: default;
    pointer-events: none;
}

.view-case-study.disabled:hover {
    transform: none;
    background: var(--color-gray-400);
}

.project-footer {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.project-footer td {
    vertical-align: middle;
    padding: 0;
}

.project-action {
    width: 1%;
    white-space: nowrap;
    padding-right: 16px !important;
}

.project-action .view-case-study {
    margin-top: 0;
}

.project-thumbnails {
    white-space: nowrap;
    padding: 0 16px !important;
}

.project-thumbnail {
    display: inline-block;
    width: 40px;
    height: 72px;
    margin-right: 8px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.project-thumbnail:last-child {
    margin-right: 0;
}

.project-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-tags-cell {
    width: 99%;
}

.project-tags-cell .project-tags {
    margin-top: 0;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}

/* ===================================
   Mobile Software Architecture Section
   =================================== */
.category-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-item:first-child {
    padding-top: 0;
}

/* ===================================
   Footer Section
   =================================== */
.site-footer {
    background: var(--secondary-color);
    color: var(--color-text-inverse);
    margin: 24px -24px 0;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-inverse);
}

.contact-info p,
.company-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info i,
.company-info i {
    width: 16px;
    text-align: center;
    color: var(--color-text-muted);
}

.contact-info a,
.company-info a {
    color: var(--color-text-inverse);
    text-decoration: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--color-bg-overlay-light);
    border-radius: 4px;
    color: var(--color-text-inverse);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.social-link:hover {
    background: var(--color-bg-overlay-medium);
    text-decoration: none;
    transform: translateX(4px);
}

.social-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.company-number {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1128px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--color-border-inverse);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--color-text-inverse);
    text-decoration: underline;
}

.footer-links .divider {
    margin: 0 12px;
    color: var(--color-text-subtle);
}

/* Location Table */
.location-table {
    border-collapse: collapse;
}

.location-table td {
    padding: 0 8px 0 0;
    vertical-align: top;
}

.location-table i {
    color: var(--color-text-muted);
}

/* ===================================
   Project Page Styles
   =================================== */

/* Project Page Navigation */
.project-nav {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0 -24px;
    padding: 0 24px;
}

.nav-content {
    max-width: 1128px;
    margin: 0 auto;
    padding: 16px 24px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.back-link i {
    font-size: 14px;
}

/* Project Hero Section */
.project-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2b6cb0 100%);
    color: var(--color-text-inverse);
    margin: 0 -24px 8px;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.hero-content {
    max-width: 1128px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.hero-badge.client {
    background: rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-role {
    margin-bottom: 24px;
}

.role-label {
    font-size: 14px;
    opacity: 0.8;
    margin-right: 8px;
}

.role-title {
    font-size: 18px;
    font-weight: 600;
}

.hero-platforms {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.platform-icon i {
    font-size: 18px;
}

/* Project Overview Cards */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overview-card {
    padding: 24px;
    background: var(--bg-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.overview-card.challenge { border-left-color: var(--color-danger); }
.overview-card.solution { border-left-color: var(--color-success); }
.overview-card.impact { border-left-color: var(--color-info); }

.overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.overview-card.challenge .overview-icon {
    background: var(--color-danger-bg);
    color: var(--color-danger-text);
}

.overview-card.solution .overview-icon {
    background: var(--color-success-bg);
    color: var(--color-success-text);
}

.overview-card.impact .overview-icon {
    background: var(--color-info-bg);
    color: var(--color-info-text);
}

.overview-icon i {
    font-size: 24px;
}

.overview-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.overview-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Screenshot Gallery */
.gallery-container {
    overflow-x: auto;
    padding: 8px 0;
}

.phone-screenshots {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-item {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-4px);
}

.screenshot-item.phone { width: 160px; }
.screenshot-item.tablet { width: 320px; }

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Architecture Diagram */
.architecture-diagram {
    max-width: 600px;
    margin: 0 auto 32px;
}

.arch-layer {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 12px 16px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease;
}

.arch-layer:hover {
    transform: translateX(4px);
}

.layer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.layer-number {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--color-text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.layer-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.layer-package {
    font-size: 12px;
    padding: 4px 10px;
    background: var(--primary-color);
    color: var(--color-text-inverse);
    border-radius: 12px;
    font-family: monospace;
}

.arch-layer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 40px;
}

.arch-connector {
    text-align: center;
    padding: 8px 0;
    color: var(--primary-color);
}

.arch-connector i {
    font-size: 16px;
}

/* Architecture layer colors */
.layer-app { border-left-color: #805ad5; }
.layer-view { border-left-color: #38a169; }
.layer-viewmodel { border-left-color: #3182ce; }
.layer-model { border-left-color: #dd6b20; }
.layer-abstracts { border-left-color: #718096; }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-color);
    border-radius: 8px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    color: var(--text-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    background: var(--card-bg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--color-text-inverse);
}

.feature-content {
    flex: 1;
}

/* Feature icon gradients */
.feature-icon.biometric { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.feature-icon.vehicle { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.feature-icon.auth { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.feature-icon.ui { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.feature-icon.web { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.feature-icon.i18n { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.feature-icon.i18n i { color: #333; }

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-card > p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-color);
}

.feature-list li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Technology Stack Grid */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stack-category {
    padding: 20px;
    background: var(--bg-color);
    border-radius: 8px;
}

.stack-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stack-category h4 i {
    color: var(--primary-color);
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-size: 12px;
    color: var(--text-color);
}

.stack-tag.primary {
    background: var(--primary-color);
    color: var(--color-text-inverse);
    border-color: var(--primary-color);
}

/* Integrations Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.integration-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.integration-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-icon i {
    font-size: 24px;
    color: var(--color-text-inverse);
}

.integration-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.integration-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* Pipeline Flow */
.pipeline-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 0;
}

.pipeline-stage {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 16px 8px;
}

.stage-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stage-icon i {
    font-size: 20px;
    color: var(--color-text-inverse);
}

.pipeline-stage h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.pipeline-stage p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.pipeline-arrow {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    padding-top: 24px;
    flex-shrink: 0;
}

.pipeline-arrow i {
    font-size: 16px;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-card {
    padding: 24px;
    background: var(--bg-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.achievement-icon i {
    font-size: 24px;
    color: var(--color-text-inverse);
}

.achievement-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.achievement-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Role Section */
.role-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.role-description p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
}

.role-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.role-description ul:last-child {
    margin-bottom: 0;
}

.role-description li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

.role-description li:before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.role-client {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.client-card {
    padding: 20px;
    background: var(--bg-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.client-card h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 4px;
}

.client-location {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 930px) {
    body {
        padding: 0 16px;
    }

    .header-background {
        height: 160px;
    }

    .header-services {
        font-size: 24px;
        top: 40%;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
        white-space: pre-wrap;
    }

    .header-logo {
        top: 16px;
        right: 16px;
    }

    .company-logo {
        width: 128px;
        height: 128px;
    }

    .tech-badges {
        bottom: 12px;
        gap: 12px;
    }

    .tech-badge-img {
        height: 24px;
    }

    .profile-photo {
        width: 128px;
        height: 128px;
    }

    .header-content {
        padding: 0 16px;
    }

    .profile-photo-container {
        top: -80px;
        left: 16px;
    }

    .header-headline {
        padding: 70px 0 16px 0;
    }

    .contact-me-container {
        top: calc(max(24px, min(176px, 176px - var(--scroll-y))));
        right: calc(max(32px, (100% - 930px) / 2 + 24px));
    }

    .contact-me-button {
        padding: 10px 24px;
        font-size: 16px;
    }

    .contact-me-overlay {
        min-width: 280px;
    }

    .main-content {
        padding: 0 0 16px;
    }

    .site-footer {
        margin: 24px -16px 0;
        padding: 48px 16px 24px;
    }

    section {
        padding: 16px;
    }

    .section-title {
        font-size: 18px;
    }

    /* Grid adjustments */
    .section-grid,
    .credentials-grid,
    .tech-details,
    .grid-2,
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .stack-grid,
    .integrations-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .role-content {
        grid-template-columns: 1fr;
    }

    /* Project footer table */
    .project-footer,
    .project-footer tbody,
    .project-footer tr,
    .project-footer td {
        display: block;
        width: 100%;
    }

    .project-action {
        padding-right: 0 !important;
        margin-bottom: 12px;
    }

    .project-thumbnails {
        padding: 0 !important;
        margin-bottom: 12px;
    }

    .project-tags-cell .project-tags {
        justify-content: flex-start;
    }

    /* Tab navigation */
    .tab-navigation {
        flex-direction: column;
        gap: 4px;
        border-bottom: none;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .tab-button.active {
        border-left-color: var(--primary-color);
        border-bottom-color: transparent;
    }

    /* Timeline */
    .timeline {
        padding-left: 24px;
    }

    .timeline:before {
        left: 8px;
    }

    .timeline-marker {
        left: -20px;
        width: 12px;
        height: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Project page */
    .project-nav {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .nav-content {
        padding: 12px 16px;
    }

    .project-hero {
        margin: 0 -16px 8px;
        padding: 60px 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .pipeline-flow {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pipeline-arrow {
        display: none;
    }

    .pipeline-stage {
        min-width: 140px;
        flex: 0 0 auto;
    }
}

@media (max-width: 700px) {
    .header-background {
        height: 140px;
    }

    .header-services {
        font-size: 18px;
        top: 30%;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
        white-space: pre-wrap;
    }

    .company-logo {
        width: 88px;
        height: 88px;
    }

    .tech-badges {
        bottom: 8px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
    }

    .tech-badge-img {
        height: 20px;
    }

    .profile-photo {
        width: 96px;
        height: 96px;
    }

    .profile-photo-container {
        top: -60px;
        left: 16px;
    }

    .header-headline {
        padding: 60px 0 16px 0;
    }

    .contact-me-container {
        top: calc(max(24px, min(156px, 156px - var(--scroll-y))));
        right: calc(max(32px, (100% - 700px) / 2 + 24px));
    }

    .contact-me-button {
        padding: 8px 20px;
        font-size: 14px;
    }

    .contact-me-overlay {
        min-width: 260px;
    }

    .contact-link {
        font-size: 13px;
        padding: 10px 12px;
    }

    /* Single column on mobile */
    .bullet-items ul {
        column-count: 1;
    }

    .stack-grid,
    .integrations-grid,
    .achievements-grid,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Project page */
    .hero-title {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .phone-screenshots {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 16px;
    }

    .screenshot-item.phone {
        width: 150px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    body {
        background: white;
    }

    section {
        box-shadow: none;
        border: 1px solid var(--color-border-medium);
    }

    .project-nav {
        display: none;
    }

    .project-hero {
        background: #2c5282 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .site-footer {
        background: white;
        color: black;
        border-top: 2px solid var(--color-border-medium);
    }

    .footer-bottom {
        border-top: 1px solid var(--color-border-medium);
    }

    a {
        text-decoration: underline;
    }
}
